diff options
| author | Sheikh Dawood Abdul Ajees <[email protected]> | 2017-11-20 14:41:07 -0600 |
|---|---|---|
| committer | Sheikh Dawood Abdul Ajees <[email protected]> | 2017-11-20 15:22:41 -0600 |
| commit | 4bda45ce4e8b509eb0da786a6044006942ac259c (patch) | |
| tree | a51eb808016e1710a4bbd537000a493250602944 /PhysX_3.4/Source | |
| parent | Update README.md (diff) | |
| parent | PhysX 3.4.1, APEX 1.4.1 Release @23131702 (diff) | |
| download | physx-3.4-4bda45ce4e8b509eb0da786a6044006942ac259c.tar.xz physx-3.4-4bda45ce4e8b509eb0da786a6044006942ac259c.zip | |
Merge branch 'master'
Diffstat (limited to 'PhysX_3.4/Source')
85 files changed, 17397 insertions, 17146 deletions
diff --git a/PhysX_3.4/Source/Common/src/CmVisualization.cpp b/PhysX_3.4/Source/Common/src/CmVisualization.cpp index ced7ec42..05a51d31 100644 --- a/PhysX_3.4/Source/Common/src/CmVisualization.cpp +++ b/PhysX_3.4/Source/Common/src/CmVisualization.cpp @@ -62,7 +62,7 @@ void Cm::visualizeLinearLimit(RenderOutput& out, PxTransform r(t0.p+value*t0.q.getBasisVector0(), t0.q*PxQuat(PxPi/2,PxVec3(0,1.f,0))); out << (active ? PxDebugColor::eARGB_RED : PxDebugColor::eARGB_GREY); out << PxTransform(PxIdentity); - out << Cm::DebugArrow(t0.p,r.p); + out << Cm::DebugArrow(t0.p,r.p-t0.p); out << r << Cm::DebugCircle(20, scale*0.3f); } @@ -132,7 +132,7 @@ void Cm::visualizeDoubleCone(Cm::RenderOutput& out, out << t << (active ? PxDebugColor::eARGB_RED : PxDebugColor::eARGB_GREY); - const PxReal height = PxSin(angle);//, radius = cos(angle); + const PxReal height = PxTan(angle); const PxU32 LINES = 32; diff --git a/PhysX_3.4/Source/Common/src/CmVisualization.h b/PhysX_3.4/Source/Common/src/CmVisualization.h index da9a8bd6..30f9f3af 100644 --- a/PhysX_3.4/Source/Common/src/CmVisualization.h +++ b/PhysX_3.4/Source/Common/src/CmVisualization.h @@ -27,19 +27,16 @@ // Copyright (c) 2004-2008 AGEIA Technologies, Inc. All rights reserved. // Copyright (c) 2001-2004 NovodeX AG. All rights reserved. - #ifndef PX_PHYSICS_COMMON_VISUALIZATION #define PX_PHYSICS_COMMON_VISUALIZATION #include "foundation/PxTransform.h" #include "CmPhysXCommon.h" #include "PxConstraintDesc.h" +#include "CmRenderOutput.h" namespace physx { - -class RenderOutput; - namespace Cm { PX_PHYSX_COMMON_API void visualizeJointFrames(RenderOutput& out, @@ -61,7 +58,6 @@ namespace Cm PxReal upper, bool active); - PX_PHYSX_COMMON_API void visualizeLimitCone(RenderOutput& out, PxReal scale, const PxTransform& t, @@ -75,7 +71,6 @@ namespace Cm PxReal angle, bool active); - struct ConstraintImmediateVisualizer : public PxConstraintVisualizer { PxF32 mFrameScale; @@ -88,7 +83,6 @@ namespace Cm ConstraintImmediateVisualizer( PxF32 _frameScale, PxF32 _limitScale, RenderOutput& _output ) : mFrameScale( _frameScale ) , mLimitScale( _limitScale ) - //, mCmOutput(static_cast<RenderBuffer &>(_output)) , mCmOutput( _output ) { } @@ -117,6 +111,12 @@ namespace Cm { Cm::visualizeDoubleCone( mCmOutput, mLimitScale, t, angle, active ); } + + virtual void visualizeLine( const PxVec3& p0, const PxVec3& p1, PxU32 color) + { + mCmOutput << color; + mCmOutput.outputSegment(p0, p1); + } }; } diff --git a/PhysX_3.4/Source/GeomUtils/src/GuSweepMTD.cpp b/PhysX_3.4/Source/GeomUtils/src/GuSweepMTD.cpp index ff4acd10..178d0389 100644 --- a/PhysX_3.4/Source/GeomUtils/src/GuSweepMTD.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/GuSweepMTD.cpp @@ -49,6 +49,20 @@ using namespace physx; using namespace Gu; +// PT: TODO: refactor with GuMTD.cpp versions +static PX_FORCE_INLINE PxF32 manualNormalize(PxVec3& mtd, const PxVec3& normal, PxReal lenSq) +{ + const PxF32 len = PxSqrt(lenSq); + + // We do a *manual* normalization to check for singularity condition + if(lenSq < 1e-6f) + mtd = PxVec3(1.0f, 0.0f, 0.0f); // PT: zero normal => pick up random one + else + mtd = normal * 1.0f / len; + + return len; +} + static PX_FORCE_INLINE void getScaledTriangle(const PxTriangleMeshGeometry& triGeom, const Cm::Matrix34& vertex2worldSkew, bool flipsNormal, PxTriangle& triangle, PxTriangleID triangleIndex) { TriangleMesh* tm = static_cast<TriangleMesh*>(triGeom.triangleMesh); @@ -1087,8 +1101,7 @@ bool physx::Gu::computeSphere_SphereMTD(const Sphere& sphere0, const Sphere& sph const PxReal d2 = delta.magnitudeSquared(); const PxReal radiusSum = sphere0.radius + sphere1.radius; - const PxReal d = PxSqrt(d2); - hit.normal = delta / d; + const PxReal d = manualNormalize(hit.normal, delta, d2); hit.distance = d - radiusSum ; hit.position = sphere0.center + hit.normal * sphere0.radius; return true; @@ -1105,8 +1118,7 @@ bool physx::Gu::computeSphere_CapsuleMTD( const Sphere& sphere, const Capsule& c const PxVec3 normal = capsule.getPointAt(u) - sphere.center; const PxReal lenSq = normal.magnitudeSquared(); - const PxF32 d = PxSqrt(lenSq); - hit.normal = normal / d; + const PxF32 d = manualNormalize(hit.normal, normal, lenSq); hit.distance = d - radiusSum; hit.position = sphere.center + hit.normal * sphere.radius; return true; @@ -1115,8 +1127,6 @@ bool physx::Gu::computeSphere_CapsuleMTD( const Sphere& sphere, const Capsule& c //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// bool physx::Gu::computeCapsule_CapsuleMTD(const Capsule& capsule0, const Capsule& capsule1, PxSweepHit& hit) { - using namespace Ps::aos; - PxReal s,t; distanceSegmentSegmentSquared(capsule0, capsule1, &s, &t); @@ -1127,8 +1137,7 @@ bool physx::Gu::computeCapsule_CapsuleMTD(const Capsule& capsule0, const Capsule const PxVec3 normal = pointAtCapsule0 - pointAtCapsule1; const PxReal lenSq = normal.magnitudeSquared(); - const PxF32 len = PxSqrt(lenSq); - hit.normal = normal / len; + const PxF32 len = manualNormalize(hit.normal, normal, lenSq); hit.distance = len - radiusSum; hit.position = pointAtCapsule1 + hit.normal * capsule1.radius; return true; diff --git a/PhysX_3.4/Source/GeomUtils/src/hf/GuSweepsHF.cpp b/PhysX_3.4/Source/GeomUtils/src/hf/GuSweepsHF.cpp index 5d653fc6..33eb7c52 100644 --- a/PhysX_3.4/Source/GeomUtils/src/hf/GuSweepsHF.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/hf/GuSweepsHF.cpp @@ -129,6 +129,7 @@ public: mPose (pose), mDistance (distance) { + mSweepHit.faceIndex = 0xFFFFffff; } virtual PxAgain onEvent(PxU32 nb, PxU32* indices) @@ -327,6 +328,7 @@ public: { const bool hasContacts = computeConvex_HeightFieldMTD(hfGeom, pose, convexGeom, convexPose, inflation, mIsDoubleSided, GuHfQueryFlags::eWORLD_SPACE, sweepHit); + sweepHit.faceIndex = mSweepHit.faceIndex; sweepHit.flags = PxHitFlag::eDISTANCE | PxHitFlag::eNORMAL | PxHitFlag::eFACE_INDEX; if(!hasContacts) { @@ -424,6 +426,7 @@ public: mInflation (inflation) { mMinToi = FMax(); + mSweepHit.faceIndex = 0xFFFFffff; } virtual PxAgain onEvent(PxU32 nb, PxU32* indices) diff --git a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp index ea7f44b7..1136d522 100644 --- a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp @@ -56,21 +56,23 @@ public: PCMCapsuleVsMeshContactGeneration mGeneration; PCMCapsuleVsHeightfieldContactGenerationCallback( - const Gu::CapsuleV& capsule, - const Ps::aos::FloatVArg contactDistance, - const Ps::aos::FloatVArg replaceBreakingThreshold, + const Gu::CapsuleV& capsule, + const Ps::aos::FloatVArg contactDistance, + const Ps::aos::FloatVArg replaceBreakingThreshold, - const PsTransformV& capsuleTransform, - const PsTransformV& heightfieldTransform, - const PxTransform& heightfieldTransform1, - Gu::MultiplePersistentContactManifold& multiManifold, - Gu::ContactBuffer& contactBuffer, + const PsTransformV& capsuleTransform, + const PsTransformV& heightfieldTransform, + const PxTransform& heightfieldTransform1, + Gu::MultiplePersistentContactManifold& multiManifold, + Gu::ContactBuffer& contactBuffer, + Ps::InlineArray<PxU32, LOCAL_CONTACTS_SIZE>* deferredContacts, Gu::HeightFieldUtil& hfUtil ) : PCMHeightfieldContactGenerationCallback<PCMCapsuleVsHeightfieldContactGenerationCallback>(hfUtil, heightfieldTransform1), - mGeneration(capsule, contactDistance, replaceBreakingThreshold, capsuleTransform, heightfieldTransform, multiManifold, contactBuffer) + mGeneration(capsule, contactDistance, replaceBreakingThreshold, capsuleTransform, heightfieldTransform, multiManifold, + contactBuffer, deferredContacts) { } @@ -119,7 +121,6 @@ bool Gu::pcmContactCapsuleHeightField(GU_CONTACT_METHOD_ARGS) const PxVec3 capsuleDirInMesh = transform1.rotateInv(tmp); const Gu::CapsuleV capsule(V3LoadU(capsuleCenterInMesh), V3LoadU(capsuleDirInMesh), capsuleRadius); - PCMCapsuleVsHeightfieldContactGenerationCallback callback( capsule, contactDist, @@ -129,6 +130,7 @@ bool Gu::pcmContactCapsuleHeightField(GU_CONTACT_METHOD_ARGS) transform1, multiManifold, contactBuffer, + NULL, hfUtil ); diff --git a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp index e19063ca..0d5dc68a 100644 --- a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp @@ -59,20 +59,22 @@ public: PCMCapsuleVsMeshContactGeneration mGeneration; PCMCapsuleVsMeshContactGenerationCallback( - const CapsuleV& capsule, - const Ps::aos::FloatVArg contactDist, - const Ps::aos::FloatVArg replaceBreakingThreshold, - const PsTransformV& sphereTransform, - const PsTransformV& meshTransform, - MultiplePersistentContactManifold& multiManifold, - ContactBuffer& contactBuffer, - const PxU8* extraTriData, - const Cm::FastVertex2ShapeScaling& meshScaling, - bool idtMeshScale, - Cm::RenderOutput* renderOutput = NULL + const CapsuleV& capsule, + const Ps::aos::FloatVArg contactDist, + const Ps::aos::FloatVArg replaceBreakingThreshold, + const PsTransformV& sphereTransform, + const PsTransformV& meshTransform, + MultiplePersistentContactManifold& multiManifold, + ContactBuffer& contactBuffer, + const PxU8* extraTriData, + const Cm::FastVertex2ShapeScaling& meshScaling, + bool idtMeshScale, + Ps::InlineArray<PxU32, LOCAL_CONTACTS_SIZE>* deferredContacts, + Cm::RenderOutput* renderOutput = NULL ) : PCMMeshContactGenerationCallback<PCMCapsuleVsMeshContactGenerationCallback>(meshScaling, extraTriData, idtMeshScale), - mGeneration(capsule, contactDist, replaceBreakingThreshold, sphereTransform, meshTransform, multiManifold, contactBuffer, renderOutput) + mGeneration(capsule, contactDist, replaceBreakingThreshold, sphereTransform, meshTransform, multiManifold, contactBuffer, + deferredContacts, renderOutput) { } @@ -150,6 +152,7 @@ bool Gu::pcmContactCapsuleMesh(GU_CONTACT_METHOD_ARGS) extraData, meshScaling, idtMeshScale, + NULL, renderOutput); //bound the capsule in shape space by an OBB: @@ -163,7 +166,7 @@ bool Gu::pcmContactCapsuleMesh(GU_CONTACT_METHOD_ARGS) Midphase::intersectOBB(meshData, queryBox, callback, true); callback.flushCache(); - + callback.mGeneration.processContacts(GU_CAPSULE_MANIFOLD_CACHE_SIZE, false); } else diff --git a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp index 66ecc724..b84d6806 100644 --- a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp @@ -31,6 +31,7 @@ #include "GuPCMContactConvexCommon.h" #include "GuConvexEdgeFlags.h" #include "GuBarycentricCoordinates.h" +#include "PsSort.h" namespace physx { @@ -101,13 +102,13 @@ void PCMConvexVsMeshContactGeneration::generateLastContacts() { using namespace Ps::aos; // Process delayed contacts - PxU32 nbEntries = mDeferredContacts.size(); + PxU32 nbEntries = mDeferredContacts->size(); if(nbEntries) { nbEntries /= sizeof(PCMDeferredPolyData)/sizeof(PxU32); - const PCMDeferredPolyData* PX_RESTRICT cd = reinterpret_cast<const PCMDeferredPolyData*>(mDeferredContacts.begin()); + const PCMDeferredPolyData* PX_RESTRICT cd = reinterpret_cast<const PCMDeferredPolyData*>(mDeferredContacts->begin()); for(PxU32 i=0;i<nbEntries;i++) { const PCMDeferredPolyData& currentContact = cd[i]; @@ -409,10 +410,12 @@ static Ps::aos::FloatV pcmDistancePointTriangleSquared( const Ps::aos::Vec3VArg const Ps::aos::Vec3VArg c, const PxU8 triFlags, Ps::aos::Vec3V& closestP, - bool& generateContact) + bool& generateContact, + bool& faceContact) { using namespace Ps::aos; + faceContact = false; const FloatV zero = FZero(); const Vec3V ab = V3Sub(b, a); const Vec3V ac = V3Sub(c, a); @@ -535,6 +538,7 @@ static Ps::aos::FloatV pcmDistancePointTriangleSquared( const Ps::aos::Vec3VArg } generateContact = true; + faceContact = true; //P must project inside face region. Compute Q using Barycentric coordinates const FloatV nn = V3Dot(n, n); @@ -552,7 +556,6 @@ bool Gu::PCMSphereVsMeshContactGeneration::processTriangle(const PxVec3* verts, using namespace Ps::aos; const FloatV zero = FZero(); - const Vec3V zeroV = V3Zero(); const Vec3V v0 = V3LoadU(verts[0]); const Vec3V v1 = V3LoadU(verts[1]); @@ -570,74 +573,158 @@ bool Gu::PCMSphereVsMeshContactGeneration::processTriangle(const PxVec3* verts, if(FAllGrtr(zero, dist0)) return false; - const FloatV tolerance = FLoad(0.996);//around 5 degree //FloatV u, v; Vec3V closestP; - //mShereCenter will be in the local space of the triangle mesh - //const FloatV sqDist = Gu::distancePointTriangleSquared(mSphereCenter, v0, v1, v2, u, v, closestP); + //mSphereCenter will be in the local space of the triangle mesh bool generateContact = false; - const FloatV sqDist = pcmDistancePointTriangleSquared(mSphereCenter, v0, v1, v2, triFlags, closestP, generateContact); - - //sphere center is on the triangle surface, we take triangle normal as the patchNormal. Otherwise, we need to calculate the patchNormal - Vec3V patchNormal = n; - if(FAllGrtr(sqDist, FEps() )) - patchNormal = V3Normalize(V3Sub(mSphereCenter, closestP)); - - const FloatV cosTheta = V3Dot(patchNormal, n); + bool faceContact = false; + FloatV sqDist = pcmDistancePointTriangleSquared(mSphereCenter, v0, v1, v2, triFlags, closestP, generateContact, faceContact); - //sphere overlap with triangles - if(FAllGrtr(mSqInflatedSphereRadius, sqDist) && (generateContact || FAllGrtr(cosTheta, tolerance))) + //sphere overlap with triangles + if (FAllGrtr(mSqInflatedSphereRadius, sqDist)) { - const FloatV dist = FSqrt(sqDist); - - PX_ASSERT(mNumContactPatch <PCM_MAX_CONTACTPATCH_SIZE); - bool foundPatch = false; - if(mNumContactPatch > 0) + //sphere center is on the triangle surface, we take triangle normal as the patchNormal. Otherwise, we need to calculate the patchNormal + Vec3V patchNormal = n; + if (!faceContact) + patchNormal = V3Normalize(V3Sub(mSphereCenter, closestP)); + + const FloatV cosTheta = V3Dot(patchNormal, n); + + //two normal less than 5 degree, generate contacts + if (FAllGrtr(cosTheta, tolerance)) { - if(FAllGrtr(V3Dot(mContactPatch[mNumContactPatch-1].mPatchNormal, patchNormal), mAcceptanceEpsilon)) - { - PCMContactPatch& patch = mContactPatch[mNumContactPatch-1]; + const FloatV dist = FSqrt(sqDist); - PX_ASSERT((patch.mEndIndex - patch.mStartIndex) == 1); - - if(FAllGrtr(patch.mPatchMaxPen, dist)) - { - //overwrite the old contact - mManifoldContacts[patch.mStartIndex].mLocalPointA = zeroV;//in sphere's space - mManifoldContacts[patch.mStartIndex].mLocalPointB = closestP; - mManifoldContacts[patch.mStartIndex].mLocalNormalPen = V4SetW(Vec4V_From_Vec3V(patchNormal), dist); - mManifoldContacts[patch.mStartIndex].mFaceIndex = triangleIndex; - patch.mPatchMaxPen = dist; - } - - foundPatch = true; - } + mEdgeCache.addData(CachedEdge(vertInds[0], vertInds[1])); + mEdgeCache.addData(CachedEdge(vertInds[1], vertInds[2])); + mEdgeCache.addData(CachedEdge(vertInds[2], vertInds[0])); + + addToPatch(closestP, patchNormal, dist, triangleIndex); } - if(!foundPatch) + else { - mManifoldContacts[mNumContacts].mLocalPointA = zeroV;//in sphere's space - mManifoldContacts[mNumContacts].mLocalPointB = closestP; - mManifoldContacts[mNumContacts].mLocalNormalPen = V4SetW(Vec4V_From_Vec3V(patchNormal), dist); - mManifoldContacts[mNumContacts++].mFaceIndex = triangleIndex; + //ML : defer the contacts generation + const PxU32 nb = sizeof(PCMDeferredPolyData) / sizeof(PxU32); + PxU32 newSize = nb + mDeferredContacts->size(); + mDeferredContacts->reserve(newSize); + PCMDeferredPolyData* PX_RESTRICT data = reinterpret_cast<PCMDeferredPolyData*>(mDeferredContacts->end()); + mDeferredContacts->forceSize_Unsafe(newSize); + + SortedTriangle sortedTriangle; + sortedTriangle.mSquareDist = sqDist; + sortedTriangle.mIndex = mSortedTriangle.size(); + mSortedTriangle.pushBack(sortedTriangle); + + data->mTriangleIndex = triangleIndex; + data->mFeatureIndex = 0; + data->triFlags = PxU8(generateContact); + data->mInds[0] = vertInds[0]; + data->mInds[1] = vertInds[1]; + data->mInds[2] = vertInds[2]; + V3StoreU(closestP, data->mVerts[0]); + V3StoreU(patchNormal, data->mVerts[1]); + V3StoreU(V3Splat(sqDist), data->mVerts[2]); - mContactPatch[mNumContactPatch].mStartIndex = mNumContacts - 1; - mContactPatch[mNumContactPatch].mEndIndex = mNumContacts; - mContactPatch[mNumContactPatch].mPatchMaxPen = dist; - mContactPatch[mNumContactPatch++].mPatchNormal = patchNormal; } + } + return true; +} + +void Gu::PCMSphereVsMeshContactGeneration::addToPatch(const Ps::aos::Vec3VArg contactP, const Ps::aos::Vec3VArg patchNormal, const Ps::aos::FloatV dist, + const PxU32 triangleIndex) +{ + using namespace Ps::aos; + + PX_ASSERT(mNumContactPatch < PCM_MAX_CONTACTPATCH_SIZE); - PX_ASSERT(mNumContactPatch <PCM_MAX_CONTACTPATCH_SIZE); + const Vec3V sphereCenter = V3Zero(); // in sphere local space - if(mNumContacts >= 16) + bool foundPatch = false; + if (mNumContactPatch > 0) + { + if (FAllGrtr(V3Dot(mContactPatch[mNumContactPatch - 1].mPatchNormal, patchNormal), mAcceptanceEpsilon)) { - PX_ASSERT(mNumContacts <= 64); - processContacts(GU_SPHERE_MANIFOLD_CACHE_SIZE); + PCMContactPatch& patch = mContactPatch[mNumContactPatch - 1]; + + PX_ASSERT((patch.mEndIndex - patch.mStartIndex) == 1); + + if (FAllGrtr(patch.mPatchMaxPen, dist)) + { + //overwrite the old contact + mManifoldContacts[patch.mStartIndex].mLocalPointA = sphereCenter;//in sphere's space + mManifoldContacts[patch.mStartIndex].mLocalPointB = contactP; + mManifoldContacts[patch.mStartIndex].mLocalNormalPen = V4SetW(Vec4V_From_Vec3V(patchNormal), dist); + mManifoldContacts[patch.mStartIndex].mFaceIndex = triangleIndex; + patch.mPatchMaxPen = dist; + } + + foundPatch = true; } + } + if (!foundPatch) + { + mManifoldContacts[mNumContacts].mLocalPointA = sphereCenter;//in sphere's space + mManifoldContacts[mNumContacts].mLocalPointB = contactP; + mManifoldContacts[mNumContacts].mLocalNormalPen = V4SetW(Vec4V_From_Vec3V(patchNormal), dist); + mManifoldContacts[mNumContacts++].mFaceIndex = triangleIndex; + + mContactPatch[mNumContactPatch].mStartIndex = mNumContacts - 1; + mContactPatch[mNumContactPatch].mEndIndex = mNumContacts; + mContactPatch[mNumContactPatch].mPatchMaxPen = dist; + mContactPatch[mNumContactPatch++].mPatchNormal = patchNormal; + } + + PX_ASSERT(mNumContactPatch < PCM_MAX_CONTACTPATCH_SIZE); + + if (mNumContacts >= 16) + { + PX_ASSERT(mNumContacts <= 64); + processContacts(GU_SPHERE_MANIFOLD_CACHE_SIZE); + } +} + +void Gu::PCMSphereVsMeshContactGeneration::generateLastContacts() +{ + using namespace Ps::aos; + // Process delayed contacts + PxU32 nbSortedTriangle = mSortedTriangle.size(); + + if (nbSortedTriangle) + { + Ps::sort(mSortedTriangle.begin(), mSortedTriangle.size(), Ps::Less<SortedTriangle>()); + + const PCMDeferredPolyData* PX_RESTRICT cd = reinterpret_cast<const PCMDeferredPolyData*>(mDeferredContacts->begin()); + + for (PxU32 i = 0; i < nbSortedTriangle; ++i) + { + const PCMDeferredPolyData& currentContact = cd[mSortedTriangle[i].mIndex]; + const PxU32 ref0 = currentContact.mInds[0]; + const PxU32 ref1 = currentContact.mInds[1]; + const PxU32 ref2 = currentContact.mInds[2]; + + PxU8 generateContacts = currentContact.triFlags; + + //if addData sucessful, which means mEdgeCache doesn't have the edge + const bool noEdge01 = mEdgeCache.addData(CachedEdge(ref0, ref1)); + const bool noEdge12 = mEdgeCache.addData(CachedEdge(ref1, ref2)); + const bool noEdge20 = mEdgeCache.addData(CachedEdge(ref2, ref0)); + const bool needsProcessing = (noEdge01 && noEdge12 && noEdge20 && generateContacts); + + if (needsProcessing) + { + //we store the contact, patch normal and sq distance in the vertex memory in PCMDeferredPolyData + const Vec3V contactP = V3LoadU(currentContact.mVerts[0]); + const Vec3V patchNormal = V3LoadU(currentContact.mVerts[1]); + const FloatV sqDist = FLoad(currentContact.mVerts[2].x); + const FloatV dist = FSqrt(sqDist); + addToPatch(contactP, patchNormal, dist, currentContact.mTriangleIndex); + } + + } } - return true; } diff --git a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexCommon.h b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexCommon.h index 5c372914..cae46bdd 100644 --- a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexCommon.h +++ b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexCommon.h @@ -44,27 +44,32 @@ namespace physx namespace Gu { +#define MAX_CACHE_SIZE 128 + class PCMMeshContactGeneration { PX_NOCOPY(PCMMeshContactGeneration) public: - PCMContactPatch mContactPatch[PCM_MAX_CONTACTPATCH_SIZE]; - PCMContactPatch* mContactPatchPtr[PCM_MAX_CONTACTPATCH_SIZE]; - const Ps::aos::FloatV mContactDist; - const Ps::aos::FloatV mReplaceBreakingThreshold; - const Ps::aos::PsTransformV& mConvexTransform; - const Ps::aos::PsTransformV& mMeshTransform; - Gu::MultiplePersistentContactManifold& mMultiManifold; - Gu::ContactBuffer& mContactBuffer; - - Ps::aos::FloatV mAcceptanceEpsilon; - Ps::aos::FloatV mSqReplaceBreakingThreshold; - Ps::aos::PsMatTransformV mMeshToConvex; - Gu::MeshPersistentContact* mManifoldContacts; - PxU32 mNumContacts; - PxU32 mNumContactPatch; - PxU32 mNumCalls; - Cm::RenderOutput* mRenderOutput; + PCMContactPatch mContactPatch[PCM_MAX_CONTACTPATCH_SIZE]; + PCMContactPatch* mContactPatchPtr[PCM_MAX_CONTACTPATCH_SIZE]; + const Ps::aos::FloatV mContactDist; + const Ps::aos::FloatV mReplaceBreakingThreshold; + const Ps::aos::PsTransformV& mConvexTransform; + const Ps::aos::PsTransformV& mMeshTransform; + Gu::MultiplePersistentContactManifold& mMultiManifold; + Gu::ContactBuffer& mContactBuffer; + + Ps::aos::FloatV mAcceptanceEpsilon; + Ps::aos::FloatV mSqReplaceBreakingThreshold; + Ps::aos::PsMatTransformV mMeshToConvex; + Gu::MeshPersistentContact* mManifoldContacts; + PxU32 mNumContacts; + PxU32 mNumContactPatch; + PxU32 mNumCalls; + Gu::CacheMap<Gu::CachedEdge, MAX_CACHE_SIZE> mEdgeCache; + Ps::InlineArray<PxU32, LOCAL_CONTACTS_SIZE>* mDeferredContacts; + Cm::RenderOutput* mRenderOutput; + PCMMeshContactGeneration( const Ps::aos::FloatVArg contactDist, @@ -73,6 +78,7 @@ public: const Ps::aos::PsTransformV& meshTransform, Gu::MultiplePersistentContactManifold& multiManifold, Gu::ContactBuffer& contactBuffer, + Ps::InlineArray<PxU32, LOCAL_CONTACTS_SIZE>* deferredContacts, Cm::RenderOutput* renderOutput ) : @@ -82,6 +88,7 @@ public: mMeshTransform(meshTransform), mMultiManifold(multiManifold), mContactBuffer(contactBuffer), + mDeferredContacts(deferredContacts), mRenderOutput(renderOutput) { @@ -257,8 +264,6 @@ public: PxU8 triFlags; //57 }; -#define MAX_CACHE_SIZE 128 - #if PX_VC #pragma warning(push) #pragma warning( disable : 4324 ) // Padding was added at the end of a structure because of a __declspec(align) value. @@ -269,36 +274,33 @@ class PCMConvexVsMeshContactGeneration : public PCMMeshContactGeneration PCMConvexVsMeshContactGeneration &operator=(PCMConvexVsMeshContactGeneration &); public: - - Gu::CacheMap<Gu::CachedEdge, MAX_CACHE_SIZE> mEdgeCache; - Gu::CacheMap<Gu::CachedVertex, MAX_CACHE_SIZE> mVertexCache; - Ps::aos::Vec3V mHullCenterMesh; - - Ps::InlineArray<PxU32,LOCAL_CONTACTS_SIZE>& mDeferredContacts; - const Gu::PolygonalData& mPolyData; - SupportLocal* mPolyMap; - const Cm::FastVertex2ShapeScaling& mConvexScaling; - bool mIdtConvexScale; - Cm::RenderOutput* mRenderOutput; + Gu::CacheMap<Gu::CachedVertex, MAX_CACHE_SIZE> mVertexCache; + Ps::aos::Vec3V mHullCenterMesh; + + const Gu::PolygonalData& mPolyData; + SupportLocal* mPolyMap; + const Cm::FastVertex2ShapeScaling& mConvexScaling; + bool mIdtConvexScale; + Cm::RenderOutput* mRenderOutput; PCMConvexVsMeshContactGeneration( - const Ps::aos::FloatVArg contactDistance, - const Ps::aos::FloatVArg replaceBreakingThreshold, - const Ps::aos::PsTransformV& convexTransform, - const Ps::aos::PsTransformV& meshTransform, - Gu::MultiplePersistentContactManifold& multiManifold, - Gu::ContactBuffer& contactBuffer, - - const Gu::PolygonalData& polyData, - SupportLocal* polyMap, - Ps::InlineArray<PxU32,LOCAL_CONTACTS_SIZE>& delayedContacts, - const Cm::FastVertex2ShapeScaling& convexScaling, - bool idtConvexScale, - Cm::RenderOutput* renderOutput + const Ps::aos::FloatVArg contactDistance, + const Ps::aos::FloatVArg replaceBreakingThreshold, + const Ps::aos::PsTransformV& convexTransform, + const Ps::aos::PsTransformV& meshTransform, + Gu::MultiplePersistentContactManifold& multiManifold, + Gu::ContactBuffer& contactBuffer, + + const Gu::PolygonalData& polyData, + SupportLocal* polyMap, + Ps::InlineArray<PxU32,LOCAL_CONTACTS_SIZE>* delayedContacts, + const Cm::FastVertex2ShapeScaling& convexScaling, + bool idtConvexScale, + Cm::RenderOutput* renderOutput - ) : PCMMeshContactGeneration(contactDistance, replaceBreakingThreshold, convexTransform, meshTransform, multiManifold, contactBuffer, renderOutput), - mDeferredContacts(delayedContacts), + ) : PCMMeshContactGeneration(contactDistance, replaceBreakingThreshold, convexTransform, meshTransform, multiManifold, contactBuffer, + delayedContacts, renderOutput), mPolyData(polyData), mPolyMap(polyMap), mConvexScaling(convexScaling), @@ -334,26 +336,39 @@ public: #pragma warning(pop) #endif +struct SortedTriangle +{ + Ps::aos::FloatV mSquareDist; + PxU32 mIndex; + + PX_FORCE_INLINE bool operator < (const SortedTriangle& data) const + { + return Ps::aos::FAllGrtrOrEq(mSquareDist, data.mSquareDist) ==0; + } +}; + class PCMSphereVsMeshContactGeneration : public PCMMeshContactGeneration { public: - Ps::aos::Vec3V mSphereCenter; - Ps::aos::FloatV mSphereRadius; - Ps::aos::FloatV mSqInflatedSphereRadius; + Ps::aos::Vec3V mSphereCenter; + Ps::aos::FloatV mSphereRadius; + Ps::aos::FloatV mSqInflatedSphereRadius; + Ps::InlineArray<SortedTriangle, 64> mSortedTriangle; - PCMSphereVsMeshContactGeneration( - const Ps::aos::Vec3VArg sphereCenter, - const Ps::aos::FloatVArg sphereRadius, - const Ps::aos::FloatVArg contactDist, - const Ps::aos::FloatVArg replaceBreakingThreshold, - const Ps::aos::PsTransformV& sphereTransform, - const Ps::aos::PsTransformV& meshTransform, - Gu::MultiplePersistentContactManifold& multiManifold, - Gu::ContactBuffer& contactBuffer, + const Ps::aos::Vec3VArg sphereCenter, + const Ps::aos::FloatVArg sphereRadius, + const Ps::aos::FloatVArg contactDist, + const Ps::aos::FloatVArg replaceBreakingThreshold, + const Ps::aos::PsTransformV& sphereTransform, + const Ps::aos::PsTransformV& meshTransform, + MultiplePersistentContactManifold& multiManifold, + ContactBuffer& contactBuffer, + Ps::InlineArray<PxU32, LOCAL_CONTACTS_SIZE>* deferredContacts, Cm::RenderOutput* renderOutput = NULL - ) : PCMMeshContactGeneration(contactDist, replaceBreakingThreshold, sphereTransform, meshTransform, multiManifold, contactBuffer, renderOutput), + ) : PCMMeshContactGeneration(contactDist, replaceBreakingThreshold, sphereTransform, meshTransform, multiManifold, + contactBuffer, deferredContacts, renderOutput), mSphereCenter(sphereCenter), mSphereRadius(sphereRadius) { @@ -362,8 +377,10 @@ public: mSqInflatedSphereRadius = FMul(inflatedSphereRadius, inflatedSphereRadius); } - bool processTriangle(const PxVec3* verts, PxU32 triangleIndex, PxU8 triFlags, const PxU32* vertInds); + void generateLastContacts(); + void addToPatch(const Ps::aos::Vec3VArg contactP, const Ps::aos::Vec3VArg patchNormal, + const Ps::aos::FloatV pen, const PxU32 triangleIndex); }; class PCMCapsuleVsMeshContactGeneration : public PCMMeshContactGeneration @@ -376,16 +393,18 @@ public: PCMCapsuleVsMeshContactGeneration( - const CapsuleV& capsule, - const Ps::aos::FloatVArg contactDist, - const Ps::aos::FloatVArg replaceBreakingThreshold, - const Ps::aos::PsTransformV& sphereTransform, - const Ps::aos::PsTransformV& meshTransform, - Gu::MultiplePersistentContactManifold& multiManifold, - Gu::ContactBuffer& contactBuffer, - Cm::RenderOutput* renderOutput = NULL - - ) : PCMMeshContactGeneration(contactDist, replaceBreakingThreshold, sphereTransform, meshTransform, multiManifold, contactBuffer, renderOutput), + const CapsuleV& capsule, + const Ps::aos::FloatVArg contactDist, + const Ps::aos::FloatVArg replaceBreakingThreshold, + const Ps::aos::PsTransformV& sphereTransform, + const Ps::aos::PsTransformV& meshTransform, + Gu::MultiplePersistentContactManifold& multiManifold, + Gu::ContactBuffer& contactBuffer, + Ps::InlineArray<PxU32, LOCAL_CONTACTS_SIZE>* deferredContacts, + Cm::RenderOutput* renderOutput = NULL + + ) : PCMMeshContactGeneration(contactDist, replaceBreakingThreshold, sphereTransform, meshTransform, multiManifold, contactBuffer, + deferredContacts, renderOutput), mCapsule(capsule) { using namespace Ps::aos; diff --git a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp index 979d75be..6901a5c3 100644 --- a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp @@ -62,20 +62,20 @@ public: PCMConvexVsMeshContactGeneration mGeneration; PCMConvexVsHeightfieldContactGenerationCallback( - const Ps::aos::FloatVArg contactDistance, - const Ps::aos::FloatVArg replaceBreakingThreshold, - const Gu::PolygonalData& polyData, - SupportLocal* polyMap, - const Cm::FastVertex2ShapeScaling& convexScaling, - bool idtConvexScale, - const PsTransformV& convexTransform, - const PsTransformV& heightfieldTransform, - const PxTransform& heightfieldTransform1, - Gu::MultiplePersistentContactManifold& multiManifold, - Gu::ContactBuffer& contactBuffer, - Gu::HeightFieldUtil& hfUtil, - Ps::InlineArray<PxU32,LOCAL_CONTACTS_SIZE>& delayedContacts, - Cm::RenderOutput* renderOutput = NULL + const Ps::aos::FloatVArg contactDistance, + const Ps::aos::FloatVArg replaceBreakingThreshold, + const Gu::PolygonalData& polyData, + SupportLocal* polyMap, + const Cm::FastVertex2ShapeScaling& convexScaling, + bool idtConvexScale, + const PsTransformV& convexTransform, + const PsTransformV& heightfieldTransform, + const PxTransform& heightfieldTransform1, + Gu::MultiplePersistentContactManifold& multiManifold, + Gu::ContactBuffer& contactBuffer, + Gu::HeightFieldUtil& hfUtil, + Ps::InlineArray<PxU32,LOCAL_CONTACTS_SIZE>* delayedContacts, + Cm::RenderOutput* renderOutput = NULL ) : PCMHeightfieldContactGenerationCallback< PCMConvexVsHeightfieldContactGenerationCallback >(hfUtil, heightfieldTransform1), @@ -155,7 +155,7 @@ bool Gu::PCMContactConvexHeightfield( multiManifold, contactBuffer, hfUtil, - delayedContacts, + &delayedContacts, renderOutput ); diff --git a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp index ea12eb4e..2bacfb87 100644 --- a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp @@ -59,22 +59,22 @@ public: const BoxPadded& mBox; PCMConvexVsMeshContactGenerationCallback( - const Ps::aos::FloatVArg contactDistance, - const Ps::aos::FloatVArg replaceBreakingThreshold, - const PsTransformV& convexTransform, - const PsTransformV& meshTransform, - MultiplePersistentContactManifold& multiManifold, - ContactBuffer& contactBuffer, - const PolygonalData& polyData, - SupportLocal* polyMap, - Ps::InlineArray<PxU32,LOCAL_CONTACTS_SIZE>& delayedContacts, - const Cm::FastVertex2ShapeScaling& convexScaling, - bool idtConvexScale, - const Cm::FastVertex2ShapeScaling& meshScaling, - const PxU8* extraTriData, - bool idtMeshScale, - const BoxPadded& box, - Cm::RenderOutput* renderOutput = NULL + const Ps::aos::FloatVArg contactDistance, + const Ps::aos::FloatVArg replaceBreakingThreshold, + const PsTransformV& convexTransform, + const PsTransformV& meshTransform, + MultiplePersistentContactManifold& multiManifold, + ContactBuffer& contactBuffer, + const PolygonalData& polyData, + SupportLocal* polyMap, + Ps::InlineArray<PxU32,LOCAL_CONTACTS_SIZE>* delayedContacts, + const Cm::FastVertex2ShapeScaling& convexScaling, + bool idtConvexScale, + const Cm::FastVertex2ShapeScaling& meshScaling, + const PxU8* extraTriData, + bool idtMeshScale, + const BoxPadded& box, + Cm::RenderOutput* renderOutput = NULL ) : PCMMeshContactGenerationCallback<PCMConvexVsMeshContactGenerationCallback>(meshScaling, extraTriData, idtMeshScale), @@ -143,7 +143,7 @@ bool Gu::PCMContactConvexMesh(const PolygonalData& polyData, SupportLocal* polyM const PxU8* PX_RESTRICT extraData = meshData->getExtraTrigData(); PCMConvexVsMeshContactGenerationCallback blockCallback( contactDist, replaceBreakingThreshold, convexTransform, meshTransform, multiManifold, contactBuffer, - polyData, polyMap, delayedContacts, convexScaling, idtConvexScale, meshScaling, extraData, idtMeshScale, + polyData, polyMap, &delayedContacts, convexScaling, idtConvexScale, meshScaling, extraData, idtMeshScale, hullOBB, renderOutput); Midphase::intersectOBB(meshData, hullOBB, blockCallback, true); diff --git a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp index fbe0ab4a..cce99cd4 100644 --- a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp @@ -55,22 +55,24 @@ public: PCMSphereVsMeshContactGeneration mGeneration; PCMSphereVsHeightfieldContactGenerationCallback( - const Ps::aos::Vec3VArg sphereCenter, - const Ps::aos::FloatVArg sphereRadius, - const Ps::aos::FloatVArg contactDistance, - const Ps::aos::FloatVArg replaceBreakingThreshold, + const Ps::aos::Vec3VArg sphereCenter, + const Ps::aos::FloatVArg sphereRadius, + const Ps::aos::FloatVArg contactDistance, + const Ps::aos::FloatVArg replaceBreakingThreshold, - const PsTransformV& sphereTransform, - const PsTransformV& heightfieldTransform, - const PxTransform& heightfieldTransform1, - Gu::MultiplePersistentContactManifold& multiManifold, - Gu::ContactBuffer& contactBuffer, + const PsTransformV& sphereTransform, + const PsTransformV& heightfieldTransform, + const PxTransform& heightfieldTransform1, + Gu::MultiplePersistentContactManifold& multiManifold, + Gu::ContactBuffer& contactBuffer, + Ps::InlineArray<PxU32, LOCAL_CONTACTS_SIZE>* deferredContacts, Gu::HeightFieldUtil& hfUtil ) : PCMHeightfieldContactGenerationCallback<PCMSphereVsHeightfieldContactGenerationCallback>(hfUtil, heightfieldTransform1), - mGeneration(sphereCenter, sphereRadius, contactDistance, replaceBreakingThreshold, sphereTransform, heightfieldTransform, multiManifold, contactBuffer) + mGeneration(sphereCenter, sphereRadius, contactDistance, replaceBreakingThreshold, sphereTransform, + heightfieldTransform, multiManifold, contactBuffer, deferredContacts) { } @@ -123,6 +125,8 @@ bool Gu::pcmContactSphereHeightField(GU_CONTACT_METHOD_ARGS) PxBounds3 bounds(sphereCenterShape1Space - inflatedRadiusV, sphereCenterShape1Space + inflatedRadiusV); + Ps::InlineArray<PxU32, LOCAL_CONTACTS_SIZE> delayedContacts; + PCMSphereVsHeightfieldContactGenerationCallback blockCallback( sphereCenter, sphereRadius, @@ -133,10 +137,12 @@ bool Gu::pcmContactSphereHeightField(GU_CONTACT_METHOD_ARGS) transform1, multiManifold, contactBuffer, + &delayedContacts, hfUtil); hfUtil.overlapAABBTriangles(transform1, bounds, 0, &blockCallback); + blockCallback.mGeneration.generateLastContacts(); blockCallback.mGeneration.processContacts(GU_SPHERE_MANIFOLD_CACHE_SIZE, false); } else diff --git a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp index 1c497a2c..9d8544df 100644 --- a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp @@ -41,13 +41,16 @@ #include "GuPCMContactMeshCallback.h" #include "GuBox.h" + using namespace physx; using namespace Gu; using namespace physx::shdfnd::aos; + namespace physx { + struct PCMSphereVsMeshContactGenerationCallback : PCMMeshContactGenerationCallback< PCMSphereVsMeshContactGenerationCallback > { @@ -56,21 +59,22 @@ public: PCMSphereVsMeshContactGenerationCallback( - const Ps::aos::Vec3VArg sphereCenter, - const Ps::aos::FloatVArg sphereRadius, - const Ps::aos::FloatVArg contactDist, - const Ps::aos::FloatVArg replaceBreakingThreshold, - const PsTransformV& sphereTransform, - const PsTransformV& meshTransform, - MultiplePersistentContactManifold& multiManifold, - ContactBuffer& contactBuffer, - const PxU8* extraTriData, - const Cm::FastVertex2ShapeScaling& meshScaling, - bool idtMeshScale, - Cm::RenderOutput* renderOutput = NULL + const Ps::aos::Vec3VArg sphereCenter, + const Ps::aos::FloatVArg sphereRadius, + const Ps::aos::FloatVArg contactDist, + const Ps::aos::FloatVArg replaceBreakingThreshold, + const PsTransformV& sphereTransform, + const PsTransformV& meshTransform, + MultiplePersistentContactManifold& multiManifold, + ContactBuffer& contactBuffer, + const PxU8* extraTriData, + const Cm::FastVertex2ShapeScaling& meshScaling, + bool idtMeshScale, + Ps::InlineArray<PxU32, LOCAL_CONTACTS_SIZE>* deferredContacts, + Cm::RenderOutput* renderOutput = NULL ) : PCMMeshContactGenerationCallback<PCMSphereVsMeshContactGenerationCallback>(meshScaling, extraTriData, idtMeshScale), - mGeneration(sphereCenter, sphereRadius, contactDist, replaceBreakingThreshold, sphereTransform, meshTransform, multiManifold, contactBuffer, renderOutput) + mGeneration(sphereCenter, sphereRadius, contactDist, replaceBreakingThreshold, sphereTransform, meshTransform, multiManifold, contactBuffer, deferredContacts, renderOutput) { } @@ -94,8 +98,6 @@ bool Gu::pcmContactSphereMesh(GU_CONTACT_METHOD_ARGS) const PxSphereGeometry& shapeSphere = shape0.get<const PxSphereGeometry>(); const PxTriangleMeshGeometryLL& shapeMesh = shape1.get<const PxTriangleMeshGeometryLL>(); - //gRenderOutPut = cache.mRenderOutput; - const QuatV q0 = QuatVLoadA(&transform0.q.x); const Vec3V p0 = V3LoadA(&transform0.p.x); @@ -128,6 +130,8 @@ bool Gu::pcmContactSphereMesh(GU_CONTACT_METHOD_ARGS) multiManifold.mNumManifolds = 0; multiManifold.setRelativeTransform(curTransform); + Ps::InlineArray<PxU32, LOCAL_CONTACTS_SIZE> delayedContacts; + const PxU8* PX_RESTRICT extraData = meshData->getExtraTrigData(); // mesh scale is not baked into cached verts PCMSphereVsMeshContactGenerationCallback callback( @@ -141,7 +145,9 @@ bool Gu::pcmContactSphereMesh(GU_CONTACT_METHOD_ARGS) contactBuffer, extraData, meshScaling, - idtMeshScale); + idtMeshScale, + &delayedContacts, + renderOutput); PxVec3 obbCenter = sphereCenterShape1Space; PxVec3 obbExtents = PxVec3(inflatedRadius); @@ -154,6 +160,7 @@ bool Gu::pcmContactSphereMesh(GU_CONTACT_METHOD_ARGS) callback.flushCache(); + callback.mGeneration.generateLastContacts(); callback.mGeneration.processContacts(GU_SPHERE_MANIFOLD_CACHE_SIZE, false); } else diff --git a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp index 7a0e68a2..5f0b20a2 100644 --- a/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp +++ b/PhysX_3.4/Source/GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp @@ -1154,10 +1154,10 @@ namespace physx { //ML : defer the contacts generation const PxU32 nb = sizeof(PCMDeferredPolyData)/sizeof(PxU32); - PxU32 newSize = nb + mDeferredContacts.size(); - mDeferredContacts.reserve(newSize); - PCMDeferredPolyData* PX_RESTRICT data = reinterpret_cast<PCMDeferredPolyData*>(mDeferredContacts.end()); - mDeferredContacts.forceSize_Unsafe(newSize); + PxU32 newSize = nb + mDeferredContacts->size(); + mDeferredContacts->reserve(newSize); + PCMDeferredPolyData* PX_RESTRICT data = reinterpret_cast<PCMDeferredPolyData*>(mDeferredContacts->end()); + mDeferredContacts->forceSize_Unsafe(newSize); data->mTriangleIndex = triangleIndex; data->mFeatureIndex = feature1; diff --git a/PhysX_3.4/Source/LowLevelDynamics/src/DyContactPrepShared.h b/PhysX_3.4/Source/LowLevelDynamics/src/DyContactPrepShared.h index c973f1cf..cf1705de 100644 --- a/PhysX_3.4/Source/LowLevelDynamics/src/DyContactPrepShared.h +++ b/PhysX_3.4/Source/LowLevelDynamics/src/DyContactPrepShared.h @@ -118,6 +118,7 @@ inline bool getFrictionPatches(CorrelationBuffer& c, //Rotate the contact normal into world space c.frictionPatchWorldNormal[c.frictionPatchCount] = bodyFrame0.rotate(patch.body0Normal); c.frictionPatchContactCounts[c.frictionPatchCount] = 0; + c.patchBounds[c.frictionPatchCount].setEmpty(); c.correlationListHeads[c.frictionPatchCount] = CorrelationBuffer::LIST_END; PxMemCopy(&c.frictionPatches[c.frictionPatchCount++], &patch, sizeof(FrictionPatch)); } diff --git a/PhysX_3.4/Source/LowLevelDynamics/src/DyCorrelationBuffer.h b/PhysX_3.4/Source/LowLevelDynamics/src/DyCorrelationBuffer.h index 23945071..9d115c36 100644 --- a/PhysX_3.4/Source/LowLevelDynamics/src/DyCorrelationBuffer.h +++ b/PhysX_3.4/Source/LowLevelDynamics/src/DyCorrelationBuffer.h @@ -38,6 +38,7 @@ #include "foundation/PxTransform.h" #include "DyFrictionPatch.h" #include "GuContactBuffer.h" +#include "foundation/PxBounds3.h" namespace physx { @@ -60,13 +61,15 @@ struct CorrelationBuffer PxU8 flags; PxU8 count; PxReal staticFriction, dynamicFriction, restitution; + PxBounds3 patchBounds; }; // we can have as many contact patches as contacts, unfortunately ContactPatchData contactPatches[Gu::ContactBuffer::MAX_CONTACTS]; FrictionPatch PX_ALIGN(16, frictionPatches[MAX_FRICTION_PATCHES]); - PxVec3 PX_ALIGN(16, frictionPatchWorldNormal[MAX_FRICTION_PATCHES]); + PxVec3 PX_ALIGN(16, frictionPatchWorldNormal[MAX_FRICTION_PATCHES]); + PxBounds3 patchBounds[MAX_FRICTION_PATCHES]; PxU32 frictionPatchContactCounts[MAX_FRICTION_PATCHES]; PxU32 correlationListHeads[MAX_FRICTION_PATCHES+1]; diff --git a/PhysX_3.4/Source/LowLevelDynamics/src/DyFrictionCorrelation.cpp b/PhysX_3.4/Source/LowLevelDynamics/src/DyFrictionCorrelation.cpp index 2d0af683..75e9d0ee 100644 --- a/PhysX_3.4/Source/LowLevelDynamics/src/DyFrictionCorrelation.cpp +++ b/PhysX_3.4/Source/LowLevelDynamics/src/DyFrictionCorrelation.cpp @@ -89,6 +89,8 @@ bool createContactPatches(CorrelationBuffer& fb, const Gu::ContactPoint* cb, PxU initContactPatch(fb.contactPatches[contactPatchCount++], Ps::to16(0), contacts[0].restitution, contacts[0].staticFriction, contacts[0].dynamicFriction, PxU8(contacts[0].materialFlags)); + PxBounds3 bounds(contacts[0].point, contacts[0].point); + PxU32 patchIndex = 0; for (PxU32 i = 1; i<contactCount; i++) @@ -101,6 +103,7 @@ bool createContactPatches(CorrelationBuffer& fb, const Gu::ContactPoint* cb, PxU && curContact.restitution == preContact.restitution && curContact.normal.dot(preContact.normal)>=normalTolerance) { + bounds.include(curContact.point); count++; } else @@ -110,14 +113,20 @@ bool createContactPatches(CorrelationBuffer& fb, const Gu::ContactPoint* cb, PxU patchIndex = i; currentPatchData->count = count; count = 1; + currentPatchData->patchBounds = bounds; currentPatchData = fb.contactPatches + contactPatchCount; initContactPatch(fb.contactPatches[contactPatchCount++], Ps::to16(i), curContact.restitution, curContact.staticFriction, curContact.dynamicFriction, PxU8(curContact.materialFlags)); + + + bounds = PxBounds3(curContact.point, curContact.point); } } if(count!=1) currentPatchData->count = count; + + currentPatchData->patchBounds = bounds; } fb.contactPatchCount = contactPatchCount; return true; @@ -155,11 +164,13 @@ bool correlatePatches(CorrelationBuffer& fb, fb.frictionPatchWorldNormal[j] = patchNormal; fb.frictionPatchContactCounts[frictionPatchCount] = c.count; fb.contactID[frictionPatchCount][0] = 0xffff; + fb.patchBounds[frictionPatchCount] = c.patchBounds; fb.contactID[frictionPatchCount++][1] = 0xffff; c.next = CorrelationBuffer::LIST_END; } else { + fb.patchBounds[j].include(c.patchBounds); fb.frictionPatchContactCounts[j] += c.count; c.next = Ps::to16(fb.correlationListHeads[j]); } @@ -187,8 +198,18 @@ void growPatches(CorrelationBuffer& fb, { FrictionPatch& fp = fb.frictionPatches[i]; - if(fp.anchorCount==2 || fb.correlationListHeads[i]==CorrelationBuffer::LIST_END) - continue; + if (fp.anchorCount == 2 || fb.correlationListHeads[i] == CorrelationBuffer::LIST_END) + { + const PxReal frictionPatchDiagonalSq = fb.patchBounds[i].getDimensions().magnitudeSquared(); + const PxReal anchorSqDistance = (fp.body0Anchors[0] - fp.body0Anchors[1]).magnitudeSquared(); + + //If the squared distance between the anchors is more than a quarter of the patch diagonal, we can keep, + //otherwise the anchors are potentially clustered around a corner so force a rebuild of the patch + if(fb.frictionPatchContactCounts[i] == 0 || (anchorSqDistance * 4.f) >= frictionPatchDiagonalSq) + continue; + + fp.anchorCount = 0; + } PxVec3 worldAnchors[2]; PxU16 anchorCount = 0; diff --git a/PhysX_3.4/Source/PhysX/src/buffering/ScbScenePvdClient.cpp b/PhysX_3.4/Source/PhysX/src/buffering/ScbScenePvdClient.cpp index 44c5a7b2..3991251f 100644 --- a/PhysX_3.4/Source/PhysX/src/buffering/ScbScenePvdClient.cpp +++ b/PhysX_3.4/Source/PhysX/src/buffering/ScbScenePvdClient.cpp @@ -264,6 +264,12 @@ namespace { mRenderer.visualizeDoubleCone(t, PxF32(angle), active); } + + virtual void visualizeLine( const PxVec3& p0, const PxVec3& p1, PxU32 color) + { + const PvdDebugLine line(p0, p1, color); + mRenderer.drawLines(&line, 1); + } }; } diff --git a/PhysX_3.4/Source/PhysX/src/gpu/PxPhysXGpuModuleLoader.cpp b/PhysX_3.4/Source/PhysX/src/gpu/PxPhysXGpuModuleLoader.cpp index 88d0d516..0ed04ce4 100644 --- a/PhysX_3.4/Source/PhysX/src/gpu/PxPhysXGpuModuleLoader.cpp +++ b/PhysX_3.4/Source/PhysX/src/gpu/PxPhysXGpuModuleLoader.cpp @@ -35,9 +35,12 @@ #include "PxGpu.h" #include "cudamanager/PxCudaContextManager.h" -#if PX_WINDOWS -#include "../../../Common/src/CmPhysXCommon.h" -#endif + +namespace physx +{ + // alias shared foundation to something usable + namespace Ps = shdfnd; +} #define STRINGIFY(x) #x #define GETSTRING(x) STRINGIFY(x) @@ -165,6 +168,12 @@ namespace physx *reinterpret_cast<void**>(&g_PxCreateCudaContextManager_Func) = dlsym(s_library, "PxCreateCudaContextManager"); *reinterpret_cast<void**>(&g_PxGetSuggestedCudaDeviceOrdinal_Func) = dlsym(s_library, "PxGetSuggestedCudaDeviceOrdinal"); } + + // Check for errors + if (s_library == NULL) + Ps::getFoundation().error(PxErrorCode::eINTERNAL_ERROR, __FILE__, __LINE__, "Failed to load PhysXGpu so!"); + if (g_PxCreatePhysXGpu_Func == NULL || g_PxCreateCudaContextManager_Func == NULL || g_PxGetSuggestedCudaDeviceOrdinal_Func == NULL) + Ps::getFoundation().error(PxErrorCode::eINTERNAL_ERROR, __FILE__, __LINE__, "PhysXGpu so is incompatible with this version of PhysX!"); } #endif // PX_LINUX diff --git a/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexMeshBuilder.cpp b/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexMeshBuilder.cpp index 0d283d9f..851368c4 100644 --- a/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexMeshBuilder.cpp +++ b/PhysX_3.4/Source/PhysXCooking/src/convex/ConvexMeshBuilder.cpp @@ -261,9 +261,7 @@ bool ConvexMeshBuilder::loadConvexHull(const PxConvexMeshDesc& desc, ConvexHullL while (dest < pastLastDest) { const PxU16 * trig16 = reinterpret_cast<const PxU16*>(source); - *dest++ = trig16[0]; - *dest++ = trig16[1]; - *dest++ = trig16[2]; + *dest++ = *trig16; source += desc.indices.stride; } } diff --git a/PhysX_3.4/Source/PhysXCooking/src/convex/QuickHullConvexHullLib.cpp b/PhysX_3.4/Source/PhysXCooking/src/convex/QuickHullConvexHullLib.cpp index 95bd314d..b9d0adfc 100644 --- a/PhysX_3.4/Source/PhysXCooking/src/convex/QuickHullConvexHullLib.cpp +++ b/PhysX_3.4/Source/PhysXCooking/src/convex/QuickHullConvexHullLib.cpp @@ -1202,7 +1202,7 @@ namespace local // 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 // to slice the initial OBB - if (numVerts >= mConvexDesc.vertexLimit) + if (numVerts > mConvexDesc.vertexLimit) { return QuickHullResult::eVERTEX_LIMIT_REACHED; } diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtConstraintHelper.h b/PhysX_3.4/Source/PhysXExtensions/src/ExtConstraintHelper.h index cf4d300c..6f45fca4 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtConstraintHelper.h +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtConstraintHelper.h @@ -254,9 +254,16 @@ namespace Ext if(lin) { PxMat33 axes(qA); - if(lin&1) linear(axes[0], -cB2cAp[0], PxConstraintSolveHint::eEQUALITY, current++); - if(lin&2) linear(axes[1], -cB2cAp[1], PxConstraintSolveHint::eEQUALITY, current++); - if(lin&4) linear(axes[2], -cB2cAp[2], PxConstraintSolveHint::eEQUALITY, current++); + + PxVec3 error(0.f); + + if(lin&1) error -= axes[0]*cB2cAp[0]; + if(lin&2) error -= axes[1]*cB2cAp[1]; + if(lin&4) error -= axes[2]*cB2cAp[2]; + + if(lin&1) linear(axes[0], -cB2cAp[0], PxConstraintSolveHint::eEQUALITY, current++, error); + if(lin&2) linear(axes[1], -cB2cAp[1], PxConstraintSolveHint::eEQUALITY, current++, error); + if(lin&4) linear(axes[2], -cB2cAp[2], PxConstraintSolveHint::eEQUALITY, current++, error); } for(Px1DConstraint* front = mCurrent; front < current; front++) @@ -300,10 +307,11 @@ namespace Ext return c; } - PX_FORCE_INLINE Px1DConstraint* linear(const PxVec3& axis, PxReal posErr, PxConstraintSolveHint::Enum hint, Px1DConstraint* c) + PX_FORCE_INLINE Px1DConstraint* linear(const PxVec3& axis, PxReal posErr, PxConstraintSolveHint::Enum hint, Px1DConstraint* c, + const PxVec3& errorVec) { c->solveHint = PxU16(hint); - c->linear0 = axis; c->angular0 = mRa.cross(axis); + c->linear0 = axis; c->angular0 = (mRa + errorVec).cross(axis); c->linear1 = axis; c->angular1 = mRb.cross(axis); PX_ASSERT(c->linear0.isFinite()); PX_ASSERT(c->linear1.isFinite()); diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtD6Joint.cpp b/PhysX_3.4/Source/PhysXExtensions/src/ExtD6Joint.cpp index f60aa21b..152cf8f6 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtD6Joint.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtD6Joint.cpp @@ -343,11 +343,6 @@ This used to be in angular locked: namespace { -PxReal tanHalfFromSin(PxReal sin) -{ - return Ps::tanHalf(sin, 1 - sin*sin); -} - PxQuat truncate(const PxQuat& qIn, PxReal minCosHalfTol, bool& truncated) { PxQuat q = qIn.w >= 0 ? qIn : -qIn; @@ -440,7 +435,7 @@ void D6JointVisualize(PxConstraintVisualizer &viz, const void* constantBlock, const PxTransform& body0Transform, const PxTransform& body1Transform, - PxU32 /*flags*/) + PxU32 flags) { using namespace joint; @@ -459,57 +454,78 @@ void D6JointVisualize(PxConstraintVisualizer &viz, PxTransform cA2w = body0Transform * data.c2b[0]; PxTransform cB2w = body1Transform * data.c2b[1]; - viz.visualizeJointFrames(cA2w, cB2w); + if(flags & PxConstraintVisualizationFlag::eLOCAL_FRAMES) + viz.visualizeJointFrames(cA2w, cB2w); - if(cA2w.q.dot(cB2w.q)<0) - cB2w.q = -cB2w.q; + if(flags & PxConstraintVisualizationFlag::eLIMITS) + { + if(cA2w.q.dot(cB2w.q)<0) + cB2w.q = -cB2w.q; - PxTransform cB2cA = cA2w.transformInv(cB2w); + PxTransform cB2cA = cA2w.transformInv(cB2w); - PxQuat swing, twist; - Ps::separateSwingTwist(cB2cA.q,swing,twist); + PxQuat swing, twist; + Ps::separateSwingTwist(cB2cA.q,swing,twist); - PxMat33 cA2w_m(cA2w.q), cB2w_m(cB2w.q); - PxVec3 bX = cB2w_m[0], aY = cA2w_m[1], aZ = cA2w_m[2]; + PxMat33 cA2w_m(cA2w.q), cB2w_m(cB2w.q); + PxVec3 bX = cB2w_m[0], aY = cA2w_m[1], aZ = cA2w_m[2]; - if(data.limited&TWIST_FLAG) - { - PxReal tqPhi = Ps::tanHalf(twist.x, twist.w); // always support (-pi, +pi) - viz.visualizeAngularLimit(cA2w, data.twistLimit.lower, data.twistLimit.upper, - PxAbs(tqPhi) > data.tqTwistHigh + data.tqSwingPad); - } + if(data.limited&TWIST_FLAG) + { + PxReal tqPhi = Ps::tanHalf(twist.x, twist.w); // always support (-pi, +pi) - bool swing1Limited = (data.limited & SWING1_FLAG)!=0, swing2Limited = (data.limited & SWING2_FLAG)!=0; + // PT: TODO: refactor with similar code in revolute joint + PxReal quarterAngle = tqPhi; + PxReal lower = data.tqTwistLow; + PxReal upper = data.tqTwistHigh; + PxReal pad = data.tqTwistPad; - if(swing1Limited && swing2Limited) - { - PxVec3 tanQSwing = PxVec3(0, Ps::tanHalf(swing.z,swing.w), -Ps::tanHalf(swing.y,swing.w)); - Cm::ConeLimitHelper coneHelper(data.tqSwingZ, data.tqSwingY, data.tqSwingPad); - viz.visualizeLimitCone(cA2w, data.tqSwingZ, data.tqSwingY, - !coneHelper.contains(tanQSwing)); - } - else if(swing1Limited ^ swing2Limited) - { - PxTransform yToX = PxTransform(PxVec3(0), PxQuat(-PxPi/2, PxVec3(0,0,1.f))); - PxTransform zToX = PxTransform(PxVec3(0), PxQuat(PxPi/2, PxVec3(0,1.f,0))); + if(data.twistLimit.isSoft()) + pad = 0.0f; + + bool active = false; + PX_ASSERT(lower<upper); + if(quarterAngle < lower+pad) + active = true; + if(quarterAngle > upper-pad) + active = true; + + viz.visualizeAngularLimit(cA2w, data.twistLimit.lower, data.twistLimit.upper, active); + } + + bool swing1Limited = (data.limited & SWING1_FLAG)!=0, swing2Limited = (data.limited & SWING2_FLAG)!=0; - if(swing1Limited) + if(swing1Limited && swing2Limited) { - if(data.locked & SWING2_FLAG) - viz.visualizeAngularLimit(cA2w * yToX, -data.swingLimit.yAngle, data.swingLimit.yAngle, - PxAbs(Ps::tanHalf(swing.y, swing.w)) > data.tqSwingY - data.tqSwingPad); - else - viz.visualizeDoubleCone(cA2w * zToX, data.swingLimit.yAngle, - PxAbs(tanHalfFromSin(aZ.dot(bX)))> data.thSwingY - data.thSwingPad); + PxVec3 tanQSwing = PxVec3(0, Ps::tanHalf(swing.z,swing.w), -Ps::tanHalf(swing.y,swing.w)); + const PxReal pad = data.swingLimit.isSoft() ? 0.0f : data.tqSwingPad; + Cm::ConeLimitHelper coneHelper(data.tqSwingZ, data.tqSwingY, pad); + viz.visualizeLimitCone(cA2w, data.tqSwingZ, data.tqSwingY, + !coneHelper.contains(tanQSwing)); } - else + else if(swing1Limited ^ swing2Limited) { - if(data.locked & SWING1_FLAG) - viz.visualizeAngularLimit(cA2w * zToX, -data.swingLimit.zAngle, data.swingLimit.zAngle, - PxAbs(Ps::tanHalf(swing.z, swing.w)) > data.tqSwingZ - data.tqSwingPad); - else - viz.visualizeDoubleCone(cA2w * yToX, data.swingLimit.zAngle, - PxAbs(tanHalfFromSin(aY.dot(bX)))> data.thSwingZ - data.thSwingPad); + PxTransform yToX = PxTransform(PxVec3(0), PxQuat(-PxPi/2, PxVec3(0,0,1.f))); + PxTransform zToX = PxTransform(PxVec3(0), PxQuat(PxPi/2, PxVec3(0,1.f,0))); + + if(swing1Limited) + { + if(data.locked & SWING2_FLAG) + viz.visualizeAngularLimit(cA2w * yToX, -data.swingLimit.yAngle, data.swingLimit.yAngle, + PxAbs(Ps::tanHalf(swing.y, swing.w)) > data.tqSwingY - data.tqSwingPad); + else + viz.visualizeDoubleCone(cA2w * zToX, data.swingLimit.yAngle, + PxAbs(tanHalfFromSin(aZ.dot(bX)))> data.thSwingY - data.thSwingPad); + } + else + { + if(data.locked & SWING1_FLAG) + viz.visualizeAngularLimit(cA2w * zToX, -data.swingLimit.zAngle, data.swingLimit.zAngle, + PxAbs(Ps::tanHalf(swing.z, swing.w)) > data.tqSwingZ - data.tqSwingPad); + else + viz.visualizeDoubleCone(cA2w * yToX, data.swingLimit.zAngle, + PxAbs(tanHalfFromSin(aY.dot(bX)))> data.thSwingZ - data.thSwingPad); + } } } } diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtD6Joint.h b/PhysX_3.4/Source/PhysXExtensions/src/ExtD6Joint.h index 059ba002..9cba22af 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtD6Joint.h +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtD6Joint.h @@ -33,12 +33,18 @@ #include "ExtJoint.h" #include "PxD6Joint.h" +#include "PsMathUtils.h" namespace physx { struct PxD6JointGeneratedValues; namespace Ext { + PX_FORCE_INLINE PxReal tanHalfFromSin(PxReal sin) + { + return Ps::tanHalf(sin, PxSqrt(1.0f - sin*sin)); + } + struct D6JointData : public JointData { //= ATTENTION! ===================================================================================== diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtD6JointSolverPrep.cpp b/PhysX_3.4/Source/PhysXExtensions/src/ExtD6JointSolverPrep.cpp index 632f53d4..c6d3f7c1 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtD6JointSolverPrep.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtD6JointSolverPrep.cpp @@ -68,7 +68,7 @@ namespace Ext PxTransform cB2w = bB2w.transform(data.c2b[1]); body0WorldOffset = cB2w.p-bA2w.p; - ConstraintHelper g(constraints, cA2w.p-bA2w.p, cB2w.p-bB2w.p); + ConstraintHelper g(constraints, cB2w.p-bA2w.p, cB2w.p-bB2w.p); if(cA2w.q.dot(cB2w.q)<0) // minimum dist quat (equiv to flipping cB2bB.q, which we don't use anywhere) cB2w.q = -cB2w.q; @@ -147,7 +147,8 @@ namespace Ext if(limited & SWING1_FLAG && limited & SWING2_FLAG) { - Cm::ConeLimitHelper coneHelper(data.tqSwingZ, data.tqSwingY, data.tqSwingPad); + const PxReal pad = data.swingLimit.isSoft() ? 0.0f : data.tqSwingPad; + Cm::ConeLimitHelper coneHelper(data.tqSwingZ, data.tqSwingY, pad); PxVec3 axis; PxReal error; @@ -163,26 +164,16 @@ namespace Ext if(limited & SWING1_FLAG) { if(locked & SWING2_FLAG) - { g.quarterAnglePair(Ps::tanHalf(swing.y, swing.w), -data.tqSwingY, data.tqSwingY, tqPad, aY, limit); - } else - { - PxReal dot=-aZ.dot(bX); - g.halfAnglePair(Ps::tanHalf(dot, 1-dot*dot), -data.thSwingY, data.thSwingY, thPad, aZ.cross(bX), limit); - } + g.halfAnglePair(tanHalfFromSin(-aZ.dot(bX)), -data.thSwingY, data.thSwingY, thPad, aZ.cross(bX), limit); } if(limited & SWING2_FLAG) { if(locked & SWING1_FLAG) - { g.quarterAnglePair(Ps::tanHalf(swing.z, swing.w), -data.tqSwingZ, data.tqSwingZ, tqPad, aZ, limit); - } else - { - PxReal dot=aY.dot(bX); - g.halfAnglePair(Ps::tanHalf(dot, 1-dot*dot), -data.thSwingZ, data.thSwingZ, thPad, -aY.cross(bX), limit); - } + g.halfAnglePair(tanHalfFromSin(aY.dot(bX)), -data.thSwingZ, data.thSwingZ, thPad, -aY.cross(bX), limit); } } diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtDistanceJoint.cpp b/PhysX_3.4/Source/PhysXExtensions/src/ExtDistanceJoint.cpp index c1dde681..9168d893 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtDistanceJoint.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtDistanceJoint.cpp @@ -148,12 +148,35 @@ void DistanceJoint::setDistanceJointFlag(PxDistanceJointFlag::Enum flag, bool va namespace { -void DistanceJointVisualize(PxConstraintVisualizer& /*viz*/, - const void* /*constantBlock*/, - const PxTransform& /*body0Transform*/, - const PxTransform& /*body1Transform*/, - PxU32 /*flags*/) +static void DistanceJointVisualize(PxConstraintVisualizer& viz, const void* constantBlock, const PxTransform& body0Transform, const PxTransform& body1Transform, PxU32 flags) { + const DistanceJointData& data = *reinterpret_cast<const DistanceJointData*>(constantBlock); + + const PxTransform cA2w = body0Transform.transform(data.c2b[0]); + const PxTransform cB2w = body1Transform.transform(data.c2b[1]); + + if(flags & PxConstraintVisualizationFlag::eLOCAL_FRAMES) + viz.visualizeJointFrames(cA2w, cB2w); + + // PT: we consider the following is part of the joint's "limits" since that's the only available flag we have + if(flags & PxConstraintVisualizationFlag::eLIMITS) + { + const bool enforceMax = (data.jointFlags & PxDistanceJointFlag::eMAX_DISTANCE_ENABLED); + const bool enforceMin = (data.jointFlags & PxDistanceJointFlag::eMIN_DISTANCE_ENABLED); + if(!enforceMin && !enforceMax) + return; + + PxVec3 dir = cB2w.p - cA2w.p; + const float currentDist = dir.normalize(); + + PxU32 color = 0x00ff00; + if(enforceMax && currentDist>data.maxDistance) + color = 0xff0000; + if(enforceMin && currentDist<data.minDistance) + color = 0x0000ff; + + viz.visualizeLine(cA2w.p, cB2w.p, color); + } } void DistanceJointProject(const void* /*constantBlock*/, diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtFixedJoint.cpp b/PhysX_3.4/Source/PhysXExtensions/src/ExtFixedJoint.cpp index bee99ed2..980721c1 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtFixedJoint.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtFixedJoint.cpp @@ -93,14 +93,17 @@ void FixedJointVisualize(PxConstraintVisualizer& viz, const void* constantBlock, const PxTransform& body0Transform, const PxTransform& body1Transform, - PxU32 /*flags*/) + PxU32 flags) { - const FixedJointData& data = *reinterpret_cast<const FixedJointData*>(constantBlock); + if(flags & PxConstraintVisualizationFlag::eLOCAL_FRAMES) + { + const FixedJointData& data = *reinterpret_cast<const FixedJointData*>(constantBlock); - const PxTransform& t0 = body0Transform * data.c2b[0]; - const PxTransform& t1 = body1Transform * data.c2b[1]; + const PxTransform& t0 = body0Transform * data.c2b[0]; + const PxTransform& t1 = body1Transform * data.c2b[1]; - viz.visualizeJointFrames(t0, t1); + viz.visualizeJointFrames(t0, t1); + } } diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtFixedJointSolverPrep.cpp b/PhysX_3.4/Source/PhysXExtensions/src/ExtFixedJointSolverPrep.cpp index d677bee1..162440a4 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtFixedJointSolverPrep.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtFixedJointSolverPrep.cpp @@ -55,7 +55,7 @@ namespace Ext PxVec3 bOriginInA = cA2w.transformInv(cB2w.p); body0WorldOffset = cB2w.p-bA2w.p; - joint::ConstraintHelper ch(constraints,cA2w.p-bA2w.p, cB2w.p-bB2w.p); + joint::ConstraintHelper ch(constraints,cB2w.p-bA2w.p, cB2w.p-bB2w.p); ch.prepareLockedAxes(cA2w.q, cB2w.q, bOriginInA, 7, 7); return ch.getCount(); diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtJoint.h b/PhysX_3.4/Source/PhysXExtensions/src/ExtJoint.h index 9a8b1d9d..d6428f0f 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtJoint.h +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtJoint.h @@ -202,17 +202,13 @@ namespace Ext mPxConstraint->markDirty(); } - PxTransform getBodyPose(const PxRigidActor* actor) const + static PxTransform getGlobalPose(const PxRigidActor* actor) { if(!actor) return PxTransform(PxIdentity); - else if(actor->is<PxRigidStatic>()) - return actor->getGlobalPose(); - else - return actor->getGlobalPose() * static_cast<const PxRigidBody*>(actor)->getCMassLocalPose(); + return actor->getGlobalPose(); } - void getActorVelocity(const PxRigidActor* actor, PxVec3& linear, PxVec3& angular) const { if(!actor || actor->is<PxRigidStatic>()) @@ -230,8 +226,8 @@ namespace Ext { PxRigidActor* actor0, * actor1; mPxConstraint->getActors(actor0, actor1); - PxTransform t0 = getBodyPose(actor0) * mLocalPose[0], - t1 = getBodyPose(actor1) * mLocalPose[1]; + const PxTransform t0 = getGlobalPose(actor0) * mLocalPose[0]; + const PxTransform t1 = getGlobalPose(actor1) * mLocalPose[1]; return t0.transformInv(t1); } diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtPrismaticJoint.cpp b/PhysX_3.4/Source/PhysXExtensions/src/ExtPrismaticJoint.cpp index 882803dd..7ce3f789 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtPrismaticJoint.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtPrismaticJoint.cpp @@ -123,20 +123,21 @@ void PrismaticJointVisualize(PxConstraintVisualizer& viz, const void* constantBlock, const PxTransform& body0Transform, const PxTransform& body1Transform, - PxU32 /*flags*/) + PxU32 flags) { const PrismaticJointData& data = *reinterpret_cast<const PrismaticJointData*>(constantBlock); const PxTransform& t0 = body0Transform * data.c2b[0]; const PxTransform& t1 = body1Transform * data.c2b[1]; - viz.visualizeJointFrames(t0, t1); + if(flags & PxConstraintVisualizationFlag::eLOCAL_FRAMES) + viz.visualizeJointFrames(t0, t1); - PxVec3 axis = t0.rotate(PxVec3(1.f,0,0)); - PxReal ordinate = axis.dot(t0.transformInv(t1.p)-t0.p); - - if(data.jointFlags & PxPrismaticJointFlag::eLIMIT_ENABLED) + if((flags & PxConstraintVisualizationFlag::eLIMITS) && (data.jointFlags & PxPrismaticJointFlag::eLIMIT_ENABLED)) { + const PxVec3 bOriginInA = t0.transformInv(t1.p); + const PxReal ordinate = bOriginInA.x; + viz.visualizeLinearLimit(t0, t1, data.limit.lower, ordinate < data.limit.lower + data.limit.contactDistance); viz.visualizeLinearLimit(t0, t1, data.limit.upper, ordinate > data.limit.upper - data.limit.contactDistance); } diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp b/PhysX_3.4/Source/PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp index a5d7d633..d65086e6 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp @@ -59,7 +59,7 @@ namespace Ext PxVec3 bOriginInA = cA2w.transformInv(cB2w.p); body0WorldOffset = cB2w.p-bA2w.p; - joint::ConstraintHelper ch(constraints,cA2w.p-bA2w.p, cB2w.p-bB2w.p); + joint::ConstraintHelper ch(constraints,cB2w.p-bA2w.p, cB2w.p-bB2w.p); ch.prepareLockedAxes(cA2w.q, cB2w.q, bOriginInA, limitIsLocked ? 7ul : 6ul, 7ul); if(limitEnabled && !limitIsLocked) diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtRevoluteJoint.cpp b/PhysX_3.4/Source/PhysXExtensions/src/ExtRevoluteJoint.cpp index 40300b90..6f3e82c4 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtRevoluteJoint.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtRevoluteJoint.cpp @@ -82,7 +82,7 @@ PxReal RevoluteJoint::getAngle() const PxReal RevoluteJoint::getVelocity() const { - return getRelativeAngularVelocity().x; + return getRelativeAngularVelocity().magnitude(); } @@ -94,7 +94,7 @@ PxJointAngularLimitPair RevoluteJoint::getLimit() const void RevoluteJoint::setLimit(const PxJointAngularLimitPair& limit) { - PX_CHECK_AND_RETURN(limit.isValid(), "PxRevoluteJoint::setTwistLimit: limit invalid"); + PX_CHECK_AND_RETURN(limit.isValid(), "PxRevoluteJoint::setLimit: limit invalid"); PX_CHECK_AND_RETURN(limit.lower>-PxPi && limit.upper<PxPi , "PxRevoluteJoint::twist limit must be strictly -*PI and PI"); PX_CHECK_AND_RETURN(limit.upper - limit.lower < PxTwoPi, "PxRevoluteJoint::twist limit range must be strictly less than 2*PI"); data().limit = limit; @@ -226,17 +226,42 @@ void RevoluteJointVisualize(PxConstraintVisualizer& viz, const void* constantBlock, const PxTransform& body0Transform, const PxTransform& body1Transform, - PxU32 /*flags*/) + PxU32 flags) { const RevoluteJointData& data = *reinterpret_cast<const RevoluteJointData*>(constantBlock); const PxTransform& t0 = body0Transform * data.c2b[0]; const PxTransform& t1 = body1Transform * data.c2b[1]; - viz.visualizeJointFrames(t0, t1); + if(flags & PxConstraintVisualizationFlag::eLOCAL_FRAMES) + viz.visualizeJointFrames(t0, t1); - if(data.jointFlags & PxRevoluteJointFlag::eLIMIT_ENABLED) - viz.visualizeAngularLimit(t0, data.limit.lower, data.limit.upper, false); + if((flags & PxConstraintVisualizationFlag::eLIMITS) && (data.jointFlags & PxRevoluteJointFlag::eLIMIT_ENABLED)) + { + // PT: TODO: refactor this with the solver prep code + PxQuat cB2cAq = t0.q.getConjugate() * t1.q; + PxQuat twist(cB2cAq.x,0,0,cB2cAq.w); + + PxReal magnitude = twist.normalize(); + PxReal tqPhi = physx::intrinsics::fsel(magnitude - 1e-6f, twist.x / (1.0f + twist.w), 0.f); + + PxReal quarterAngle = tqPhi; + PxReal lower = data.tqLow; + PxReal upper = data.tqHigh; + PxReal pad = data.tqPad; + + if(data.limit.isSoft()) + pad = 0; + + bool active = false; + PX_ASSERT(lower<upper); + if(quarterAngle < lower+pad) + active = true; + if(quarterAngle > upper-pad) + active = true; + + viz.visualizeAngularLimit(t0, data.limit.lower, data.limit.upper, active); + } } } diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp b/PhysX_3.4/Source/PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp index faca3069..3d175b64 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp @@ -61,7 +61,7 @@ namespace Ext cB2w.q = -cB2w.q; body0WorldOffset = cB2w.p-bA2w.p; - Ext::joint::ConstraintHelper ch(constraints, cA2w.p - bA2w.p, cB2w.p - bB2w.p); + Ext::joint::ConstraintHelper ch(constraints, cB2w.p - bA2w.p, cB2w.p - bB2w.p); ch.prepareLockedAxes(cA2w.q, cB2w.q, cA2w.transformInv(cB2w.p), 7, PxU32(limitIsLocked ? 7 : 6)); @@ -98,10 +98,13 @@ namespace Ext if(limitEnabled) { - PxQuat cB2cAq = cA2w.q.getConjugate() * cB2w.q; - PxQuat twist(cB2cAq.x,0,0,cB2cAq.w); + // PT: rotation part of "const PxTransform cB2cA = cA2w.transformInv(cB2w);" + const PxQuat cB2cAq = cA2w.q.getConjugate() * cB2w.q; + // PT: twist part of "Ps::separateSwingTwist(cB2cAq,swing,twist)" (more or less) + PxQuat twist(cB2cAq.x,0,0,cB2cAq.w); PxReal magnitude = twist.normalize(); + PxReal tqPhi = physx::intrinsics::fsel(magnitude - 1e-6f, twist.x / (1.0f + twist.w), 0.f); ch.quarterAnglePair(tqPhi, data.tqLow, data.tqHigh, data.tqPad, axis, limit); diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtSphericalJoint.cpp b/PhysX_3.4/Source/PhysXExtensions/src/ExtSphericalJoint.cpp index 362b3f9d..d60f94de 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtSphericalJoint.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtSphericalJoint.cpp @@ -128,7 +128,7 @@ void SphericalJointVisualize(PxConstraintVisualizer& viz, const void* constantBlock, const PxTransform& body0Transform, const PxTransform& body1Transform, - PxU32 /*flags*/) + PxU32 flags) { using namespace joint; const SphericalJointData& data = *reinterpret_cast<const SphericalJointData*>(constantBlock); @@ -136,10 +136,10 @@ void SphericalJointVisualize(PxConstraintVisualizer& viz, PxTransform cA2w = body0Transform * data.c2b[0]; PxTransform cB2w = body1Transform * data.c2b[1]; - viz.visualizeJointFrames(cA2w, cB2w); + if(flags & PxConstraintVisualizationFlag::eLOCAL_FRAMES) + viz.visualizeJointFrames(cA2w, cB2w); - - if(data.jointFlags & PxSphericalJointFlag::eLIMIT_ENABLED) + if((flags & PxConstraintVisualizationFlag::eLIMITS) && (data.jointFlags & PxSphericalJointFlag::eLIMIT_ENABLED)) { if(cA2w.q.dot(cB2w.q)<0) cB2w.q = -cB2w.q; @@ -149,7 +149,8 @@ void SphericalJointVisualize(PxConstraintVisualizer& viz, Ps::separateSwingTwist(cB2cA.q,swing,twist); PxVec3 tanQSwing = PxVec3(0, Ps::tanHalf(swing.z,swing.w), -Ps::tanHalf(swing.y,swing.w)); - Cm::ConeLimitHelper coneHelper(data.tanQZLimit, data.tanQYLimit, data.tanQPad); + const PxReal pad = data.limit.isSoft() ? 0.0f : data.tanQPad; + Cm::ConeLimitHelper coneHelper(data.tanQZLimit, data.tanQYLimit, pad); viz.visualizeLimitCone(cA2w, data.tanQZLimit, data.tanQYLimit, !coneHelper.contains(tanQSwing)); } diff --git a/PhysX_3.4/Source/PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp b/PhysX_3.4/Source/PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp index 6a82189d..148ff7d7 100644 --- a/PhysX_3.4/Source/PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp +++ b/PhysX_3.4/Source/PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp @@ -66,13 +66,13 @@ namespace Ext Ps::separateSwingTwist(cA2w.q.getConjugate() * cB2w.q, swing, twist); PX_ASSERT(PxAbs(swing.x)<1e-6f); - Cm::ConeLimitHelper coneHelper(data.tanQZLimit, data.tanQYLimit, data.tanQPad); + const PxReal pad = data.limit.isSoft() ? 0.0f : data.tanQPad; + Cm::ConeLimitHelper coneHelper(data.tanQZLimit, data.tanQYLimit, pad); PxVec3 axis; PxReal error; if(coneHelper.getLimit(swing, axis, error)) ch.angularLimit(cA2w.rotate(axis),error,data.limit); - } ch.prepareLockedAxes(cA2w.q, cB2w.q, cA2w.transformInv(cB2w.p), 7, 0); diff --git a/PhysX_3.4/Source/SimulationController/src/ScConstraintSim.cpp b/PhysX_3.4/Source/SimulationController/src/ScConstraintSim.cpp index d9ebf841..f55954a9 100644 --- a/PhysX_3.4/Source/SimulationController/src/ScConstraintSim.cpp +++ b/PhysX_3.4/Source/SimulationController/src/ScConstraintSim.cpp @@ -482,23 +482,29 @@ PX_INLINE Sc::BodySim* Sc::ConstraintSim::getConstraintGroupBody() void Sc::ConstraintSim::visualize(PxRenderBuffer& output) { - if (!(getCore().getFlags() & PxConstraintFlag::eVISUALIZATION)) + if(!(getCore().getFlags() & PxConstraintFlag::eVISUALIZATION)) return; PxsRigidBody* b0 = mLowLevelConstraint.body0; PxsRigidBody* b1 = mLowLevelConstraint.body1; - const PxTransform& t0 = b0 ? b0->getPose() : PxTransform(PxIdentity); - const PxTransform& t1 = b1 ? b1->getPose() : PxTransform(PxIdentity); + const PxTransform idt(PxIdentity); + const PxTransform& t0 = b0 ? b0->getPose() : idt; + const PxTransform& t1 = b1 ? b1->getPose() : idt; - PxReal frameScale = mScene.getVisualizationScale() * mScene.getVisualizationParameter(PxVisualizationParameter::eJOINT_LOCAL_FRAMES); - PxReal limitScale = mScene.getVisualizationScale() * mScene.getVisualizationParameter(PxVisualizationParameter::eJOINT_LIMITS); + const PxReal frameScale = mScene.getVisualizationScale() * mScene.getVisualizationParameter(PxVisualizationParameter::eJOINT_LOCAL_FRAMES); + const PxReal limitScale = mScene.getVisualizationScale() * mScene.getVisualizationParameter(PxVisualizationParameter::eJOINT_LIMITS); - Cm::RenderOutput renderOut( static_cast<Cm::RenderBuffer &>( output ) ); - Cm::ConstraintImmediateVisualizer viz( frameScale, limitScale, renderOut ); + Cm::RenderOutput renderOut(static_cast<Cm::RenderBuffer &>(output)); + Cm::ConstraintImmediateVisualizer viz(frameScale, limitScale, renderOut); - mCore.getVisualize()(viz, mLowLevelConstraint.constantBlock, t0, t1, - PxConstraintVisualizationFlag::eLOCAL_FRAMES | PxConstraintVisualizationFlag::eLIMITS); + PxU32 flags = 0; + if(frameScale!=0.0f) + flags |= PxConstraintVisualizationFlag::eLOCAL_FRAMES; + if(limitScale!=0.0f) + flags |= PxConstraintVisualizationFlag::eLIMITS; + + mCore.getVisualize()(viz, mLowLevelConstraint.constantBlock, t0, t1, flags); } diff --git a/PhysX_3.4/Source/SimulationController/src/ScElementInteractionMarker.h b/PhysX_3.4/Source/SimulationController/src/ScElementInteractionMarker.h index 58e69069..743de966 100644 --- a/PhysX_3.4/Source/SimulationController/src/ScElementInteractionMarker.h +++ b/PhysX_3.4/Source/SimulationController/src/ScElementInteractionMarker.h @@ -32,6 +32,7 @@ #define PX_COLLISION_ELEMENT_INTERACTION_MARKER #include "ScElementSimInteraction.h" +#include "ScNPhaseCore.h" namespace physx { @@ -62,6 +63,7 @@ PX_INLINE Sc::ElementInteractionMarker::ElementInteractionMarker(ElementSim& ele PX_UNUSED(active); PX_ASSERT(!active); getScene().registerInteraction(this, false); + getScene().getNPhaseCore()->registerInteraction(this); } } diff --git a/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.cpp b/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.cpp index 8a4b4b07..b0cf7a5a 100644 --- a/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.cpp +++ b/PhysX_3.4/Source/SimulationController/src/ScNPhaseCore.cpp @@ -523,9 +523,6 @@ ElementSimInteraction* Sc::NPhaseCore::onOverlapRemovedStage1(ElementSim* volume void Sc::NPhaseCore::onOverlapRemoved(ElementSim* volume0, ElementSim* volume1, const PxU32 ccdPass, void* elemSim, PxsContactManagerOutputIterator& outputs, bool useAdaptiveForce) { - PX_UNUSED(elemSim); - // PT: ordering them here is again useless, as "findInteraction" will reorder according to counts... - ElementSim* elementHi = volume1; ElementSim* elementLo = volume0; // No actor internal interactions @@ -1490,14 +1487,23 @@ Sc::ElementSimInteraction* Sc::NPhaseCore::convert(ElementSimInteraction* pair, ElementSim& elementA = pair->getElement0(); ElementSim& elementB = pair->getElement1(); - ElementSimInteraction* result = NULL; - // Wake up the actors of the pair if ((pair->getActor0().getActorType() == PxActorType::eRIGID_DYNAMIC) && !(static_cast<BodySim&>(pair->getActor0()).isActive())) static_cast<BodySim&>(pair->getActor0()).internalWakeUp(); if ((pair->getActor1().getActorType() == PxActorType::eRIGID_DYNAMIC) && !(static_cast<BodySim&>(pair->getActor1()).isActive())) static_cast<BodySim&>(pair->getActor1()).internalWakeUp(); + // Since the FilterPair struct might have been re-used in the newly created interaction, we need to clear + // the filter pair marker of the old interaction to avoid that the FilterPair gets deleted by the releaseElementPair() + // call that follows. + pair->clearInteractionFlag(InteractionFlag::eIS_FILTER_PAIR); + + // PT: we need to unregister the old interaction *before* creating the new one, because Sc::NPhaseCore::registerInteraction will use + // ElementSim pointers which are the same for both. + unregisterInteraction(pair); + releaseElementPair(pair, PairReleaseFlag::eWAKE_ON_LOST_TOUCH | PairReleaseFlag::eBP_VOLUME_REMOVED, 0, removeFromDirtyList, outputs, useAdaptiveForce); + + ElementSimInteraction* result = NULL; switch (newType) { case InteractionType::eINVALID: @@ -1543,16 +1549,6 @@ Sc::ElementSimInteraction* Sc::NPhaseCore::convert(ElementSimInteraction* pair, result->setFilterPairIndex(filterInfo.filterPairIndex); } - if (pair->readInteractionFlag(InteractionFlag::eIS_FILTER_PAIR)) - pair->clearInteractionFlag(InteractionFlag::eIS_FILTER_PAIR); - // Since the FilterPair struct might have been re-used in the newly created interaction, we need to clear - // the filter pair marker of the old interaction to avoid that the FilterPair gets deleted by the releaseElementPair() - // call that follows. - - unregisterInteraction(pair); - - releaseElementPair(pair, PairReleaseFlag::eWAKE_ON_LOST_TOUCH | PairReleaseFlag::eBP_VOLUME_REMOVED, 0, removeFromDirtyList, outputs, useAdaptiveForce); - return result; } diff --git a/PhysX_3.4/Source/SimulationController/src/ScShapeInteraction.cpp b/PhysX_3.4/Source/SimulationController/src/ScShapeInteraction.cpp index 8956983e..d18961e2 100644 --- a/PhysX_3.4/Source/SimulationController/src/ScShapeInteraction.cpp +++ b/PhysX_3.4/Source/SimulationController/src/ScShapeInteraction.cpp @@ -103,8 +103,8 @@ Sc::ShapeInteraction::ShapeInteraction(ShapeSim& s1, ShapeSim& s2, ActorPair* aP mEdgeIndex = simpleIslandManager->addContactManager(NULL, indexA, indexB, this); bool active = registerInActors(contactManager); + scene.getNPhaseCore()->registerInteraction(this); scene.registerInteraction(this, active); // this will call onActivate() on the interaction - } else { diff --git a/PhysX_3.4/Source/compiler/android16/Makefile.PhysXExtensions.mk b/PhysX_3.4/Source/compiler/android16/Makefile.PhysXExtensions.mk index c36757b7..29392115 100644 --- a/PhysX_3.4/Source/compiler/android16/Makefile.PhysXExtensions.mk +++ b/PhysX_3.4/Source/compiler/android16/Makefile.PhysXExtensions.mk @@ -116,7 +116,7 @@ PhysXExtensions_debug_hpaths += ./../../PhysX/src PhysXExtensions_debug_lpaths := PhysXExtensions_debug_lpaths += ./../../../../PxShared/lib/android16 PhysXExtensions_debug_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_debug_defines += PX_BUILD_NUMBER=22845541 +PhysXExtensions_debug_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_debug_defines += ANDROID PhysXExtensions_debug_defines += GLES2 PhysXExtensions_debug_defines += __STDC_LIMIT_MACROS @@ -247,7 +247,7 @@ PhysXExtensions_checked_hpaths += ./../../PhysX/src PhysXExtensions_checked_lpaths := PhysXExtensions_checked_lpaths += ./../../../../PxShared/lib/android16 PhysXExtensions_checked_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_checked_defines += PX_BUILD_NUMBER=22845541 +PhysXExtensions_checked_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_checked_defines += ANDROID PhysXExtensions_checked_defines += GLES2 PhysXExtensions_checked_defines += __STDC_LIMIT_MACROS @@ -379,7 +379,7 @@ PhysXExtensions_profile_hpaths += ./../../PhysX/src PhysXExtensions_profile_lpaths := PhysXExtensions_profile_lpaths += ./../../../../PxShared/lib/android16 PhysXExtensions_profile_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_profile_defines += PX_BUILD_NUMBER=22845541 +PhysXExtensions_profile_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_profile_defines += ANDROID PhysXExtensions_profile_defines += GLES2 PhysXExtensions_profile_defines += __STDC_LIMIT_MACROS @@ -511,7 +511,7 @@ PhysXExtensions_release_hpaths += ./../../PhysX/src PhysXExtensions_release_lpaths := PhysXExtensions_release_lpaths += ./../../../../PxShared/lib/android16 PhysXExtensions_release_defines := $(PhysXExtensions_custom_defines) -PhysXExtensions_release_defines += PX_BUILD_NUMBER=22845541 +PhysXExtensions_release_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_release_defines += ANDROID PhysXExtensions_release_defines += GLES2 PhysXExtensions_release_defines += __STDC_LIMIT_MACROS diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevel.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevel.mk index b17def81..893974d8 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevel.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevel.mk @@ -94,7 +94,7 @@ LowLevel_debug_common_cflags += $(addprefix -I, $(LowLevel_debug_hpaths)) LowLevel_debug_common_cflags += -m32 LowLevel_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevel_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevel_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevel_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevel_debug_common_cflags += -Wno-missing-field-initializers LowLevel_debug_common_cflags += -g3 -gdwarf-2 LowLevel_debug_cflags := $(LowLevel_debug_common_cflags) @@ -208,7 +208,7 @@ LowLevel_checked_common_cflags += $(addprefix -I, $(LowLevel_checked_hpaths)) LowLevel_checked_common_cflags += -m32 LowLevel_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevel_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevel_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevel_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevel_checked_common_cflags += -Wno-missing-field-initializers LowLevel_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevel_checked_cflags := $(LowLevel_checked_common_cflags) @@ -322,7 +322,7 @@ LowLevel_profile_common_cflags += $(addprefix -I, $(LowLevel_profile_hpaths)) LowLevel_profile_common_cflags += -m32 LowLevel_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevel_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevel_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevel_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevel_profile_common_cflags += -Wno-missing-field-initializers LowLevel_profile_common_cflags += -O3 -fno-strict-aliasing LowLevel_profile_cflags := $(LowLevel_profile_common_cflags) @@ -435,7 +435,7 @@ LowLevel_release_common_cflags += $(addprefix -I, $(LowLevel_release_hpaths)) LowLevel_release_common_cflags += -m32 LowLevel_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevel_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevel_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevel_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevel_release_common_cflags += -Wno-missing-field-initializers LowLevel_release_common_cflags += -O3 -fno-strict-aliasing LowLevel_release_cflags := $(LowLevel_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelAABB.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelAABB.mk index 4a3cfa86..4c5e9ec3 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelAABB.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelAABB.mk @@ -66,7 +66,7 @@ LowLevelAABB_debug_common_cflags += $(addprefix -I, $(LowLevelAABB_debug_hpat LowLevelAABB_debug_common_cflags += -m32 LowLevelAABB_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelAABB_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelAABB_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelAABB_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelAABB_debug_common_cflags += -Wno-missing-field-initializers LowLevelAABB_debug_common_cflags += -g3 -gdwarf-2 LowLevelAABB_debug_cflags := $(LowLevelAABB_debug_common_cflags) @@ -166,7 +166,7 @@ LowLevelAABB_checked_common_cflags += $(addprefix -I, $(LowLevelAABB_checked_ LowLevelAABB_checked_common_cflags += -m32 LowLevelAABB_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelAABB_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelAABB_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelAABB_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelAABB_checked_common_cflags += -Wno-missing-field-initializers LowLevelAABB_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelAABB_checked_cflags := $(LowLevelAABB_checked_common_cflags) @@ -266,7 +266,7 @@ LowLevelAABB_profile_common_cflags += $(addprefix -I, $(LowLevelAABB_profile_ LowLevelAABB_profile_common_cflags += -m32 LowLevelAABB_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelAABB_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelAABB_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelAABB_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelAABB_profile_common_cflags += -Wno-missing-field-initializers LowLevelAABB_profile_common_cflags += -O3 -fno-strict-aliasing LowLevelAABB_profile_cflags := $(LowLevelAABB_profile_common_cflags) @@ -365,7 +365,7 @@ LowLevelAABB_release_common_cflags += $(addprefix -I, $(LowLevelAABB_release_ LowLevelAABB_release_common_cflags += -m32 LowLevelAABB_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelAABB_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelAABB_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelAABB_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelAABB_release_common_cflags += -Wno-missing-field-initializers LowLevelAABB_release_common_cflags += -O3 -fno-strict-aliasing LowLevelAABB_release_cflags := $(LowLevelAABB_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelCloth.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelCloth.mk index 7e40a1fa..5af0dca5 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelCloth.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelCloth.mk @@ -61,7 +61,7 @@ LowLevelCloth_debug_common_cflags += $(addprefix -I, $(LowLevelCloth_debug_hp LowLevelCloth_debug_common_cflags += -m32 LowLevelCloth_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelCloth_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelCloth_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelCloth_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelCloth_debug_common_cflags += -Wno-missing-field-initializers LowLevelCloth_debug_common_cflags += -g3 -gdwarf-2 LowLevelCloth_debug_cflags := $(LowLevelCloth_debug_common_cflags) @@ -150,7 +150,7 @@ LowLevelCloth_checked_common_cflags += $(addprefix -I, $(LowLevelCloth_checke LowLevelCloth_checked_common_cflags += -m32 LowLevelCloth_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelCloth_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelCloth_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelCloth_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelCloth_checked_common_cflags += -Wno-missing-field-initializers LowLevelCloth_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelCloth_checked_cflags := $(LowLevelCloth_checked_common_cflags) @@ -239,7 +239,7 @@ LowLevelCloth_profile_common_cflags += $(addprefix -I, $(LowLevelCloth_profil LowLevelCloth_profile_common_cflags += -m32 LowLevelCloth_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelCloth_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelCloth_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelCloth_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelCloth_profile_common_cflags += -Wno-missing-field-initializers LowLevelCloth_profile_common_cflags += -O3 -fno-strict-aliasing LowLevelCloth_profile_cflags := $(LowLevelCloth_profile_common_cflags) @@ -327,7 +327,7 @@ LowLevelCloth_release_common_cflags += $(addprefix -I, $(LowLevelCloth_releas LowLevelCloth_release_common_cflags += -m32 LowLevelCloth_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelCloth_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelCloth_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelCloth_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelCloth_release_common_cflags += -Wno-missing-field-initializers LowLevelCloth_release_common_cflags += -O3 -fno-strict-aliasing LowLevelCloth_release_cflags := $(LowLevelCloth_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelDynamics.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelDynamics.mk index 9ea7ce8f..c4e8b361 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelDynamics.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelDynamics.mk @@ -87,7 +87,7 @@ LowLevelDynamics_debug_common_cflags += $(addprefix -I, $(LowLevelDynamics_de LowLevelDynamics_debug_common_cflags += -m32 LowLevelDynamics_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelDynamics_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelDynamics_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelDynamics_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelDynamics_debug_common_cflags += -Wno-missing-field-initializers LowLevelDynamics_debug_common_cflags += -g3 -gdwarf-2 LowLevelDynamics_debug_cflags := $(LowLevelDynamics_debug_common_cflags) @@ -191,7 +191,7 @@ LowLevelDynamics_checked_common_cflags += $(addprefix -I, $(LowLevelDynamics_ LowLevelDynamics_checked_common_cflags += -m32 LowLevelDynamics_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelDynamics_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelDynamics_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelDynamics_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelDynamics_checked_common_cflags += -Wno-missing-field-initializers LowLevelDynamics_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelDynamics_checked_cflags := $(LowLevelDynamics_checked_common_cflags) @@ -295,7 +295,7 @@ LowLevelDynamics_profile_common_cflags += $(addprefix -I, $(LowLevelDynamics_ LowLevelDynamics_profile_common_cflags += -m32 LowLevelDynamics_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelDynamics_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelDynamics_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelDynamics_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelDynamics_profile_common_cflags += -Wno-missing-field-initializers LowLevelDynamics_profile_common_cflags += -O3 -fno-strict-aliasing LowLevelDynamics_profile_cflags := $(LowLevelDynamics_profile_common_cflags) @@ -398,7 +398,7 @@ LowLevelDynamics_release_common_cflags += $(addprefix -I, $(LowLevelDynamics_ LowLevelDynamics_release_common_cflags += -m32 LowLevelDynamics_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelDynamics_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelDynamics_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelDynamics_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelDynamics_release_common_cflags += -Wno-missing-field-initializers LowLevelDynamics_release_common_cflags += -O3 -fno-strict-aliasing LowLevelDynamics_release_cflags := $(LowLevelDynamics_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelParticles.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelParticles.mk index 7bb6e9e8..403c7e79 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelParticles.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.LowLevelParticles.mk @@ -73,7 +73,7 @@ LowLevelParticles_debug_common_cflags += $(addprefix -I, $(LowLevelParticles_ LowLevelParticles_debug_common_cflags += -m32 LowLevelParticles_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelParticles_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelParticles_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelParticles_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelParticles_debug_common_cflags += -Wno-missing-field-initializers LowLevelParticles_debug_common_cflags += -g3 -gdwarf-2 LowLevelParticles_debug_cflags := $(LowLevelParticles_debug_common_cflags) @@ -171,7 +171,7 @@ LowLevelParticles_checked_common_cflags += $(addprefix -I, $(LowLevelParticle LowLevelParticles_checked_common_cflags += -m32 LowLevelParticles_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelParticles_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelParticles_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelParticles_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelParticles_checked_common_cflags += -Wno-missing-field-initializers LowLevelParticles_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelParticles_checked_cflags := $(LowLevelParticles_checked_common_cflags) @@ -269,7 +269,7 @@ LowLevelParticles_profile_common_cflags += $(addprefix -I, $(LowLevelParticle LowLevelParticles_profile_common_cflags += -m32 LowLevelParticles_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelParticles_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelParticles_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelParticles_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelParticles_profile_common_cflags += -Wno-missing-field-initializers LowLevelParticles_profile_common_cflags += -O3 -fno-strict-aliasing LowLevelParticles_profile_cflags := $(LowLevelParticles_profile_common_cflags) @@ -366,7 +366,7 @@ LowLevelParticles_release_common_cflags += $(addprefix -I, $(LowLevelParticle LowLevelParticles_release_common_cflags += -m32 LowLevelParticles_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelParticles_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelParticles_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelParticles_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelParticles_release_common_cflags += -Wno-missing-field-initializers LowLevelParticles_release_common_cflags += -O3 -fno-strict-aliasing LowLevelParticles_release_cflags := $(LowLevelParticles_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.PhysX.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.PhysX.mk index 3c0ac800..39cddb68 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.PhysX.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.PhysX.mk @@ -138,7 +138,7 @@ PhysX_release_common_cflags += $(addprefix -I, $(PhysX_release_hpaths)) PhysX_release_common_cflags += -m32 PhysX_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysX_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysX_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysX_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysX_release_common_cflags += -Wno-missing-field-initializers PhysX_release_common_cflags += -O3 -fno-strict-aliasing PhysX_release_cflags := $(PhysX_release_common_cflags) @@ -280,7 +280,7 @@ PhysX_debug_common_cflags += $(addprefix -I, $(PhysX_debug_hpaths)) PhysX_debug_common_cflags += -m32 PhysX_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysX_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysX_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysX_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysX_debug_common_cflags += -Wno-missing-field-initializers PhysX_debug_common_cflags += -g3 -gdwarf-2 PhysX_debug_cflags := $(PhysX_debug_common_cflags) @@ -421,7 +421,7 @@ PhysX_checked_common_cflags += $(addprefix -I, $(PhysX_checked_hpaths)) PhysX_checked_common_cflags += -m32 PhysX_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysX_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysX_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysX_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysX_checked_common_cflags += -Wno-missing-field-initializers PhysX_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysX_checked_cflags := $(PhysX_checked_common_cflags) @@ -562,7 +562,7 @@ PhysX_profile_common_cflags += $(addprefix -I, $(PhysX_profile_hpaths)) PhysX_profile_common_cflags += -m32 PhysX_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysX_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysX_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysX_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysX_profile_common_cflags += -Wno-missing-field-initializers PhysX_profile_common_cflags += -O3 -fno-strict-aliasing PhysX_profile_cflags := $(PhysX_profile_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXCharacterKinematic.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXCharacterKinematic.mk index 36674087..b9aa10e8 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXCharacterKinematic.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXCharacterKinematic.mk @@ -77,7 +77,7 @@ PhysXCharacterKinematic_debug_common_cflags += $(addprefix -I, $(PhysXCharact PhysXCharacterKinematic_debug_common_cflags += -m32 PhysXCharacterKinematic_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCharacterKinematic_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCharacterKinematic_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCharacterKinematic_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCharacterKinematic_debug_common_cflags += -Wno-missing-field-initializers PhysXCharacterKinematic_debug_common_cflags += -g3 -gdwarf-2 PhysXCharacterKinematic_debug_cflags := $(PhysXCharacterKinematic_debug_common_cflags) @@ -185,7 +185,7 @@ PhysXCharacterKinematic_checked_common_cflags += $(addprefix -I, $(PhysXChara PhysXCharacterKinematic_checked_common_cflags += -m32 PhysXCharacterKinematic_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCharacterKinematic_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCharacterKinematic_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCharacterKinematic_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCharacterKinematic_checked_common_cflags += -Wno-missing-field-initializers PhysXCharacterKinematic_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCharacterKinematic_checked_cflags := $(PhysXCharacterKinematic_checked_common_cflags) @@ -293,7 +293,7 @@ PhysXCharacterKinematic_profile_common_cflags += $(addprefix -I, $(PhysXChara PhysXCharacterKinematic_profile_common_cflags += -m32 PhysXCharacterKinematic_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCharacterKinematic_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCharacterKinematic_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCharacterKinematic_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCharacterKinematic_profile_common_cflags += -Wno-missing-field-initializers PhysXCharacterKinematic_profile_common_cflags += -O3 -fno-strict-aliasing PhysXCharacterKinematic_profile_cflags := $(PhysXCharacterKinematic_profile_common_cflags) @@ -400,7 +400,7 @@ PhysXCharacterKinematic_release_common_cflags += $(addprefix -I, $(PhysXChara PhysXCharacterKinematic_release_common_cflags += -m32 PhysXCharacterKinematic_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCharacterKinematic_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCharacterKinematic_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCharacterKinematic_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCharacterKinematic_release_common_cflags += -Wno-missing-field-initializers PhysXCharacterKinematic_release_common_cflags += -O3 -fno-strict-aliasing PhysXCharacterKinematic_release_cflags := $(PhysXCharacterKinematic_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXCommon.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXCommon.mk index 178221fd..a18dbcde 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXCommon.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXCommon.mk @@ -201,7 +201,7 @@ PhysXCommon_release_common_cflags += $(addprefix -I, $(PhysXCommon_release_hp PhysXCommon_release_common_cflags += -m32 PhysXCommon_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCommon_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCommon_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCommon_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCommon_release_common_cflags += -Wno-missing-field-initializers PhysXCommon_release_common_cflags += -O3 -fno-strict-aliasing PhysXCommon_release_cflags := $(PhysXCommon_release_common_cflags) @@ -311,7 +311,7 @@ PhysXCommon_debug_common_cflags += $(addprefix -I, $(PhysXCommon_debug_hpaths PhysXCommon_debug_common_cflags += -m32 PhysXCommon_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCommon_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCommon_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCommon_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCommon_debug_common_cflags += -Wno-missing-field-initializers PhysXCommon_debug_common_cflags += -g3 -gdwarf-2 PhysXCommon_debug_cflags := $(PhysXCommon_debug_common_cflags) @@ -420,7 +420,7 @@ PhysXCommon_checked_common_cflags += $(addprefix -I, $(PhysXCommon_checked_hp PhysXCommon_checked_common_cflags += -m32 PhysXCommon_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCommon_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCommon_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCommon_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCommon_checked_common_cflags += -Wno-missing-field-initializers PhysXCommon_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCommon_checked_cflags := $(PhysXCommon_checked_common_cflags) @@ -529,7 +529,7 @@ PhysXCommon_profile_common_cflags += $(addprefix -I, $(PhysXCommon_profile_hp PhysXCommon_profile_common_cflags += -m32 PhysXCommon_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCommon_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCommon_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCommon_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCommon_profile_common_cflags += -Wno-missing-field-initializers PhysXCommon_profile_common_cflags += -O3 -fno-strict-aliasing PhysXCommon_profile_cflags := $(PhysXCommon_profile_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXCooking.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXCooking.mk index e11c207b..57409a28 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXCooking.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXCooking.mk @@ -94,7 +94,7 @@ PhysXCooking_release_common_cflags += $(addprefix -I, $(PhysXCooking_release_ PhysXCooking_release_common_cflags += -m32 PhysXCooking_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCooking_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCooking_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCooking_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCooking_release_common_cflags += -Wno-missing-field-initializers PhysXCooking_release_common_cflags += -O3 -fno-strict-aliasing PhysXCooking_release_cflags := $(PhysXCooking_release_common_cflags) @@ -213,7 +213,7 @@ PhysXCooking_debug_common_cflags += $(addprefix -I, $(PhysXCooking_debug_hpat PhysXCooking_debug_common_cflags += -m32 PhysXCooking_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCooking_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCooking_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCooking_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCooking_debug_common_cflags += -Wno-missing-field-initializers PhysXCooking_debug_common_cflags += -g3 -gdwarf-2 PhysXCooking_debug_cflags := $(PhysXCooking_debug_common_cflags) @@ -331,7 +331,7 @@ PhysXCooking_checked_common_cflags += $(addprefix -I, $(PhysXCooking_checked_ PhysXCooking_checked_common_cflags += -m32 PhysXCooking_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCooking_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCooking_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCooking_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCooking_checked_common_cflags += -Wno-missing-field-initializers PhysXCooking_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCooking_checked_cflags := $(PhysXCooking_checked_common_cflags) @@ -449,7 +449,7 @@ PhysXCooking_profile_common_cflags += $(addprefix -I, $(PhysXCooking_profile_ PhysXCooking_profile_common_cflags += -m32 PhysXCooking_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCooking_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCooking_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCooking_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCooking_profile_common_cflags += -Wno-missing-field-initializers PhysXCooking_profile_common_cflags += -O3 -fno-strict-aliasing PhysXCooking_profile_cflags := $(PhysXCooking_profile_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXExtensions.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXExtensions.mk index 8ea412ce..f8ef22a4 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=22845541 +PhysXExtensions_debug_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_debug_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_debug_defines += _DEBUG PhysXExtensions_debug_defines += PX_DEBUG=1 @@ -129,7 +129,7 @@ PhysXExtensions_debug_common_cflags += $(addprefix -I, $(PhysXExtensions_debu PhysXExtensions_debug_common_cflags += -m32 PhysXExtensions_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXExtensions_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXExtensions_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXExtensions_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXExtensions_debug_common_cflags += -Wno-missing-field-initializers PhysXExtensions_debug_common_cflags += -g3 -gdwarf-2 PhysXExtensions_debug_cflags := $(PhysXExtensions_debug_common_cflags) @@ -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=22845541 +PhysXExtensions_checked_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_checked_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_checked_defines += NDEBUG PhysXExtensions_checked_defines += PX_CHECKED=1 @@ -245,7 +245,7 @@ PhysXExtensions_checked_common_cflags += $(addprefix -I, $(PhysXExtensions_ch PhysXExtensions_checked_common_cflags += -m32 PhysXExtensions_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXExtensions_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXExtensions_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXExtensions_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXExtensions_checked_common_cflags += -Wno-missing-field-initializers PhysXExtensions_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXExtensions_checked_cflags := $(PhysXExtensions_checked_common_cflags) @@ -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=22845541 +PhysXExtensions_profile_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_profile_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_profile_defines += NDEBUG PhysXExtensions_profile_defines += PX_PROFILE=1 @@ -361,7 +361,7 @@ PhysXExtensions_profile_common_cflags += $(addprefix -I, $(PhysXExtensions_pr PhysXExtensions_profile_common_cflags += -m32 PhysXExtensions_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXExtensions_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXExtensions_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXExtensions_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXExtensions_profile_common_cflags += -Wno-missing-field-initializers PhysXExtensions_profile_common_cflags += -O3 -fno-strict-aliasing PhysXExtensions_profile_cflags := $(PhysXExtensions_profile_common_cflags) @@ -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=22845541 +PhysXExtensions_release_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_release_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_release_defines += NDEBUG PhysXExtensions_release_defines += PX_SUPPORT_PVD=0 @@ -476,7 +476,7 @@ PhysXExtensions_release_common_cflags += $(addprefix -I, $(PhysXExtensions_re PhysXExtensions_release_common_cflags += -m32 PhysXExtensions_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXExtensions_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXExtensions_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXExtensions_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXExtensions_release_common_cflags += -Wno-missing-field-initializers PhysXExtensions_release_common_cflags += -O3 -fno-strict-aliasing PhysXExtensions_release_cflags := $(PhysXExtensions_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXVehicle.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXVehicle.mk index e96e839b..6a1956d2 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXVehicle.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.PhysXVehicle.mk @@ -76,7 +76,7 @@ PhysXVehicle_debug_common_cflags += $(addprefix -I, $(PhysXVehicle_debug_hpat PhysXVehicle_debug_common_cflags += -m32 PhysXVehicle_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXVehicle_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXVehicle_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXVehicle_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXVehicle_debug_common_cflags += -Wno-missing-field-initializers PhysXVehicle_debug_common_cflags += -g3 -gdwarf-2 PhysXVehicle_debug_cflags := $(PhysXVehicle_debug_common_cflags) @@ -175,7 +175,7 @@ PhysXVehicle_checked_common_cflags += $(addprefix -I, $(PhysXVehicle_checked_ PhysXVehicle_checked_common_cflags += -m32 PhysXVehicle_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXVehicle_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXVehicle_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXVehicle_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXVehicle_checked_common_cflags += -Wno-missing-field-initializers PhysXVehicle_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXVehicle_checked_cflags := $(PhysXVehicle_checked_common_cflags) @@ -274,7 +274,7 @@ PhysXVehicle_profile_common_cflags += $(addprefix -I, $(PhysXVehicle_profile_ PhysXVehicle_profile_common_cflags += -m32 PhysXVehicle_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXVehicle_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXVehicle_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXVehicle_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXVehicle_profile_common_cflags += -Wno-missing-field-initializers PhysXVehicle_profile_common_cflags += -O3 -fno-strict-aliasing PhysXVehicle_profile_cflags := $(PhysXVehicle_profile_common_cflags) @@ -372,7 +372,7 @@ PhysXVehicle_release_common_cflags += $(addprefix -I, $(PhysXVehicle_release_ PhysXVehicle_release_common_cflags += -m32 PhysXVehicle_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXVehicle_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXVehicle_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXVehicle_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXVehicle_release_common_cflags += -Wno-missing-field-initializers PhysXVehicle_release_common_cflags += -O3 -fno-strict-aliasing PhysXVehicle_release_cflags := $(PhysXVehicle_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.PsFastXml.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.PsFastXml.mk index 05bdda3d..1dd592e8 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.PsFastXml.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.PsFastXml.mk @@ -41,7 +41,7 @@ PsFastXml_debug_common_cflags += $(addprefix -I, $(PsFastXml_debug_hpaths)) PsFastXml_debug_common_cflags += -m32 PsFastXml_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PsFastXml_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PsFastXml_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PsFastXml_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PsFastXml_debug_common_cflags += -Wno-missing-field-initializers PsFastXml_debug_common_cflags += -g3 -gdwarf-2 PsFastXml_debug_cflags := $(PsFastXml_debug_common_cflags) @@ -121,7 +121,7 @@ PsFastXml_release_common_cflags += $(addprefix -I, $(PsFastXml_release_hpaths PsFastXml_release_common_cflags += -m32 PsFastXml_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PsFastXml_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PsFastXml_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PsFastXml_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PsFastXml_release_common_cflags += -Wno-missing-field-initializers PsFastXml_release_common_cflags += -O3 -fno-strict-aliasing PsFastXml_release_cflags := $(PsFastXml_release_common_cflags) @@ -202,7 +202,7 @@ PsFastXml_checked_common_cflags += $(addprefix -I, $(PsFastXml_checked_hpaths PsFastXml_checked_common_cflags += -m32 PsFastXml_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PsFastXml_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PsFastXml_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PsFastXml_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PsFastXml_checked_common_cflags += -Wno-missing-field-initializers PsFastXml_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PsFastXml_checked_cflags := $(PsFastXml_checked_common_cflags) @@ -283,7 +283,7 @@ PsFastXml_profile_common_cflags += $(addprefix -I, $(PsFastXml_profile_hpaths PsFastXml_profile_common_cflags += -m32 PsFastXml_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PsFastXml_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PsFastXml_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PsFastXml_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PsFastXml_profile_common_cflags += -Wno-missing-field-initializers PsFastXml_profile_common_cflags += -O3 -fno-strict-aliasing PsFastXml_profile_cflags := $(PsFastXml_profile_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.PxFoundation.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.PxFoundation.mk index a0079a2e..5fc479be 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.PxFoundation.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.PxFoundation.mk @@ -57,7 +57,7 @@ PxFoundation_debug_common_cflags += $(addprefix -I, $(PxFoundation_debug_hpat PxFoundation_debug_common_cflags += -m32 PxFoundation_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxFoundation_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxFoundation_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxFoundation_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxFoundation_debug_common_cflags += -Wno-missing-field-initializers PxFoundation_debug_common_cflags += -g3 -gdwarf-2 PxFoundation_debug_cflags := $(PxFoundation_debug_common_cflags) @@ -137,7 +137,7 @@ PxFoundation_release_common_cflags += $(addprefix -I, $(PxFoundation_release_ PxFoundation_release_common_cflags += -m32 PxFoundation_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxFoundation_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxFoundation_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxFoundation_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxFoundation_release_common_cflags += -Wno-missing-field-initializers PxFoundation_release_common_cflags += -O3 -fno-strict-aliasing PxFoundation_release_cflags := $(PxFoundation_release_common_cflags) @@ -218,7 +218,7 @@ PxFoundation_checked_common_cflags += $(addprefix -I, $(PxFoundation_checked_ PxFoundation_checked_common_cflags += -m32 PxFoundation_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxFoundation_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxFoundation_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxFoundation_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxFoundation_checked_common_cflags += -Wno-missing-field-initializers PxFoundation_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PxFoundation_checked_cflags := $(PxFoundation_checked_common_cflags) @@ -299,7 +299,7 @@ PxFoundation_profile_common_cflags += $(addprefix -I, $(PxFoundation_profile_ PxFoundation_profile_common_cflags += -m32 PxFoundation_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxFoundation_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxFoundation_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxFoundation_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxFoundation_profile_common_cflags += -Wno-missing-field-initializers PxFoundation_profile_common_cflags += -O3 -fno-strict-aliasing PxFoundation_profile_cflags := $(PxFoundation_profile_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.PxPvdSDK.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.PxPvdSDK.mk index 32a67f2e..dde787dc 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.PxPvdSDK.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.PxPvdSDK.mk @@ -56,7 +56,7 @@ PxPvdSDK_debug_common_cflags += $(addprefix -I, $(PxPvdSDK_debug_hpaths)) PxPvdSDK_debug_common_cflags += -m32 PxPvdSDK_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxPvdSDK_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxPvdSDK_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxPvdSDK_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxPvdSDK_debug_common_cflags += -Wno-missing-field-initializers PxPvdSDK_debug_common_cflags += -g3 -gdwarf-2 PxPvdSDK_debug_cflags := $(PxPvdSDK_debug_common_cflags) @@ -141,7 +141,7 @@ PxPvdSDK_release_common_cflags += $(addprefix -I, $(PxPvdSDK_release_hpaths)) PxPvdSDK_release_common_cflags += -m32 PxPvdSDK_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxPvdSDK_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxPvdSDK_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxPvdSDK_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxPvdSDK_release_common_cflags += -Wno-missing-field-initializers PxPvdSDK_release_common_cflags += -O3 -fno-strict-aliasing PxPvdSDK_release_cflags := $(PxPvdSDK_release_common_cflags) @@ -227,7 +227,7 @@ PxPvdSDK_checked_common_cflags += $(addprefix -I, $(PxPvdSDK_checked_hpaths)) PxPvdSDK_checked_common_cflags += -m32 PxPvdSDK_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxPvdSDK_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxPvdSDK_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxPvdSDK_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxPvdSDK_checked_common_cflags += -Wno-missing-field-initializers PxPvdSDK_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PxPvdSDK_checked_cflags := $(PxPvdSDK_checked_common_cflags) @@ -313,7 +313,7 @@ PxPvdSDK_profile_common_cflags += $(addprefix -I, $(PxPvdSDK_profile_hpaths)) PxPvdSDK_profile_common_cflags += -m32 PxPvdSDK_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxPvdSDK_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxPvdSDK_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxPvdSDK_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxPvdSDK_profile_common_cflags += -Wno-missing-field-initializers PxPvdSDK_profile_common_cflags += -O3 -fno-strict-aliasing PxPvdSDK_profile_cflags := $(PxPvdSDK_profile_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.PxTask.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.PxTask.mk index 856187bb..5bba4a31 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.PxTask.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.PxTask.mk @@ -40,7 +40,7 @@ PxTask_debug_common_cflags += $(addprefix -I, $(PxTask_debug_hpaths)) PxTask_debug_common_cflags += -m32 PxTask_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxTask_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxTask_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxTask_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxTask_debug_common_cflags += -Wno-missing-field-initializers PxTask_debug_common_cflags += -g3 -gdwarf-2 PxTask_debug_cflags := $(PxTask_debug_common_cflags) @@ -119,7 +119,7 @@ PxTask_release_common_cflags += $(addprefix -I, $(PxTask_release_hpaths)) PxTask_release_common_cflags += -m32 PxTask_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxTask_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxTask_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxTask_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxTask_release_common_cflags += -Wno-missing-field-initializers PxTask_release_common_cflags += -O3 -fno-strict-aliasing PxTask_release_cflags := $(PxTask_release_common_cflags) @@ -199,7 +199,7 @@ PxTask_checked_common_cflags += $(addprefix -I, $(PxTask_checked_hpaths)) PxTask_checked_common_cflags += -m32 PxTask_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxTask_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxTask_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxTask_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxTask_checked_common_cflags += -Wno-missing-field-initializers PxTask_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PxTask_checked_cflags := $(PxTask_checked_common_cflags) @@ -279,7 +279,7 @@ PxTask_profile_common_cflags += $(addprefix -I, $(PxTask_profile_hpaths)) PxTask_profile_common_cflags += -m32 PxTask_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxTask_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxTask_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxTask_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxTask_profile_common_cflags += -Wno-missing-field-initializers PxTask_profile_common_cflags += -O3 -fno-strict-aliasing PxTask_profile_cflags := $(PxTask_profile_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.SceneQuery.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.SceneQuery.mk index 1d14fd01..8df092c3 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.SceneQuery.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.SceneQuery.mk @@ -78,7 +78,7 @@ SceneQuery_debug_common_cflags += $(addprefix -I, $(SceneQuery_debug_hpaths)) SceneQuery_debug_common_cflags += -m32 SceneQuery_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SceneQuery_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SceneQuery_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SceneQuery_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SceneQuery_debug_common_cflags += -Wno-missing-field-initializers SceneQuery_debug_common_cflags += -g3 -gdwarf-2 SceneQuery_debug_cflags := $(SceneQuery_debug_common_cflags) @@ -187,7 +187,7 @@ SceneQuery_checked_common_cflags += $(addprefix -I, $(SceneQuery_checked_hpat SceneQuery_checked_common_cflags += -m32 SceneQuery_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SceneQuery_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SceneQuery_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SceneQuery_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SceneQuery_checked_common_cflags += -Wno-missing-field-initializers SceneQuery_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing SceneQuery_checked_cflags := $(SceneQuery_checked_common_cflags) @@ -296,7 +296,7 @@ SceneQuery_profile_common_cflags += $(addprefix -I, $(SceneQuery_profile_hpat SceneQuery_profile_common_cflags += -m32 SceneQuery_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SceneQuery_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SceneQuery_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SceneQuery_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SceneQuery_profile_common_cflags += -Wno-missing-field-initializers SceneQuery_profile_common_cflags += -O3 -fno-strict-aliasing SceneQuery_profile_cflags := $(SceneQuery_profile_common_cflags) @@ -404,7 +404,7 @@ SceneQuery_release_common_cflags += $(addprefix -I, $(SceneQuery_release_hpat SceneQuery_release_common_cflags += -m32 SceneQuery_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SceneQuery_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SceneQuery_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SceneQuery_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SceneQuery_release_common_cflags += -Wno-missing-field-initializers SceneQuery_release_common_cflags += -O3 -fno-strict-aliasing SceneQuery_release_cflags := $(SceneQuery_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux32/Makefile.SimulationController.mk b/PhysX_3.4/Source/compiler/linux32/Makefile.SimulationController.mk index 7889ef99..4e7fa33c 100644 --- a/PhysX_3.4/Source/compiler/linux32/Makefile.SimulationController.mk +++ b/PhysX_3.4/Source/compiler/linux32/Makefile.SimulationController.mk @@ -123,7 +123,7 @@ SimulationController_debug_common_cflags += $(addprefix -I, $(SimulationContr SimulationController_debug_common_cflags += -m32 SimulationController_debug_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SimulationController_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SimulationController_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SimulationController_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SimulationController_debug_common_cflags += -Wno-missing-field-initializers SimulationController_debug_common_cflags += -g3 -gdwarf-2 SimulationController_debug_cflags := $(SimulationController_debug_common_cflags) @@ -244,7 +244,7 @@ SimulationController_checked_common_cflags += $(addprefix -I, $(SimulationCon SimulationController_checked_common_cflags += -m32 SimulationController_checked_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SimulationController_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SimulationController_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SimulationController_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SimulationController_checked_common_cflags += -Wno-missing-field-initializers SimulationController_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing SimulationController_checked_cflags := $(SimulationController_checked_common_cflags) @@ -365,7 +365,7 @@ SimulationController_profile_common_cflags += $(addprefix -I, $(SimulationCon SimulationController_profile_common_cflags += -m32 SimulationController_profile_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SimulationController_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SimulationController_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SimulationController_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SimulationController_profile_common_cflags += -Wno-missing-field-initializers SimulationController_profile_common_cflags += -O3 -fno-strict-aliasing SimulationController_profile_cflags := $(SimulationController_profile_common_cflags) @@ -485,7 +485,7 @@ SimulationController_release_common_cflags += $(addprefix -I, $(SimulationCon SimulationController_release_common_cflags += -m32 SimulationController_release_common_cflags += -Werror -m32 -fPIC -msse2 -mfpmath=sse -malign-double -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SimulationController_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SimulationController_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SimulationController_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SimulationController_release_common_cflags += -Wno-missing-field-initializers SimulationController_release_common_cflags += -O3 -fno-strict-aliasing SimulationController_release_cflags := $(SimulationController_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevel.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevel.mk index a64185fd..1865f276 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevel.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevel.mk @@ -95,7 +95,7 @@ LowLevel_debug_common_cflags += $(addprefix -I, $(LowLevel_debug_hpaths)) LowLevel_debug_common_cflags += -m64 LowLevel_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevel_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevel_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevel_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevel_debug_common_cflags += -Wno-missing-field-initializers LowLevel_debug_common_cflags += -g3 -gdwarf-2 LowLevel_debug_cflags := $(LowLevel_debug_common_cflags) @@ -210,7 +210,7 @@ LowLevel_checked_common_cflags += $(addprefix -I, $(LowLevel_checked_hpaths)) LowLevel_checked_common_cflags += -m64 LowLevel_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevel_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevel_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevel_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevel_checked_common_cflags += -Wno-missing-field-initializers LowLevel_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevel_checked_cflags := $(LowLevel_checked_common_cflags) @@ -325,7 +325,7 @@ LowLevel_profile_common_cflags += $(addprefix -I, $(LowLevel_profile_hpaths)) LowLevel_profile_common_cflags += -m64 LowLevel_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevel_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevel_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevel_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevel_profile_common_cflags += -Wno-missing-field-initializers LowLevel_profile_common_cflags += -O3 -fno-strict-aliasing LowLevel_profile_cflags := $(LowLevel_profile_common_cflags) @@ -439,7 +439,7 @@ LowLevel_release_common_cflags += $(addprefix -I, $(LowLevel_release_hpaths)) LowLevel_release_common_cflags += -m64 LowLevel_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevel_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevel_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevel_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevel_release_common_cflags += -Wno-missing-field-initializers LowLevel_release_common_cflags += -O3 -fno-strict-aliasing LowLevel_release_cflags := $(LowLevel_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelAABB.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelAABB.mk index 6d807f3e..3a5005e2 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelAABB.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelAABB.mk @@ -66,7 +66,7 @@ LowLevelAABB_debug_common_cflags += $(addprefix -I, $(LowLevelAABB_debug_hpat LowLevelAABB_debug_common_cflags += -m64 LowLevelAABB_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelAABB_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelAABB_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelAABB_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelAABB_debug_common_cflags += -Wno-missing-field-initializers LowLevelAABB_debug_common_cflags += -g3 -gdwarf-2 LowLevelAABB_debug_cflags := $(LowLevelAABB_debug_common_cflags) @@ -166,7 +166,7 @@ LowLevelAABB_checked_common_cflags += $(addprefix -I, $(LowLevelAABB_checked_ LowLevelAABB_checked_common_cflags += -m64 LowLevelAABB_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelAABB_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelAABB_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelAABB_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelAABB_checked_common_cflags += -Wno-missing-field-initializers LowLevelAABB_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelAABB_checked_cflags := $(LowLevelAABB_checked_common_cflags) @@ -266,7 +266,7 @@ LowLevelAABB_profile_common_cflags += $(addprefix -I, $(LowLevelAABB_profile_ LowLevelAABB_profile_common_cflags += -m64 LowLevelAABB_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelAABB_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelAABB_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelAABB_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelAABB_profile_common_cflags += -Wno-missing-field-initializers LowLevelAABB_profile_common_cflags += -O3 -fno-strict-aliasing LowLevelAABB_profile_cflags := $(LowLevelAABB_profile_common_cflags) @@ -365,7 +365,7 @@ LowLevelAABB_release_common_cflags += $(addprefix -I, $(LowLevelAABB_release_ LowLevelAABB_release_common_cflags += -m64 LowLevelAABB_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelAABB_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelAABB_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelAABB_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelAABB_release_common_cflags += -Wno-missing-field-initializers LowLevelAABB_release_common_cflags += -O3 -fno-strict-aliasing LowLevelAABB_release_cflags := $(LowLevelAABB_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelCloth.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelCloth.mk index e407f4cf..188840ae 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelCloth.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelCloth.mk @@ -61,7 +61,7 @@ LowLevelCloth_debug_common_cflags += $(addprefix -I, $(LowLevelCloth_debug_hp LowLevelCloth_debug_common_cflags += -m64 LowLevelCloth_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelCloth_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelCloth_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelCloth_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelCloth_debug_common_cflags += -Wno-missing-field-initializers LowLevelCloth_debug_common_cflags += -g3 -gdwarf-2 LowLevelCloth_debug_cflags := $(LowLevelCloth_debug_common_cflags) @@ -150,7 +150,7 @@ LowLevelCloth_checked_common_cflags += $(addprefix -I, $(LowLevelCloth_checke LowLevelCloth_checked_common_cflags += -m64 LowLevelCloth_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelCloth_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelCloth_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelCloth_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelCloth_checked_common_cflags += -Wno-missing-field-initializers LowLevelCloth_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelCloth_checked_cflags := $(LowLevelCloth_checked_common_cflags) @@ -239,7 +239,7 @@ LowLevelCloth_profile_common_cflags += $(addprefix -I, $(LowLevelCloth_profil LowLevelCloth_profile_common_cflags += -m64 LowLevelCloth_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelCloth_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelCloth_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelCloth_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelCloth_profile_common_cflags += -Wno-missing-field-initializers LowLevelCloth_profile_common_cflags += -O3 -fno-strict-aliasing LowLevelCloth_profile_cflags := $(LowLevelCloth_profile_common_cflags) @@ -327,7 +327,7 @@ LowLevelCloth_release_common_cflags += $(addprefix -I, $(LowLevelCloth_releas LowLevelCloth_release_common_cflags += -m64 LowLevelCloth_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelCloth_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelCloth_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelCloth_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelCloth_release_common_cflags += -Wno-missing-field-initializers LowLevelCloth_release_common_cflags += -O3 -fno-strict-aliasing LowLevelCloth_release_cflags := $(LowLevelCloth_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelDynamics.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelDynamics.mk index d4fb8d5e..b886c1b8 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelDynamics.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelDynamics.mk @@ -88,7 +88,7 @@ LowLevelDynamics_debug_common_cflags += $(addprefix -I, $(LowLevelDynamics_de LowLevelDynamics_debug_common_cflags += -m64 LowLevelDynamics_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelDynamics_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelDynamics_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelDynamics_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelDynamics_debug_common_cflags += -Wno-missing-field-initializers LowLevelDynamics_debug_common_cflags += -g3 -gdwarf-2 LowLevelDynamics_debug_cflags := $(LowLevelDynamics_debug_common_cflags) @@ -193,7 +193,7 @@ LowLevelDynamics_checked_common_cflags += $(addprefix -I, $(LowLevelDynamics_ LowLevelDynamics_checked_common_cflags += -m64 LowLevelDynamics_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelDynamics_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelDynamics_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelDynamics_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelDynamics_checked_common_cflags += -Wno-missing-field-initializers LowLevelDynamics_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelDynamics_checked_cflags := $(LowLevelDynamics_checked_common_cflags) @@ -298,7 +298,7 @@ LowLevelDynamics_profile_common_cflags += $(addprefix -I, $(LowLevelDynamics_ LowLevelDynamics_profile_common_cflags += -m64 LowLevelDynamics_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelDynamics_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelDynamics_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelDynamics_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelDynamics_profile_common_cflags += -Wno-missing-field-initializers LowLevelDynamics_profile_common_cflags += -O3 -fno-strict-aliasing LowLevelDynamics_profile_cflags := $(LowLevelDynamics_profile_common_cflags) @@ -402,7 +402,7 @@ LowLevelDynamics_release_common_cflags += $(addprefix -I, $(LowLevelDynamics_ LowLevelDynamics_release_common_cflags += -m64 LowLevelDynamics_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelDynamics_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelDynamics_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelDynamics_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelDynamics_release_common_cflags += -Wno-missing-field-initializers LowLevelDynamics_release_common_cflags += -O3 -fno-strict-aliasing LowLevelDynamics_release_cflags := $(LowLevelDynamics_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelParticles.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelParticles.mk index 9ecc5223..a5320de9 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelParticles.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.LowLevelParticles.mk @@ -75,7 +75,7 @@ LowLevelParticles_debug_common_cflags += $(addprefix -I, $(LowLevelParticles_ LowLevelParticles_debug_common_cflags += -m64 LowLevelParticles_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelParticles_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelParticles_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelParticles_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelParticles_debug_common_cflags += -Wno-missing-field-initializers LowLevelParticles_debug_common_cflags += -g3 -gdwarf-2 LowLevelParticles_debug_cflags := $(LowLevelParticles_debug_common_cflags) @@ -174,7 +174,7 @@ LowLevelParticles_checked_common_cflags += $(addprefix -I, $(LowLevelParticle LowLevelParticles_checked_common_cflags += -m64 LowLevelParticles_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelParticles_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelParticles_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelParticles_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelParticles_checked_common_cflags += -Wno-missing-field-initializers LowLevelParticles_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing LowLevelParticles_checked_cflags := $(LowLevelParticles_checked_common_cflags) @@ -273,7 +273,7 @@ LowLevelParticles_profile_common_cflags += $(addprefix -I, $(LowLevelParticle LowLevelParticles_profile_common_cflags += -m64 LowLevelParticles_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelParticles_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelParticles_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelParticles_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelParticles_profile_common_cflags += -Wno-missing-field-initializers LowLevelParticles_profile_common_cflags += -O3 -fno-strict-aliasing LowLevelParticles_profile_cflags := $(LowLevelParticles_profile_common_cflags) @@ -371,7 +371,7 @@ LowLevelParticles_release_common_cflags += $(addprefix -I, $(LowLevelParticle LowLevelParticles_release_common_cflags += -m64 LowLevelParticles_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden LowLevelParticles_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -LowLevelParticles_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +LowLevelParticles_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough LowLevelParticles_release_common_cflags += -Wno-missing-field-initializers LowLevelParticles_release_common_cflags += -O3 -fno-strict-aliasing LowLevelParticles_release_cflags := $(LowLevelParticles_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.PhysX.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.PhysX.mk index df6c6cc7..98b33635 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.PhysX.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.PhysX.mk @@ -148,7 +148,7 @@ PhysX_release_common_cflags += $(addprefix -I, $(PhysX_release_hpaths)) PhysX_release_common_cflags += -m64 PhysX_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysX_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysX_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysX_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysX_release_common_cflags += -Wno-missing-field-initializers PhysX_release_common_cflags += -O3 -fno-strict-aliasing PhysX_release_cflags := $(PhysX_release_common_cflags) @@ -293,7 +293,7 @@ PhysX_debug_common_cflags += $(addprefix -I, $(PhysX_debug_hpaths)) PhysX_debug_common_cflags += -m64 PhysX_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysX_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysX_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysX_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysX_debug_common_cflags += -Wno-missing-field-initializers PhysX_debug_common_cflags += -g3 -gdwarf-2 PhysX_debug_cflags := $(PhysX_debug_common_cflags) @@ -437,7 +437,7 @@ PhysX_checked_common_cflags += $(addprefix -I, $(PhysX_checked_hpaths)) PhysX_checked_common_cflags += -m64 PhysX_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysX_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysX_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysX_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysX_checked_common_cflags += -Wno-missing-field-initializers PhysX_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysX_checked_cflags := $(PhysX_checked_common_cflags) @@ -581,7 +581,7 @@ PhysX_profile_common_cflags += $(addprefix -I, $(PhysX_profile_hpaths)) PhysX_profile_common_cflags += -m64 PhysX_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysX_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysX_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysX_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysX_profile_common_cflags += -Wno-missing-field-initializers PhysX_profile_common_cflags += -O3 -fno-strict-aliasing PhysX_profile_cflags := $(PhysX_profile_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXCharacterKinematic.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXCharacterKinematic.mk index 5e681152..ea670b95 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXCharacterKinematic.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXCharacterKinematic.mk @@ -77,7 +77,7 @@ PhysXCharacterKinematic_debug_common_cflags += $(addprefix -I, $(PhysXCharact PhysXCharacterKinematic_debug_common_cflags += -m64 PhysXCharacterKinematic_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCharacterKinematic_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCharacterKinematic_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCharacterKinematic_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCharacterKinematic_debug_common_cflags += -Wno-missing-field-initializers PhysXCharacterKinematic_debug_common_cflags += -g3 -gdwarf-2 PhysXCharacterKinematic_debug_cflags := $(PhysXCharacterKinematic_debug_common_cflags) @@ -185,7 +185,7 @@ PhysXCharacterKinematic_checked_common_cflags += $(addprefix -I, $(PhysXChara PhysXCharacterKinematic_checked_common_cflags += -m64 PhysXCharacterKinematic_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCharacterKinematic_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCharacterKinematic_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCharacterKinematic_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCharacterKinematic_checked_common_cflags += -Wno-missing-field-initializers PhysXCharacterKinematic_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCharacterKinematic_checked_cflags := $(PhysXCharacterKinematic_checked_common_cflags) @@ -293,7 +293,7 @@ PhysXCharacterKinematic_profile_common_cflags += $(addprefix -I, $(PhysXChara PhysXCharacterKinematic_profile_common_cflags += -m64 PhysXCharacterKinematic_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCharacterKinematic_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCharacterKinematic_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCharacterKinematic_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCharacterKinematic_profile_common_cflags += -Wno-missing-field-initializers PhysXCharacterKinematic_profile_common_cflags += -O3 -fno-strict-aliasing PhysXCharacterKinematic_profile_cflags := $(PhysXCharacterKinematic_profile_common_cflags) @@ -400,7 +400,7 @@ PhysXCharacterKinematic_release_common_cflags += $(addprefix -I, $(PhysXChara PhysXCharacterKinematic_release_common_cflags += -m64 PhysXCharacterKinematic_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCharacterKinematic_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCharacterKinematic_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCharacterKinematic_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCharacterKinematic_release_common_cflags += -Wno-missing-field-initializers PhysXCharacterKinematic_release_common_cflags += -O3 -fno-strict-aliasing PhysXCharacterKinematic_release_cflags := $(PhysXCharacterKinematic_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXCommon.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXCommon.mk index d71334bb..959d4b5d 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXCommon.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXCommon.mk @@ -201,7 +201,7 @@ PhysXCommon_release_common_cflags += $(addprefix -I, $(PhysXCommon_release_hp PhysXCommon_release_common_cflags += -m64 PhysXCommon_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCommon_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCommon_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCommon_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCommon_release_common_cflags += -Wno-missing-field-initializers PhysXCommon_release_common_cflags += -O3 -fno-strict-aliasing PhysXCommon_release_cflags := $(PhysXCommon_release_common_cflags) @@ -311,7 +311,7 @@ PhysXCommon_debug_common_cflags += $(addprefix -I, $(PhysXCommon_debug_hpaths PhysXCommon_debug_common_cflags += -m64 PhysXCommon_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCommon_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCommon_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCommon_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCommon_debug_common_cflags += -Wno-missing-field-initializers PhysXCommon_debug_common_cflags += -g3 -gdwarf-2 PhysXCommon_debug_cflags := $(PhysXCommon_debug_common_cflags) @@ -420,7 +420,7 @@ PhysXCommon_checked_common_cflags += $(addprefix -I, $(PhysXCommon_checked_hp PhysXCommon_checked_common_cflags += -m64 PhysXCommon_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCommon_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCommon_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCommon_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCommon_checked_common_cflags += -Wno-missing-field-initializers PhysXCommon_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCommon_checked_cflags := $(PhysXCommon_checked_common_cflags) @@ -529,7 +529,7 @@ PhysXCommon_profile_common_cflags += $(addprefix -I, $(PhysXCommon_profile_hp PhysXCommon_profile_common_cflags += -m64 PhysXCommon_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCommon_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCommon_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCommon_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCommon_profile_common_cflags += -Wno-missing-field-initializers PhysXCommon_profile_common_cflags += -O3 -fno-strict-aliasing PhysXCommon_profile_cflags := $(PhysXCommon_profile_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXCooking.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXCooking.mk index 22056497..6eb15102 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXCooking.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXCooking.mk @@ -94,7 +94,7 @@ PhysXCooking_release_common_cflags += $(addprefix -I, $(PhysXCooking_release_ PhysXCooking_release_common_cflags += -m64 PhysXCooking_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCooking_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCooking_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCooking_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCooking_release_common_cflags += -Wno-missing-field-initializers PhysXCooking_release_common_cflags += -O3 -fno-strict-aliasing PhysXCooking_release_cflags := $(PhysXCooking_release_common_cflags) @@ -213,7 +213,7 @@ PhysXCooking_debug_common_cflags += $(addprefix -I, $(PhysXCooking_debug_hpat PhysXCooking_debug_common_cflags += -m64 PhysXCooking_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCooking_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCooking_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCooking_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCooking_debug_common_cflags += -Wno-missing-field-initializers PhysXCooking_debug_common_cflags += -g3 -gdwarf-2 PhysXCooking_debug_cflags := $(PhysXCooking_debug_common_cflags) @@ -331,7 +331,7 @@ PhysXCooking_checked_common_cflags += $(addprefix -I, $(PhysXCooking_checked_ PhysXCooking_checked_common_cflags += -m64 PhysXCooking_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCooking_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCooking_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCooking_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCooking_checked_common_cflags += -Wno-missing-field-initializers PhysXCooking_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXCooking_checked_cflags := $(PhysXCooking_checked_common_cflags) @@ -449,7 +449,7 @@ PhysXCooking_profile_common_cflags += $(addprefix -I, $(PhysXCooking_profile_ PhysXCooking_profile_common_cflags += -m64 PhysXCooking_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXCooking_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXCooking_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXCooking_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXCooking_profile_common_cflags += -Wno-missing-field-initializers PhysXCooking_profile_common_cflags += -O3 -fno-strict-aliasing PhysXCooking_profile_cflags := $(PhysXCooking_profile_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXExtensions.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXExtensions.mk index 4f6c8e7b..d1074843 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=22845541 +PhysXExtensions_debug_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_debug_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_debug_defines += _DEBUG PhysXExtensions_debug_defines += PX_DEBUG=1 @@ -129,7 +129,7 @@ PhysXExtensions_debug_common_cflags += $(addprefix -I, $(PhysXExtensions_debu PhysXExtensions_debug_common_cflags += -m64 PhysXExtensions_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXExtensions_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXExtensions_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXExtensions_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXExtensions_debug_common_cflags += -Wno-missing-field-initializers PhysXExtensions_debug_common_cflags += -g3 -gdwarf-2 PhysXExtensions_debug_cflags := $(PhysXExtensions_debug_common_cflags) @@ -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=22845541 +PhysXExtensions_checked_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_checked_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_checked_defines += NDEBUG PhysXExtensions_checked_defines += PX_CHECKED=1 @@ -245,7 +245,7 @@ PhysXExtensions_checked_common_cflags += $(addprefix -I, $(PhysXExtensions_ch PhysXExtensions_checked_common_cflags += -m64 PhysXExtensions_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXExtensions_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXExtensions_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXExtensions_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXExtensions_checked_common_cflags += -Wno-missing-field-initializers PhysXExtensions_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXExtensions_checked_cflags := $(PhysXExtensions_checked_common_cflags) @@ -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=22845541 +PhysXExtensions_profile_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_profile_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_profile_defines += NDEBUG PhysXExtensions_profile_defines += PX_PROFILE=1 @@ -361,7 +361,7 @@ PhysXExtensions_profile_common_cflags += $(addprefix -I, $(PhysXExtensions_pr PhysXExtensions_profile_common_cflags += -m64 PhysXExtensions_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXExtensions_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXExtensions_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXExtensions_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXExtensions_profile_common_cflags += -Wno-missing-field-initializers PhysXExtensions_profile_common_cflags += -O3 -fno-strict-aliasing PhysXExtensions_profile_cflags := $(PhysXExtensions_profile_common_cflags) @@ -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=22845541 +PhysXExtensions_release_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_release_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_release_defines += NDEBUG PhysXExtensions_release_defines += PX_SUPPORT_PVD=0 @@ -476,7 +476,7 @@ PhysXExtensions_release_common_cflags += $(addprefix -I, $(PhysXExtensions_re PhysXExtensions_release_common_cflags += -m64 PhysXExtensions_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXExtensions_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXExtensions_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXExtensions_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXExtensions_release_common_cflags += -Wno-missing-field-initializers PhysXExtensions_release_common_cflags += -O3 -fno-strict-aliasing PhysXExtensions_release_cflags := $(PhysXExtensions_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXVehicle.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXVehicle.mk index cabe9ff8..cdb6a00e 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXVehicle.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.PhysXVehicle.mk @@ -76,7 +76,7 @@ PhysXVehicle_debug_common_cflags += $(addprefix -I, $(PhysXVehicle_debug_hpat PhysXVehicle_debug_common_cflags += -m64 PhysXVehicle_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXVehicle_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXVehicle_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXVehicle_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXVehicle_debug_common_cflags += -Wno-missing-field-initializers PhysXVehicle_debug_common_cflags += -g3 -gdwarf-2 PhysXVehicle_debug_cflags := $(PhysXVehicle_debug_common_cflags) @@ -175,7 +175,7 @@ PhysXVehicle_checked_common_cflags += $(addprefix -I, $(PhysXVehicle_checked_ PhysXVehicle_checked_common_cflags += -m64 PhysXVehicle_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXVehicle_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXVehicle_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXVehicle_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXVehicle_checked_common_cflags += -Wno-missing-field-initializers PhysXVehicle_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PhysXVehicle_checked_cflags := $(PhysXVehicle_checked_common_cflags) @@ -274,7 +274,7 @@ PhysXVehicle_profile_common_cflags += $(addprefix -I, $(PhysXVehicle_profile_ PhysXVehicle_profile_common_cflags += -m64 PhysXVehicle_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXVehicle_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXVehicle_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXVehicle_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXVehicle_profile_common_cflags += -Wno-missing-field-initializers PhysXVehicle_profile_common_cflags += -O3 -fno-strict-aliasing PhysXVehicle_profile_cflags := $(PhysXVehicle_profile_common_cflags) @@ -372,7 +372,7 @@ PhysXVehicle_release_common_cflags += $(addprefix -I, $(PhysXVehicle_release_ PhysXVehicle_release_common_cflags += -m64 PhysXVehicle_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PhysXVehicle_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PhysXVehicle_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PhysXVehicle_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PhysXVehicle_release_common_cflags += -Wno-missing-field-initializers PhysXVehicle_release_common_cflags += -O3 -fno-strict-aliasing PhysXVehicle_release_cflags := $(PhysXVehicle_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.PsFastXml.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.PsFastXml.mk index 4e774eee..a91b32eb 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.PsFastXml.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.PsFastXml.mk @@ -41,7 +41,7 @@ PsFastXml_debug_common_cflags += $(addprefix -I, $(PsFastXml_debug_hpaths)) PsFastXml_debug_common_cflags += -m64 PsFastXml_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PsFastXml_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PsFastXml_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PsFastXml_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PsFastXml_debug_common_cflags += -Wno-missing-field-initializers PsFastXml_debug_common_cflags += -g3 -gdwarf-2 PsFastXml_debug_cflags := $(PsFastXml_debug_common_cflags) @@ -121,7 +121,7 @@ PsFastXml_release_common_cflags += $(addprefix -I, $(PsFastXml_release_hpaths PsFastXml_release_common_cflags += -m64 PsFastXml_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PsFastXml_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PsFastXml_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PsFastXml_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PsFastXml_release_common_cflags += -Wno-missing-field-initializers PsFastXml_release_common_cflags += -O3 -fno-strict-aliasing PsFastXml_release_cflags := $(PsFastXml_release_common_cflags) @@ -202,7 +202,7 @@ PsFastXml_checked_common_cflags += $(addprefix -I, $(PsFastXml_checked_hpaths PsFastXml_checked_common_cflags += -m64 PsFastXml_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PsFastXml_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PsFastXml_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PsFastXml_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PsFastXml_checked_common_cflags += -Wno-missing-field-initializers PsFastXml_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PsFastXml_checked_cflags := $(PsFastXml_checked_common_cflags) @@ -283,7 +283,7 @@ PsFastXml_profile_common_cflags += $(addprefix -I, $(PsFastXml_profile_hpaths PsFastXml_profile_common_cflags += -m64 PsFastXml_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PsFastXml_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PsFastXml_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PsFastXml_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PsFastXml_profile_common_cflags += -Wno-missing-field-initializers PsFastXml_profile_common_cflags += -O3 -fno-strict-aliasing PsFastXml_profile_cflags := $(PsFastXml_profile_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.PxFoundation.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.PxFoundation.mk index 37eb8e4e..34b6bd8c 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.PxFoundation.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.PxFoundation.mk @@ -57,7 +57,7 @@ PxFoundation_debug_common_cflags += $(addprefix -I, $(PxFoundation_debug_hpat PxFoundation_debug_common_cflags += -m64 PxFoundation_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxFoundation_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxFoundation_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxFoundation_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxFoundation_debug_common_cflags += -Wno-missing-field-initializers PxFoundation_debug_common_cflags += -g3 -gdwarf-2 PxFoundation_debug_cflags := $(PxFoundation_debug_common_cflags) @@ -137,7 +137,7 @@ PxFoundation_release_common_cflags += $(addprefix -I, $(PxFoundation_release_ PxFoundation_release_common_cflags += -m64 PxFoundation_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxFoundation_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxFoundation_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxFoundation_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxFoundation_release_common_cflags += -Wno-missing-field-initializers PxFoundation_release_common_cflags += -O3 -fno-strict-aliasing PxFoundation_release_cflags := $(PxFoundation_release_common_cflags) @@ -218,7 +218,7 @@ PxFoundation_checked_common_cflags += $(addprefix -I, $(PxFoundation_checked_ PxFoundation_checked_common_cflags += -m64 PxFoundation_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxFoundation_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxFoundation_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxFoundation_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxFoundation_checked_common_cflags += -Wno-missing-field-initializers PxFoundation_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PxFoundation_checked_cflags := $(PxFoundation_checked_common_cflags) @@ -299,7 +299,7 @@ PxFoundation_profile_common_cflags += $(addprefix -I, $(PxFoundation_profile_ PxFoundation_profile_common_cflags += -m64 PxFoundation_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxFoundation_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxFoundation_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxFoundation_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxFoundation_profile_common_cflags += -Wno-missing-field-initializers PxFoundation_profile_common_cflags += -O3 -fno-strict-aliasing PxFoundation_profile_cflags := $(PxFoundation_profile_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.PxPvdSDK.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.PxPvdSDK.mk index b891b55f..bafb054d 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.PxPvdSDK.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.PxPvdSDK.mk @@ -56,7 +56,7 @@ PxPvdSDK_debug_common_cflags += $(addprefix -I, $(PxPvdSDK_debug_hpaths)) PxPvdSDK_debug_common_cflags += -m64 PxPvdSDK_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxPvdSDK_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxPvdSDK_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxPvdSDK_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxPvdSDK_debug_common_cflags += -Wno-missing-field-initializers PxPvdSDK_debug_common_cflags += -g3 -gdwarf-2 PxPvdSDK_debug_cflags := $(PxPvdSDK_debug_common_cflags) @@ -141,7 +141,7 @@ PxPvdSDK_release_common_cflags += $(addprefix -I, $(PxPvdSDK_release_hpaths)) PxPvdSDK_release_common_cflags += -m64 PxPvdSDK_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxPvdSDK_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxPvdSDK_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxPvdSDK_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxPvdSDK_release_common_cflags += -Wno-missing-field-initializers PxPvdSDK_release_common_cflags += -O3 -fno-strict-aliasing PxPvdSDK_release_cflags := $(PxPvdSDK_release_common_cflags) @@ -227,7 +227,7 @@ PxPvdSDK_checked_common_cflags += $(addprefix -I, $(PxPvdSDK_checked_hpaths)) PxPvdSDK_checked_common_cflags += -m64 PxPvdSDK_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxPvdSDK_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxPvdSDK_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxPvdSDK_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxPvdSDK_checked_common_cflags += -Wno-missing-field-initializers PxPvdSDK_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PxPvdSDK_checked_cflags := $(PxPvdSDK_checked_common_cflags) @@ -313,7 +313,7 @@ PxPvdSDK_profile_common_cflags += $(addprefix -I, $(PxPvdSDK_profile_hpaths)) PxPvdSDK_profile_common_cflags += -m64 PxPvdSDK_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxPvdSDK_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxPvdSDK_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxPvdSDK_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxPvdSDK_profile_common_cflags += -Wno-missing-field-initializers PxPvdSDK_profile_common_cflags += -O3 -fno-strict-aliasing PxPvdSDK_profile_cflags := $(PxPvdSDK_profile_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.PxTask.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.PxTask.mk index e516dd9f..1b4a758d 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.PxTask.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.PxTask.mk @@ -40,7 +40,7 @@ PxTask_debug_common_cflags += $(addprefix -I, $(PxTask_debug_hpaths)) PxTask_debug_common_cflags += -m64 PxTask_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxTask_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxTask_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxTask_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxTask_debug_common_cflags += -Wno-missing-field-initializers PxTask_debug_common_cflags += -g3 -gdwarf-2 PxTask_debug_cflags := $(PxTask_debug_common_cflags) @@ -119,7 +119,7 @@ PxTask_release_common_cflags += $(addprefix -I, $(PxTask_release_hpaths)) PxTask_release_common_cflags += -m64 PxTask_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxTask_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxTask_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxTask_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxTask_release_common_cflags += -Wno-missing-field-initializers PxTask_release_common_cflags += -O3 -fno-strict-aliasing PxTask_release_cflags := $(PxTask_release_common_cflags) @@ -199,7 +199,7 @@ PxTask_checked_common_cflags += $(addprefix -I, $(PxTask_checked_hpaths)) PxTask_checked_common_cflags += -m64 PxTask_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxTask_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxTask_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxTask_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxTask_checked_common_cflags += -Wno-missing-field-initializers PxTask_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing PxTask_checked_cflags := $(PxTask_checked_common_cflags) @@ -279,7 +279,7 @@ PxTask_profile_common_cflags += $(addprefix -I, $(PxTask_profile_hpaths)) PxTask_profile_common_cflags += -m64 PxTask_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden PxTask_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -PxTask_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +PxTask_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough PxTask_profile_common_cflags += -Wno-missing-field-initializers PxTask_profile_common_cflags += -O3 -fno-strict-aliasing PxTask_profile_cflags := $(PxTask_profile_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.SceneQuery.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.SceneQuery.mk index 6932895c..a3caae80 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.SceneQuery.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.SceneQuery.mk @@ -78,7 +78,7 @@ SceneQuery_debug_common_cflags += $(addprefix -I, $(SceneQuery_debug_hpaths)) SceneQuery_debug_common_cflags += -m64 SceneQuery_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SceneQuery_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SceneQuery_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SceneQuery_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SceneQuery_debug_common_cflags += -Wno-missing-field-initializers SceneQuery_debug_common_cflags += -g3 -gdwarf-2 SceneQuery_debug_cflags := $(SceneQuery_debug_common_cflags) @@ -187,7 +187,7 @@ SceneQuery_checked_common_cflags += $(addprefix -I, $(SceneQuery_checked_hpat SceneQuery_checked_common_cflags += -m64 SceneQuery_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SceneQuery_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SceneQuery_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SceneQuery_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SceneQuery_checked_common_cflags += -Wno-missing-field-initializers SceneQuery_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing SceneQuery_checked_cflags := $(SceneQuery_checked_common_cflags) @@ -296,7 +296,7 @@ SceneQuery_profile_common_cflags += $(addprefix -I, $(SceneQuery_profile_hpat SceneQuery_profile_common_cflags += -m64 SceneQuery_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SceneQuery_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SceneQuery_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SceneQuery_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SceneQuery_profile_common_cflags += -Wno-missing-field-initializers SceneQuery_profile_common_cflags += -O3 -fno-strict-aliasing SceneQuery_profile_cflags := $(SceneQuery_profile_common_cflags) @@ -404,7 +404,7 @@ SceneQuery_release_common_cflags += $(addprefix -I, $(SceneQuery_release_hpat SceneQuery_release_common_cflags += -m64 SceneQuery_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SceneQuery_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SceneQuery_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SceneQuery_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SceneQuery_release_common_cflags += -Wno-missing-field-initializers SceneQuery_release_common_cflags += -O3 -fno-strict-aliasing SceneQuery_release_cflags := $(SceneQuery_release_common_cflags) diff --git a/PhysX_3.4/Source/compiler/linux64/Makefile.SimulationController.mk b/PhysX_3.4/Source/compiler/linux64/Makefile.SimulationController.mk index 3bfc7bb6..e4181653 100644 --- a/PhysX_3.4/Source/compiler/linux64/Makefile.SimulationController.mk +++ b/PhysX_3.4/Source/compiler/linux64/Makefile.SimulationController.mk @@ -124,7 +124,7 @@ SimulationController_debug_common_cflags += $(addprefix -I, $(SimulationContr SimulationController_debug_common_cflags += -m64 SimulationController_debug_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SimulationController_debug_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SimulationController_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SimulationController_debug_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SimulationController_debug_common_cflags += -Wno-missing-field-initializers SimulationController_debug_common_cflags += -g3 -gdwarf-2 SimulationController_debug_cflags := $(SimulationController_debug_common_cflags) @@ -246,7 +246,7 @@ SimulationController_checked_common_cflags += $(addprefix -I, $(SimulationCon SimulationController_checked_common_cflags += -m64 SimulationController_checked_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SimulationController_checked_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SimulationController_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SimulationController_checked_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SimulationController_checked_common_cflags += -Wno-missing-field-initializers SimulationController_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing SimulationController_checked_cflags := $(SimulationController_checked_common_cflags) @@ -368,7 +368,7 @@ SimulationController_profile_common_cflags += $(addprefix -I, $(SimulationCon SimulationController_profile_common_cflags += -m64 SimulationController_profile_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SimulationController_profile_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SimulationController_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SimulationController_profile_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SimulationController_profile_common_cflags += -Wno-missing-field-initializers SimulationController_profile_common_cflags += -O3 -fno-strict-aliasing SimulationController_profile_cflags := $(SimulationController_profile_common_cflags) @@ -489,7 +489,7 @@ SimulationController_release_common_cflags += $(addprefix -I, $(SimulationCon SimulationController_release_common_cflags += -m64 SimulationController_release_common_cflags += -Werror -m64 -fPIC -msse2 -mfpmath=sse -fno-exceptions -fno-rtti -fvisibility=hidden -fvisibility-inlines-hidden SimulationController_release_common_cflags += -Wall -Wextra -Wstrict-aliasing=2 -fdiagnostics-show-option -SimulationController_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized +SimulationController_release_common_cflags += -Wno-invalid-offsetof -Wno-uninitialized -Wno-implicit-fallthrough SimulationController_release_common_cflags += -Wno-missing-field-initializers SimulationController_release_common_cflags += -O3 -fno-strict-aliasing SimulationController_release_cflags := $(SimulationController_release_common_cflags) 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 9b124697..5c583fd3 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=22845541 +PhysXExtensions_debug_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_debug_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_debug_defines += _DEBUG PhysXExtensions_debug_defines += PX_DEBUG=1 @@ -240,7 +240,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=22845541 +PhysXExtensions_checked_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_checked_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_checked_defines += NDEBUG PhysXExtensions_checked_defines += PX_CHECKED=1 @@ -363,7 +363,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=22845541 +PhysXExtensions_profile_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_profile_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_profile_defines += NDEBUG PhysXExtensions_profile_defines += PX_PROFILE=1 @@ -486,7 +486,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=22845541 +PhysXExtensions_release_defines += PX_BUILD_NUMBER=23131702 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 b0bd9459..7fde564b 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=22845541 +PhysXExtensions_debug_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_debug_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_debug_defines += _DEBUG PhysXExtensions_debug_defines += PX_DEBUG=1 @@ -240,7 +240,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=22845541 +PhysXExtensions_checked_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_checked_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_checked_defines += NDEBUG PhysXExtensions_checked_defines += PX_CHECKED=1 @@ -363,7 +363,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=22845541 +PhysXExtensions_profile_defines += PX_BUILD_NUMBER=23131702 PhysXExtensions_profile_defines += PX_PHYSX_STATIC_LIB PhysXExtensions_profile_defines += NDEBUG PhysXExtensions_profile_defines += PX_PROFILE=1 @@ -486,7 +486,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=22845541 +PhysXExtensions_release_defines += PX_BUILD_NUMBER=23131702 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/vc11win32/PhysXExtensions.vcxproj b/PhysX_3.4/Source/compiler/vc11win32/PhysXExtensions.vcxproj index 04aba8d4..74ebf531 100644 --- a/PhysX_3.4/Source/compiler/vc11win32/PhysXExtensions.vcxproj +++ b/PhysX_3.4/Source/compiler/vc11win32/PhysXExtensions.vcxproj @@ -75,7 +75,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Disabled</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> @@ -117,7 +117,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> @@ -159,7 +159,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> @@ -202,7 +202,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> diff --git a/PhysX_3.4/Source/compiler/vc11win64/PhysXExtensions.vcxproj b/PhysX_3.4/Source/compiler/vc11win64/PhysXExtensions.vcxproj index 128c239f..145dd57b 100644 --- a/PhysX_3.4/Source/compiler/vc11win64/PhysXExtensions.vcxproj +++ b/PhysX_3.4/Source/compiler/vc11win64/PhysXExtensions.vcxproj @@ -74,7 +74,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Disabled</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> @@ -115,7 +115,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> @@ -156,7 +156,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> @@ -198,7 +198,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> diff --git a/PhysX_3.4/Source/compiler/vc12win32/PhysXExtensions.vcxproj b/PhysX_3.4/Source/compiler/vc12win32/PhysXExtensions.vcxproj index 69a982af..194e9ff1 100644 --- a/PhysX_3.4/Source/compiler/vc12win32/PhysXExtensions.vcxproj +++ b/PhysX_3.4/Source/compiler/vc12win32/PhysXExtensions.vcxproj @@ -75,7 +75,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Disabled</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> @@ -117,7 +117,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> @@ -159,7 +159,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> @@ -202,7 +202,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> diff --git a/PhysX_3.4/Source/compiler/vc12win64/PhysXExtensions.vcxproj b/PhysX_3.4/Source/compiler/vc12win64/PhysXExtensions.vcxproj index 283e057d..b9ab210e 100644 --- a/PhysX_3.4/Source/compiler/vc12win64/PhysXExtensions.vcxproj +++ b/PhysX_3.4/Source/compiler/vc12win64/PhysXExtensions.vcxproj @@ -74,7 +74,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Disabled</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> @@ -115,7 +115,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> @@ -156,7 +156,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> @@ -198,7 +198,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> diff --git a/PhysX_3.4/Source/compiler/vc14win32/PhysXExtensions.vcxproj b/PhysX_3.4/Source/compiler/vc14win32/PhysXExtensions.vcxproj index 5ee57f24..185d404a 100644 --- a/PhysX_3.4/Source/compiler/vc14win32/PhysXExtensions.vcxproj +++ b/PhysX_3.4/Source/compiler/vc14win32/PhysXExtensions.vcxproj @@ -75,7 +75,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /d2Zi+</AdditionalOptions> <Optimization>Disabled</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> @@ -117,7 +117,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> @@ -159,7 +159,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> @@ -202,7 +202,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> diff --git a/PhysX_3.4/Source/compiler/vc14win64/PhysXExtensions.vcxproj b/PhysX_3.4/Source/compiler/vc14win64/PhysXExtensions.vcxproj index 7bebb22f..6586563a 100644 --- a/PhysX_3.4/Source/compiler/vc14win64/PhysXExtensions.vcxproj +++ b/PhysX_3.4/Source/compiler/vc14win64/PhysXExtensions.vcxproj @@ -74,7 +74,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /d2Zi+</AdditionalOptions> <Optimization>Disabled</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;_DEBUG;PX_DEBUG=1;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> @@ -115,7 +115,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_CHECKED=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> @@ -156,7 +156,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_PROFILE=1;PX_NVTX=1;PX_SUPPORT_PVD=1;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> @@ -198,7 +198,7 @@ <AdditionalOptions>/MP /Wall /wd4514 /wd4820 /wd4127 /wd4710 /wd4711 /wd4435 /wd4577 /wd4464 /d2Zi+</AdditionalOptions> <Optimization>Full</Optimization> <AdditionalIncludeDirectories>./../../Common/include;./../../../../PxShared/include;./../../../../PxShared/src/foundation/include;./../../../../PxShared/src/fastxml/include;./../../../../PxShared/src/pvd/include;./../../../Include/common;./../../../Include/geometry;./../../../Include/GeomUtils;./../../../Include/pvd;./../../../Include/cooking;./../../../Include/extensions;./../../../Include/vehicle;./../../../Include/cloth;./../../../Include;./../../Common/src;./../../GeomUtils/headers;./../../GeomUtils/src;./../../GeomUtils/src/contact;./../../GeomUtils/src/common;./../../GeomUtils/src/convex;./../../GeomUtils/src/distance;./../../GeomUtils/src/gjk;./../../GeomUtils/src/intersection;./../../GeomUtils/src/mesh;./../../GeomUtils/src/hf;./../../GeomUtils/src/pcm;./../../PhysXMetaData/core/include;./../../PhysXMetaData/extensions/include;./../../PhysXExtensions/src;./../../PhysXExtensions/src/serialization/Xml;./../../PhysXExtensions/src/serialization/Binary;./../../PhysXExtensions/src/serialization/File;./../../PvdSDK/src;./../../PhysX/src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> - <PreprocessorDefinitions>PX_BUILD_NUMBER=22845541;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <PreprocessorDefinitions>PX_BUILD_NUMBER=23131702;WIN32;WIN64;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;PX_PHYSX_STATIC_LIB;NDEBUG;PX_SUPPORT_PVD=0;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ExceptionHandling>false</ExceptionHandling> <WarningLevel>Level4</WarningLevel> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> 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 68bce257..7aa1d0de 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 */ - FFFF5b8240207f8c5b824020 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5b847c107f8c5b847c10 /* SceneQuery */; }; - FFFF5b8240807f8c5b824080 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5b84c1707f8c5b84c170 /* SimulationController */; }; - FFFF5b03a8387f8c5b03a838 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03a8387f8c5b03a838 /* NpActor.cpp */; }; - FFFF5b03a8a07f8c5b03a8a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03a8a07f8c5b03a8a0 /* NpAggregate.cpp */; }; - FFFF5b03a9087f8c5b03a908 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03a9087f8c5b03a908 /* NpArticulation.cpp */; }; - FFFF5b03a9707f8c5b03a970 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03a9707f8c5b03a970 /* NpArticulationJoint.cpp */; }; - FFFF5b03a9d87f8c5b03a9d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03a9d87f8c5b03a9d8 /* NpArticulationLink.cpp */; }; - FFFF5b03aa407f8c5b03aa40 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03aa407f8c5b03aa40 /* NpBatchQuery.cpp */; }; - FFFF5b03aaa87f8c5b03aaa8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03aaa87f8c5b03aaa8 /* NpConstraint.cpp */; }; - FFFF5b03ab107f8c5b03ab10 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03ab107f8c5b03ab10 /* NpFactory.cpp */; }; - FFFF5b03ab787f8c5b03ab78 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03ab787f8c5b03ab78 /* NpMaterial.cpp */; }; - FFFF5b03abe07f8c5b03abe0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03abe07f8c5b03abe0 /* NpMetaData.cpp */; }; - FFFF5b03ac487f8c5b03ac48 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03ac487f8c5b03ac48 /* NpPhysics.cpp */; }; - FFFF5b03acb07f8c5b03acb0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03acb07f8c5b03acb0 /* NpPvdSceneQueryCollector.cpp */; }; - FFFF5b03ad187f8c5b03ad18 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03ad187f8c5b03ad18 /* NpReadCheck.cpp */; }; - FFFF5b03ad807f8c5b03ad80 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03ad807f8c5b03ad80 /* NpRigidDynamic.cpp */; }; - FFFF5b03ade87f8c5b03ade8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03ade87f8c5b03ade8 /* NpRigidStatic.cpp */; }; - FFFF5b03ae507f8c5b03ae50 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03ae507f8c5b03ae50 /* NpScene.cpp */; }; - FFFF5b03aeb87f8c5b03aeb8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03aeb87f8c5b03aeb8 /* NpSceneQueries.cpp */; }; - FFFF5b03af207f8c5b03af20 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03af207f8c5b03af20 /* NpSerializerAdapter.cpp */; }; - FFFF5b03af887f8c5b03af88 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03af887f8c5b03af88 /* NpShape.cpp */; }; - FFFF5b03aff07f8c5b03aff0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03aff07f8c5b03aff0 /* NpShapeManager.cpp */; }; - FFFF5b03b0587f8c5b03b058 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03b0587f8c5b03b058 /* NpSpatialIndex.cpp */; }; - FFFF5b03b0c07f8c5b03b0c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03b0c07f8c5b03b0c0 /* NpVolumeCache.cpp */; }; - FFFF5b03b1287f8c5b03b128 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03b1287f8c5b03b128 /* NpWriteCheck.cpp */; }; - FFFF5b03b1907f8c5b03b190 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03b1907f8c5b03b190 /* PvdMetaDataPvdBinding.cpp */; }; - FFFF5b03b1f87f8c5b03b1f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03b1f87f8c5b03b1f8 /* PvdPhysicsClient.cpp */; }; - FFFF5b03b4007f8c5b03b400 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03b4007f8c5b03b400 /* particles/NpParticleFluid.cpp */; }; - FFFF5b03b4687f8c5b03b468 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03b4687f8c5b03b468 /* particles/NpParticleSystem.cpp */; }; - FFFF5b03bc207f8c5b03bc20 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03bc207f8c5b03bc20 /* buffering/ScbActor.cpp */; }; - FFFF5b03bc887f8c5b03bc88 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03bc887f8c5b03bc88 /* buffering/ScbAggregate.cpp */; }; - FFFF5b03bcf07f8c5b03bcf0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03bcf07f8c5b03bcf0 /* buffering/ScbBase.cpp */; }; - FFFF5b03bd587f8c5b03bd58 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03bd587f8c5b03bd58 /* buffering/ScbCloth.cpp */; }; - FFFF5b03bdc07f8c5b03bdc0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03bdc07f8c5b03bdc0 /* buffering/ScbMetaData.cpp */; }; - FFFF5b03be287f8c5b03be28 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03be287f8c5b03be28 /* buffering/ScbParticleSystem.cpp */; }; - FFFF5b03be907f8c5b03be90 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03be907f8c5b03be90 /* buffering/ScbScene.cpp */; }; - FFFF5b03bef87f8c5b03bef8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03bef87f8c5b03bef8 /* buffering/ScbScenePvdClient.cpp */; }; - FFFF5b03bf607f8c5b03bf60 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03bf607f8c5b03bf60 /* buffering/ScbShape.cpp */; }; - FFFF5b03c1007f8c5b03c100 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03c1007f8c5b03c100 /* cloth/NpCloth.cpp */; }; - FFFF5b03c1687f8c5b03c168 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03c1687f8c5b03c168 /* cloth/NpClothFabric.cpp */; }; - FFFF5b03c1d07f8c5b03c1d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03c1d07f8c5b03c1d0 /* cloth/NpClothParticleData.cpp */; }; - FFFF5b03c2387f8c5b03c238 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03c2387f8c5b03c238 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; - FFFF5b0367a87f8c5b0367a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5b0367a87f8c5b0367a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; - FFFF5b0368107f8c5b036810 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5b0368107f8c5b036810 /* core/src/PxMetaDataObjects.cpp */; }; + FFFF3b992f207ff03b992f20 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD3b9b66107ff03b9b6610 /* SceneQuery */; }; + FFFF3b9966c07ff03b9966c0 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD3b951b307ff03b951b30 /* SimulationController */; }; + FFFF3c8388387ff03c838838 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8388387ff03c838838 /* NpActor.cpp */; }; + FFFF3c8388a07ff03c8388a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8388a07ff03c8388a0 /* NpAggregate.cpp */; }; + FFFF3c8389087ff03c838908 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8389087ff03c838908 /* NpArticulation.cpp */; }; + FFFF3c8389707ff03c838970 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8389707ff03c838970 /* NpArticulationJoint.cpp */; }; + FFFF3c8389d87ff03c8389d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8389d87ff03c8389d8 /* NpArticulationLink.cpp */; }; + FFFF3c838a407ff03c838a40 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c838a407ff03c838a40 /* NpBatchQuery.cpp */; }; + FFFF3c838aa87ff03c838aa8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c838aa87ff03c838aa8 /* NpConstraint.cpp */; }; + FFFF3c838b107ff03c838b10 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c838b107ff03c838b10 /* NpFactory.cpp */; }; + FFFF3c838b787ff03c838b78 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c838b787ff03c838b78 /* NpMaterial.cpp */; }; + FFFF3c838be07ff03c838be0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c838be07ff03c838be0 /* NpMetaData.cpp */; }; + FFFF3c838c487ff03c838c48 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c838c487ff03c838c48 /* NpPhysics.cpp */; }; + FFFF3c838cb07ff03c838cb0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c838cb07ff03c838cb0 /* NpPvdSceneQueryCollector.cpp */; }; + FFFF3c838d187ff03c838d18 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c838d187ff03c838d18 /* NpReadCheck.cpp */; }; + FFFF3c838d807ff03c838d80 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c838d807ff03c838d80 /* NpRigidDynamic.cpp */; }; + FFFF3c838de87ff03c838de8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c838de87ff03c838de8 /* NpRigidStatic.cpp */; }; + FFFF3c838e507ff03c838e50 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c838e507ff03c838e50 /* NpScene.cpp */; }; + FFFF3c838eb87ff03c838eb8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c838eb87ff03c838eb8 /* NpSceneQueries.cpp */; }; + FFFF3c838f207ff03c838f20 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c838f207ff03c838f20 /* NpSerializerAdapter.cpp */; }; + FFFF3c838f887ff03c838f88 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c838f887ff03c838f88 /* NpShape.cpp */; }; + FFFF3c838ff07ff03c838ff0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c838ff07ff03c838ff0 /* NpShapeManager.cpp */; }; + FFFF3c8390587ff03c839058 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8390587ff03c839058 /* NpSpatialIndex.cpp */; }; + FFFF3c8390c07ff03c8390c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8390c07ff03c8390c0 /* NpVolumeCache.cpp */; }; + FFFF3c8391287ff03c839128 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8391287ff03c839128 /* NpWriteCheck.cpp */; }; + FFFF3c8391907ff03c839190 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8391907ff03c839190 /* PvdMetaDataPvdBinding.cpp */; }; + FFFF3c8391f87ff03c8391f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8391f87ff03c8391f8 /* PvdPhysicsClient.cpp */; }; + FFFF3c8394007ff03c839400 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8394007ff03c839400 /* particles/NpParticleFluid.cpp */; }; + FFFF3c8394687ff03c839468 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8394687ff03c839468 /* particles/NpParticleSystem.cpp */; }; + FFFF3c839c207ff03c839c20 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c839c207ff03c839c20 /* buffering/ScbActor.cpp */; }; + FFFF3c839c887ff03c839c88 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c839c887ff03c839c88 /* buffering/ScbAggregate.cpp */; }; + FFFF3c839cf07ff03c839cf0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c839cf07ff03c839cf0 /* buffering/ScbBase.cpp */; }; + FFFF3c839d587ff03c839d58 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c839d587ff03c839d58 /* buffering/ScbCloth.cpp */; }; + FFFF3c839dc07ff03c839dc0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c839dc07ff03c839dc0 /* buffering/ScbMetaData.cpp */; }; + FFFF3c839e287ff03c839e28 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c839e287ff03c839e28 /* buffering/ScbParticleSystem.cpp */; }; + FFFF3c839e907ff03c839e90 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c839e907ff03c839e90 /* buffering/ScbScene.cpp */; }; + FFFF3c839ef87ff03c839ef8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c839ef87ff03c839ef8 /* buffering/ScbScenePvdClient.cpp */; }; + FFFF3c839f607ff03c839f60 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c839f607ff03c839f60 /* buffering/ScbShape.cpp */; }; + FFFF3c83a1007ff03c83a100 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c83a1007ff03c83a100 /* cloth/NpCloth.cpp */; }; + FFFF3c83a1687ff03c83a168 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c83a1687ff03c83a168 /* cloth/NpClothFabric.cpp */; }; + FFFF3c83a1d07ff03c83a1d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c83a1d07ff03c83a1d0 /* cloth/NpClothParticleData.cpp */; }; + FFFF3c83a2387ff03c83a238 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c83a2387ff03c83a238 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; + FFFF3c8329a87ff03c8329a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD3c8329a87ff03c8329a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; + FFFF3c832a107ff03c832a10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD3c832a107ff03c832a10 /* core/src/PxMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b81c8207f8c5b81c820 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5b039a007f8c5b039a00 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b039a687f8c5b039a68 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b039ad07f8c5b039ad0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b039b387f8c5b039b38 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b039ba07f8c5b039ba0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b039c087f8c5b039c08 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b039c707f8c5b039c70 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b039cd87f8c5b039cd8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b039d407f8c5b039d40 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b039da87f8c5b039da8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b039e107f8c5b039e10 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b039e787f8c5b039e78 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b039ee07f8c5b039ee0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b039f487f8c5b039f48 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b039fb07f8c5b039fb0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a0187f8c5b03a018 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a0807f8c5b03a080 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a0e87f8c5b03a0e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a1507f8c5b03a150 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a1b87f8c5b03a1b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a2207f8c5b03a220 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a2887f8c5b03a288 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a2f07f8c5b03a2f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a3587f8c5b03a358 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a3c07f8c5b03a3c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a4287f8c5b03a428 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a4907f8c5b03a490 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a4f87f8c5b03a4f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a5607f8c5b03a560 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a5c87f8c5b03a5c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a6307f8c5b03a630 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a6987f8c5b03a698 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a7007f8c5b03a700 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a7687f8c5b03a768 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a7d07f8c5b03a7d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a8387f8c5b03a838 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a8a07f8c5b03a8a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a9087f8c5b03a908 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a9707f8c5b03a970 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03a9d87f8c5b03a9d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03aa407f8c5b03aa40 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03aaa87f8c5b03aaa8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ab107f8c5b03ab10 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ab787f8c5b03ab78 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03abe07f8c5b03abe0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ac487f8c5b03ac48 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03acb07f8c5b03acb0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ad187f8c5b03ad18 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ad807f8c5b03ad80 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ade87f8c5b03ade8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ae507f8c5b03ae50 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03aeb87f8c5b03aeb8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03af207f8c5b03af20 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03af887f8c5b03af88 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03aff07f8c5b03aff0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b0587f8c5b03b058 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b0c07f8c5b03b0c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b1287f8c5b03b128 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b1907f8c5b03b190 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b1f87f8c5b03b1f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b2607f8c5b03b260 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b2c87f8c5b03b2c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b3307f8c5b03b330 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b3987f8c5b03b398 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b4007f8c5b03b400 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b4687f8c5b03b468 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b4d07f8c5b03b4d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b5387f8c5b03b538 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b5a07f8c5b03b5a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b6087f8c5b03b608 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b6707f8c5b03b670 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b6d87f8c5b03b6d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b7407f8c5b03b740 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b7a87f8c5b03b7a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b8107f8c5b03b810 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b8787f8c5b03b878 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b8e07f8c5b03b8e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b9487f8c5b03b948 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03b9b07f8c5b03b9b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ba187f8c5b03ba18 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ba807f8c5b03ba80 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03bae87f8c5b03bae8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03bb507f8c5b03bb50 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03bbb87f8c5b03bbb8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03bc207f8c5b03bc20 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03bc887f8c5b03bc88 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03bcf07f8c5b03bcf0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03bd587f8c5b03bd58 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03bdc07f8c5b03bdc0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03be287f8c5b03be28 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03be907f8c5b03be90 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03bef87f8c5b03bef8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03bf607f8c5b03bf60 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03bfc87f8c5b03bfc8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03c0307f8c5b03c030 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03c0987f8c5b03c098 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03c1007f8c5b03c100 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03c1687f8c5b03c168 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03c1d07f8c5b03c1d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03c2387f8c5b03c238 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0374007f8c5b037400 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0374687f8c5b037468 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0374d07f8c5b0374d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0375387f8c5b037538 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0375a07f8c5b0375a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0376087f8c5b037608 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0376707f8c5b037670 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0376d87f8c5b0376d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0377407f8c5b037740 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0377a87f8c5b0377a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0378107f8c5b037810 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0378787f8c5b037878 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0378e07f8c5b0378e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0379487f8c5b037948 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0379b07f8c5b0379b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b037a187f8c5b037a18 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b037a807f8c5b037a80 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b037ae87f8c5b037ae8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b037b507f8c5b037b50 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b037bb87f8c5b037bb8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b037c207f8c5b037c20 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b037c887f8c5b037c88 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b037cf07f8c5b037cf0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b037d587f8c5b037d58 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b037dc07f8c5b037dc0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b037e287f8c5b037e28 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b037e907f8c5b037e90 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b037ef87f8c5b037ef8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b037f607f8c5b037f60 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b037fc87f8c5b037fc8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0380307f8c5b038030 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0380987f8c5b038098 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0381007f8c5b038100 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0381687f8c5b038168 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0381d07f8c5b0381d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0382387f8c5b038238 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0382a07f8c5b0382a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0383087f8c5b038308 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0383707f8c5b038370 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0383d87f8c5b0383d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0384407f8c5b038440 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0384a87f8c5b0384a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0385107f8c5b038510 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0385787f8c5b038578 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0385e07f8c5b0385e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0386487f8c5b038648 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0386b07f8c5b0386b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0387187f8c5b038718 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0387807f8c5b038780 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0387e87f8c5b0387e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0388507f8c5b038850 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0388b87f8c5b0388b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0389207f8c5b038920 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0389887f8c5b038988 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0364007f8c5b036400 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0364687f8c5b036468 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0364d07f8c5b0364d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0365387f8c5b036538 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0365a07f8c5b0365a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0366087f8c5b036608 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0366707f8c5b036670 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0366d87f8c5b0366d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0367407f8c5b036740 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0367a87f8c5b0367a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0368107f8c5b036810 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b9796607ff03b979660 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3c837a007ff03c837a00 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c837a687ff03c837a68 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c837ad07ff03c837ad0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c837b387ff03c837b38 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c837ba07ff03c837ba0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c837c087ff03c837c08 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c837c707ff03c837c70 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c837cd87ff03c837cd8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c837d407ff03c837d40 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c837da87ff03c837da8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c837e107ff03c837e10 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c837e787ff03c837e78 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c837ee07ff03c837ee0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c837f487ff03c837f48 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c837fb07ff03c837fb0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8380187ff03c838018 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8380807ff03c838080 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8380e87ff03c8380e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8381507ff03c838150 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8381b87ff03c8381b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8382207ff03c838220 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8382887ff03c838288 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8382f07ff03c8382f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8383587ff03c838358 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8383c07ff03c8383c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8384287ff03c838428 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8384907ff03c838490 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8384f87ff03c8384f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8385607ff03c838560 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8385c87ff03c8385c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8386307ff03c838630 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8386987ff03c838698 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8387007ff03c838700 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8387687ff03c838768 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8387d07ff03c8387d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8388387ff03c838838 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8388a07ff03c8388a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8389087ff03c838908 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8389707ff03c838970 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8389d87ff03c8389d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c838a407ff03c838a40 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c838aa87ff03c838aa8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c838b107ff03c838b10 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c838b787ff03c838b78 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c838be07ff03c838be0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c838c487ff03c838c48 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c838cb07ff03c838cb0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c838d187ff03c838d18 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c838d807ff03c838d80 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c838de87ff03c838de8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c838e507ff03c838e50 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c838eb87ff03c838eb8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c838f207ff03c838f20 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c838f887ff03c838f88 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c838ff07ff03c838ff0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8390587ff03c839058 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8390c07ff03c8390c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8391287ff03c839128 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8391907ff03c839190 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8391f87ff03c8391f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8392607ff03c839260 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8392c87ff03c8392c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8393307ff03c839330 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8393987ff03c839398 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8394007ff03c839400 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8394687ff03c839468 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8394d07ff03c8394d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8395387ff03c839538 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8395a07ff03c8395a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8396087ff03c839608 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8396707ff03c839670 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8396d87ff03c8396d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8397407ff03c839740 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8397a87ff03c8397a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8398107ff03c839810 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8398787ff03c839878 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8398e07ff03c8398e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8399487ff03c839948 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8399b07ff03c8399b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c839a187ff03c839a18 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c839a807ff03c839a80 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c839ae87ff03c839ae8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c839b507ff03c839b50 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c839bb87ff03c839bb8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c839c207ff03c839c20 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c839c887ff03c839c88 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c839cf07ff03c839cf0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c839d587ff03c839d58 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c839dc07ff03c839dc0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c839e287ff03c839e28 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c839e907ff03c839e90 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c839ef87ff03c839ef8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c839f607ff03c839f60 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c839fc87ff03c839fc8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a0307ff03c83a030 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a0987ff03c83a098 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a1007ff03c83a100 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a1687ff03c83a168 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a1d07ff03c83a1d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a2387ff03c83a238 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a4007ff03c83a400 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a4687ff03c83a468 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a4d07ff03c83a4d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a5387ff03c83a538 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a5a07ff03c83a5a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a6087ff03c83a608 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a6707ff03c83a670 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a6d87ff03c83a6d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a7407ff03c83a740 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a7a87ff03c83a7a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a8107ff03c83a810 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a8787ff03c83a878 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a8e07ff03c83a8e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a9487ff03c83a948 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83a9b07ff03c83a9b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83aa187ff03c83aa18 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83aa807ff03c83aa80 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83aae87ff03c83aae8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83ab507ff03c83ab50 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83abb87ff03c83abb8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83ac207ff03c83ac20 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83ac887ff03c83ac88 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83acf07ff03c83acf0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83ad587ff03c83ad58 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83adc07ff03c83adc0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83ae287ff03c83ae28 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83ae907ff03c83ae90 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83aef87ff03c83aef8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83af607ff03c83af60 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83afc87ff03c83afc8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b0307ff03c83b030 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b0987ff03c83b098 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b1007ff03c83b100 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b1687ff03c83b168 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b1d07ff03c83b1d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b2387ff03c83b238 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b2a07ff03c83b2a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b3087ff03c83b308 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b3707ff03c83b370 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b3d87ff03c83b3d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b4407ff03c83b440 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b4a87ff03c83b4a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b5107ff03c83b510 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b5787ff03c83b578 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b5e07ff03c83b5e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b6487ff03c83b648 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b6b07ff03c83b6b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b7187ff03c83b718 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b7807ff03c83b780 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b7e87ff03c83b7e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b8507ff03c83b850 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b8b87ff03c83b8b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b9207ff03c83b920 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83b9887ff03c83b988 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8326007ff03c832600 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8326687ff03c832668 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8326d07ff03c8326d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8327387ff03c832738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8327a07ff03c8327a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8328087ff03c832808 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8328707ff03c832870 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8328d87ff03c8328d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8329407ff03c832940 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8329a87ff03c8329a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c832a107ff03c832a10 /* 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 */ - FFF25b81c8207f8c5b81c820 /* Resources */ = { + FFF23b9796607ff03b979660 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -233,7 +233,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b81c8207f8c5b81c820 /* Frameworks */ = { + FFFC3b9796607ff03b979660 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -243,52 +243,52 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b81c8207f8c5b81c820 /* Sources */ = { + FFF83b9796607ff03b979660 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5b03a8387f8c5b03a838, - FFFF5b03a8a07f8c5b03a8a0, - FFFF5b03a9087f8c5b03a908, - FFFF5b03a9707f8c5b03a970, - FFFF5b03a9d87f8c5b03a9d8, - FFFF5b03aa407f8c5b03aa40, - FFFF5b03aaa87f8c5b03aaa8, - FFFF5b03ab107f8c5b03ab10, - FFFF5b03ab787f8c5b03ab78, - FFFF5b03abe07f8c5b03abe0, - FFFF5b03ac487f8c5b03ac48, - FFFF5b03acb07f8c5b03acb0, - FFFF5b03ad187f8c5b03ad18, - FFFF5b03ad807f8c5b03ad80, - FFFF5b03ade87f8c5b03ade8, - FFFF5b03ae507f8c5b03ae50, - FFFF5b03aeb87f8c5b03aeb8, - FFFF5b03af207f8c5b03af20, - FFFF5b03af887f8c5b03af88, - FFFF5b03aff07f8c5b03aff0, - FFFF5b03b0587f8c5b03b058, - FFFF5b03b0c07f8c5b03b0c0, - FFFF5b03b1287f8c5b03b128, - FFFF5b03b1907f8c5b03b190, - FFFF5b03b1f87f8c5b03b1f8, - FFFF5b03b4007f8c5b03b400, - FFFF5b03b4687f8c5b03b468, - FFFF5b03bc207f8c5b03bc20, - FFFF5b03bc887f8c5b03bc88, - FFFF5b03bcf07f8c5b03bcf0, - FFFF5b03bd587f8c5b03bd58, - FFFF5b03bdc07f8c5b03bdc0, - FFFF5b03be287f8c5b03be28, - FFFF5b03be907f8c5b03be90, - FFFF5b03bef87f8c5b03bef8, - FFFF5b03bf607f8c5b03bf60, - FFFF5b03c1007f8c5b03c100, - FFFF5b03c1687f8c5b03c168, - FFFF5b03c1d07f8c5b03c1d0, - FFFF5b03c2387f8c5b03c238, - FFFF5b0367a87f8c5b0367a8, - FFFF5b0368107f8c5b036810, + FFFF3c8388387ff03c838838, + FFFF3c8388a07ff03c8388a0, + FFFF3c8389087ff03c838908, + FFFF3c8389707ff03c838970, + FFFF3c8389d87ff03c8389d8, + FFFF3c838a407ff03c838a40, + FFFF3c838aa87ff03c838aa8, + FFFF3c838b107ff03c838b10, + FFFF3c838b787ff03c838b78, + FFFF3c838be07ff03c838be0, + FFFF3c838c487ff03c838c48, + FFFF3c838cb07ff03c838cb0, + FFFF3c838d187ff03c838d18, + FFFF3c838d807ff03c838d80, + FFFF3c838de87ff03c838de8, + FFFF3c838e507ff03c838e50, + FFFF3c838eb87ff03c838eb8, + FFFF3c838f207ff03c838f20, + FFFF3c838f887ff03c838f88, + FFFF3c838ff07ff03c838ff0, + FFFF3c8390587ff03c839058, + FFFF3c8390c07ff03c8390c0, + FFFF3c8391287ff03c839128, + FFFF3c8391907ff03c839190, + FFFF3c8391f87ff03c8391f8, + FFFF3c8394007ff03c839400, + FFFF3c8394687ff03c839468, + FFFF3c839c207ff03c839c20, + FFFF3c839c887ff03c839c88, + FFFF3c839cf07ff03c839cf0, + FFFF3c839d587ff03c839d58, + FFFF3c839dc07ff03c839dc0, + FFFF3c839e287ff03c839e28, + FFFF3c839e907ff03c839e90, + FFFF3c839ef87ff03c839ef8, + FFFF3c839f607ff03c839f60, + FFFF3c83a1007ff03c83a100, + FFFF3c83a1687ff03c83a168, + FFFF3c83a1d07ff03c83a1d0, + FFFF3c83a2387ff03c83a238, + FFFF3c8329a87ff03c8329a8, + FFFF3c832a107ff03c832a10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -297,112 +297,112 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF45b8272b07f8c5b8272b0 /* PBXTargetDependency */ = { + FFF43b9960e07ff03b9960e0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA59d336a07f8c59d336a0 /* LowLevel */; - targetProxy = FFF559d336a07f8c59d336a0 /* PBXContainerItemProxy */; + target = FFFA3bf0b4507ff03bf0b450 /* LowLevel */; + targetProxy = FFF53bf0b4507ff03bf0b450 /* PBXContainerItemProxy */; }; - FFF45b827ba07f8c5b827ba0 /* PBXTargetDependency */ = { + FFF43b9929207ff03b992920 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b808e607f8c5b808e60 /* LowLevelAABB */; - targetProxy = FFF55b808e607f8c5b808e60 /* PBXContainerItemProxy */; + target = FFFA3b971cd07ff03b971cd0 /* LowLevelAABB */; + targetProxy = FFF53b971cd07ff03b971cd0 /* PBXContainerItemProxy */; }; - FFF45b8244d07f8c5b8244d0 /* PBXTargetDependency */ = { + FFF43b992e607ff03b992e60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA59d4aa007f8c59d4aa00 /* LowLevelCloth */; - targetProxy = FFF559d4aa007f8c59d4aa00 /* PBXContainerItemProxy */; + target = FFFA3bdf7df07ff03bdf7df0 /* LowLevelCloth */; + targetProxy = FFF53bdf7df07ff03bdf7df0 /* PBXContainerItemProxy */; }; - FFF45b8244707f8c5b824470 /* PBXTargetDependency */ = { + FFF43b9929807ff03b992980 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA59c249907f8c59c24990 /* LowLevelDynamics */; - targetProxy = FFF559c249907f8c59c24990 /* PBXContainerItemProxy */; + target = FFFA3ba330407ff03ba33040 /* LowLevelDynamics */; + targetProxy = FFF53ba330407ff03ba33040 /* PBXContainerItemProxy */; }; - FFF45b8245307f8c5b824530 /* PBXTargetDependency */ = { + FFF43b992ec07ff03b992ec0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5992d3c07f8c5992d3c0 /* LowLevelParticles */; - targetProxy = FFF55992d3c07f8c5992d3c0 /* PBXContainerItemProxy */; + target = FFFA3ba23a707ff03ba23a70 /* LowLevelParticles */; + targetProxy = FFF53ba23a707ff03ba23a70 /* PBXContainerItemProxy */; }; - FFF45b8272507f8c5b827250 /* PBXTargetDependency */ = { + FFF43b992b107ff03b992b10 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA59c183f07f8c59c183f0 /* PhysXCommon */; - targetProxy = FFF559c183f07f8c59c183f0 /* PBXContainerItemProxy */; + target = FFFA3ba4add07ff03ba4add0 /* PhysXCommon */; + targetProxy = FFF53ba4add07ff03ba4add0 /* PBXContainerItemProxy */; }; - FFF45b81cb407f8c5b81cb40 /* PBXTargetDependency */ = { + FFF43b9799d07ff03b9799d0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA59c114307f8c59c11430 /* PxFoundation */; - targetProxy = FFF559c114307f8c59c11430 /* PBXContainerItemProxy */; + target = FFFA3ba5cc607ff03ba5cc60 /* PxFoundation */; + targetProxy = FFF53ba5cc607ff03ba5cc60 /* PBXContainerItemProxy */; }; - FFF45b81c7f07f8c5b81c7f0 /* PBXTargetDependency */ = { + FFF43b9798707ff03b979870 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA59944d307f8c59944d30 /* PxPvdSDK */; - targetProxy = FFF559944d307f8c59944d30 /* PBXContainerItemProxy */; + target = FFFA3b9d39307ff03b9d3930 /* PxPvdSDK */; + targetProxy = FFF53b9d39307ff03b9d3930 /* PBXContainerItemProxy */; }; - FFF45b8240b07f8c5b8240b0 /* PBXTargetDependency */ = { + FFF43b9966f07ff03b9966f0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA59d66b807f8c59d66b80 /* PxTask */; - targetProxy = FFF559d66b807f8c59d66b80 /* PBXContainerItemProxy */; + target = FFFA3bf5a4307ff03bf5a430 /* PxTask */; + targetProxy = FFF53bf5a4307ff03bf5a430 /* PBXContainerItemProxy */; }; - FFF45b8240207f8c5b824020 /* PBXTargetDependency */ = { + FFF43b992f207ff03b992f20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b847c107f8c5b847c10 /* SceneQuery */; - targetProxy = FFF55b847c107f8c5b847c10 /* PBXContainerItemProxy */; + target = FFFA3b9b66107ff03b9b6610 /* SceneQuery */; + targetProxy = FFF53b9b66107ff03b9b6610 /* PBXContainerItemProxy */; }; - FFF45b8240807f8c5b824080 /* PBXTargetDependency */ = { + FFF43b9966c07ff03b9966c0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b84c1707f8c5b84c170 /* SimulationController */; - targetProxy = FFF55b84c1707f8c5b84c170 /* PBXContainerItemProxy */; + target = FFFA3b951b307ff03b951b30 /* SimulationController */; + targetProxy = FFF53b951b307ff03b951b30 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCharacterKinematic */ - FFFF5b82aed07f8c5b82aed0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5b836b207f8c5b836b20 /* PhysXExtensions */; }; - FFFF5b033e787f8c5b033e78 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b033e787f8c5b033e78 /* CctBoxController.cpp */; }; - FFFF5b033ee07f8c5b033ee0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b033ee07f8c5b033ee0 /* CctCapsuleController.cpp */; }; - FFFF5b033f487f8c5b033f48 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b033f487f8c5b033f48 /* CctCharacterController.cpp */; }; - FFFF5b033fb07f8c5b033fb0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b033fb07f8c5b033fb0 /* CctCharacterControllerCallbacks.cpp */; }; - FFFF5b0340187f8c5b034018 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0340187f8c5b034018 /* CctCharacterControllerManager.cpp */; }; - FFFF5b0340807f8c5b034080 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0340807f8c5b034080 /* CctController.cpp */; }; - FFFF5b0340e87f8c5b0340e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0340e87f8c5b0340e8 /* CctObstacleContext.cpp */; }; - FFFF5b0341507f8c5b034150 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0341507f8c5b034150 /* CctSweptBox.cpp */; }; - FFFF5b0341b87f8c5b0341b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0341b87f8c5b0341b8 /* CctSweptCapsule.cpp */; }; - FFFF5b0342207f8c5b034220 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0342207f8c5b034220 /* CctSweptVolume.cpp */; }; + FFFF3b9997907ff03b999790 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD3b9a54207ff03b9a5420 /* PhysXExtensions */; }; + FFFF3c83be787ff03c83be78 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c83be787ff03c83be78 /* CctBoxController.cpp */; }; + FFFF3c83bee07ff03c83bee0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c83bee07ff03c83bee0 /* CctCapsuleController.cpp */; }; + FFFF3c83bf487ff03c83bf48 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c83bf487ff03c83bf48 /* CctCharacterController.cpp */; }; + FFFF3c83bfb07ff03c83bfb0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c83bfb07ff03c83bfb0 /* CctCharacterControllerCallbacks.cpp */; }; + FFFF3c83c0187ff03c83c018 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c83c0187ff03c83c018 /* CctCharacterControllerManager.cpp */; }; + FFFF3c83c0807ff03c83c080 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c83c0807ff03c83c080 /* CctController.cpp */; }; + FFFF3c83c0e87ff03c83c0e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c83c0e87ff03c83c0e8 /* CctObstacleContext.cpp */; }; + FFFF3c83c1507ff03c83c150 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c83c1507ff03c83c150 /* CctSweptBox.cpp */; }; + FFFF3c83c1b87ff03c83c1b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c83c1b87ff03c83c1b8 /* CctSweptCapsule.cpp */; }; + FFFF3c83c2207ff03c83c220 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c83c2207ff03c83c220 /* CctSweptVolume.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b8241407f8c5b824140 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5b82b2f07f8c5b82b2f0 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b82b3587f8c5b82b358 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b82b3c07f8c5b82b3c0 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b82b4287f8c5b82b428 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b82b4907f8c5b82b490 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b82b4f87f8c5b82b4f8 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b82b5607f8c5b82b560 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b82b5c87f8c5b82b5c8 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b033a007f8c5b033a00 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b033a687f8c5b033a68 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b033ad07f8c5b033ad0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b033b387f8c5b033b38 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b033ba07f8c5b033ba0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b033c087f8c5b033c08 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b033c707f8c5b033c70 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b033cd87f8c5b033cd8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b033d407f8c5b033d40 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b033da87f8c5b033da8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b033e107f8c5b033e10 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b033e787f8c5b033e78 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b033ee07f8c5b033ee0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b033f487f8c5b033f48 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b033fb07f8c5b033fb0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0340187f8c5b034018 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0340807f8c5b034080 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0340e87f8c5b0340e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0341507f8c5b034150 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0341b87f8c5b0341b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0342207f8c5b034220 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b992b807ff03b992b80 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3b999bb07ff03b999bb0 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b999c187ff03b999c18 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b999c807ff03b999c80 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b999ce87ff03b999ce8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b999d507ff03b999d50 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b999db87ff03b999db8 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b999e207ff03b999e20 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b999e887ff03b999e88 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83ba007ff03c83ba00 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83ba687ff03c83ba68 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83bad07ff03c83bad0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83bb387ff03c83bb38 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83bba07ff03c83bba0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83bc087ff03c83bc08 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83bc707ff03c83bc70 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83bcd87ff03c83bcd8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83bd407ff03c83bd40 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83bda87ff03c83bda8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83be107ff03c83be10 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83be787ff03c83be78 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c83bee07ff03c83bee0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c83bf487ff03c83bf48 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c83bfb07ff03c83bfb0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c83c0187ff03c83c018 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c83c0807ff03c83c080 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c83c0e87ff03c83c0e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c83c1507ff03c83c150 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c83c1b87ff03c83c1b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c83c2207ff03c83c220 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF25b8241407f8c5b824140 /* Resources */ = { + FFF23b992b807ff03b992b80 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -412,7 +412,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b8241407f8c5b824140 /* Frameworks */ = { + FFFC3b992b807ff03b992b80 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -422,20 +422,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b8241407f8c5b824140 /* Sources */ = { + FFF83b992b807ff03b992b80 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5b033e787f8c5b033e78, - FFFF5b033ee07f8c5b033ee0, - FFFF5b033f487f8c5b033f48, - FFFF5b033fb07f8c5b033fb0, - FFFF5b0340187f8c5b034018, - FFFF5b0340807f8c5b034080, - FFFF5b0340e87f8c5b0340e8, - FFFF5b0341507f8c5b034150, - FFFF5b0341b87f8c5b0341b8, - FFFF5b0342207f8c5b034220, + FFFF3c83be787ff03c83be78, + FFFF3c83bee07ff03c83bee0, + FFFF3c83bf487ff03c83bf48, + FFFF3c83bfb07ff03c83bfb0, + FFFF3c83c0187ff03c83c018, + FFFF3c83c0807ff03c83c080, + FFFF3c83c0e87ff03c83c0e8, + FFFF3c83c1507ff03c83c150, + FFFF3c83c1b87ff03c83c1b8, + FFFF3c83c2207ff03c83c220, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -444,91 +444,91 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF45b8294d07f8c5b8294d0 /* PBXTargetDependency */ = { + FFF43b993cf07ff03b993cf0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA59c183f07f8c59c183f0 /* PhysXCommon */; - targetProxy = FFF559c183f07f8c59c183f0 /* PBXContainerItemProxy */; + target = FFFA3ba4add07ff03ba4add0 /* PhysXCommon */; + targetProxy = FFF53ba4add07ff03ba4add0 /* PBXContainerItemProxy */; }; - FFF45b82aed07f8c5b82aed0 /* PBXTargetDependency */ = { + FFF43b9997907ff03b999790 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b836b207f8c5b836b20 /* PhysXExtensions */; - targetProxy = FFF55b836b207f8c5b836b20 /* PBXContainerItemProxy */; + target = FFFA3b9a54207ff03b9a5420 /* PhysXExtensions */; + targetProxy = FFF53b9a54207ff03b9a5420 /* PBXContainerItemProxy */; }; - FFF45b82a0707f8c5b82a070 /* PBXTargetDependency */ = { + FFF43b997e907ff03b997e90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA59c114307f8c59c11430 /* PxFoundation */; - targetProxy = FFF559c114307f8c59c11430 /* PBXContainerItemProxy */; + target = FFFA3ba5cc607ff03ba5cc60 /* PxFoundation */; + targetProxy = FFF53ba5cc607ff03ba5cc60 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXVehicle */ - FFFF5b03ec087f8c5b03ec08 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03ec087f8c5b03ec08 /* PxVehicleComponents.cpp */; }; - FFFF5b03ec707f8c5b03ec70 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03ec707f8c5b03ec70 /* PxVehicleDrive.cpp */; }; - FFFF5b03ecd87f8c5b03ecd8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03ecd87f8c5b03ecd8 /* PxVehicleDrive4W.cpp */; }; - FFFF5b03ed407f8c5b03ed40 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03ed407f8c5b03ed40 /* PxVehicleDriveNW.cpp */; }; - FFFF5b03eda87f8c5b03eda8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03eda87f8c5b03eda8 /* PxVehicleDriveTank.cpp */; }; - FFFF5b03ee107f8c5b03ee10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03ee107f8c5b03ee10 /* PxVehicleMetaData.cpp */; }; - FFFF5b03ee787f8c5b03ee78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03ee787f8c5b03ee78 /* PxVehicleNoDrive.cpp */; }; - FFFF5b03eee07f8c5b03eee0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03eee07f8c5b03eee0 /* PxVehicleSDK.cpp */; }; - FFFF5b03ef487f8c5b03ef48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03ef487f8c5b03ef48 /* PxVehicleSerialization.cpp */; }; - FFFF5b03efb07f8c5b03efb0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03efb07f8c5b03efb0 /* PxVehicleSuspWheelTire4.cpp */; }; - FFFF5b03f0187f8c5b03f018 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03f0187f8c5b03f018 /* PxVehicleTireFriction.cpp */; }; - FFFF5b03f0807f8c5b03f080 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03f0807f8c5b03f080 /* PxVehicleUpdate.cpp */; }; - FFFF5b03f0e87f8c5b03f0e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03f0e87f8c5b03f0e8 /* PxVehicleWheels.cpp */; }; - FFFF5b03f1507f8c5b03f150 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03f1507f8c5b03f150 /* VehicleUtilControl.cpp */; }; - FFFF5b03f1b87f8c5b03f1b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03f1b87f8c5b03f1b8 /* VehicleUtilSetup.cpp */; }; - FFFF5b03f2207f8c5b03f220 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b03f2207f8c5b03f220 /* VehicleUtilTelemetry.cpp */; }; - FFFF5b8370387f8c5b837038 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5b8370387f8c5b837038 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; - FFFF5b8370a07f8c5b8370a0 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5b8370a07f8c5b8370a0 /* src/PxVehicleMetaDataObjects.cpp */; }; + FFFF3c8400087ff03c840008 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8400087ff03c840008 /* PxVehicleComponents.cpp */; }; + FFFF3c8400707ff03c840070 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8400707ff03c840070 /* PxVehicleDrive.cpp */; }; + FFFF3c8400d87ff03c8400d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8400d87ff03c8400d8 /* PxVehicleDrive4W.cpp */; }; + FFFF3c8401407ff03c840140 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8401407ff03c840140 /* PxVehicleDriveNW.cpp */; }; + FFFF3c8401a87ff03c8401a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8401a87ff03c8401a8 /* PxVehicleDriveTank.cpp */; }; + FFFF3c8402107ff03c840210 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8402107ff03c840210 /* PxVehicleMetaData.cpp */; }; + FFFF3c8402787ff03c840278 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8402787ff03c840278 /* PxVehicleNoDrive.cpp */; }; + FFFF3c8402e07ff03c8402e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8402e07ff03c8402e0 /* PxVehicleSDK.cpp */; }; + FFFF3c8403487ff03c840348 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8403487ff03c840348 /* PxVehicleSerialization.cpp */; }; + FFFF3c8403b07ff03c8403b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8403b07ff03c8403b0 /* PxVehicleSuspWheelTire4.cpp */; }; + FFFF3c8404187ff03c840418 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8404187ff03c840418 /* PxVehicleTireFriction.cpp */; }; + FFFF3c8404807ff03c840480 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8404807ff03c840480 /* PxVehicleUpdate.cpp */; }; + FFFF3c8404e87ff03c8404e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8404e87ff03c8404e8 /* PxVehicleWheels.cpp */; }; + FFFF3c8405507ff03c840550 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8405507ff03c840550 /* VehicleUtilControl.cpp */; }; + FFFF3c8405b87ff03c8405b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8405b87ff03c8405b8 /* VehicleUtilSetup.cpp */; }; + FFFF3c8406207ff03c840620 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8406207ff03c840620 /* VehicleUtilTelemetry.cpp */; }; + FFFF3b9a59087ff03b9a5908 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD3b9a59087ff03b9a5908 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; + FFFF3b9a59707ff03b9a5970 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD3b9a59707ff03b9a5970 /* src/PxVehicleMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b8256907f8c5b825690 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5b0358007f8c5b035800 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0358687f8c5b035868 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0358d07f8c5b0358d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0359387f8c5b035938 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0359a07f8c5b0359a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b035a087f8c5b035a08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b035a707f8c5b035a70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b035ad87f8c5b035ad8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b035b407f8c5b035b40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b035ba87f8c5b035ba8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b035c107f8c5b035c10 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b035c787f8c5b035c78 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b035ce07f8c5b035ce0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b035d487f8c5b035d48 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b035db07f8c5b035db0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ea007f8c5b03ea00 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ea687f8c5b03ea68 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ead07f8c5b03ead0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03eb387f8c5b03eb38 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03eba07f8c5b03eba0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ec087f8c5b03ec08 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ec707f8c5b03ec70 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ecd87f8c5b03ecd8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ed407f8c5b03ed40 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03eda87f8c5b03eda8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ee107f8c5b03ee10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ee787f8c5b03ee78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03eee07f8c5b03eee0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03ef487f8c5b03ef48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03efb07f8c5b03efb0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03f0187f8c5b03f018 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03f0807f8c5b03f080 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03f0e87f8c5b03f0e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03f1507f8c5b03f150 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03f1b87f8c5b03f1b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b03f2207f8c5b03f220 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b836f007f8c5b836f00 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b836f687f8c5b836f68 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b836fd07f8c5b836fd0 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b8370387f8c5b837038 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b8370a07f8c5b8370a0 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b993f207ff03b993f20 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3c83e0007ff03c83e000 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83e0687ff03c83e068 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83e0d07ff03c83e0d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83e1387ff03c83e138 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83e1a07ff03c83e1a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83e2087ff03c83e208 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83e2707ff03c83e270 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83e2d87ff03c83e2d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83e3407ff03c83e340 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83e3a87ff03c83e3a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83e4107ff03c83e410 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83e4787ff03c83e478 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83e4e07ff03c83e4e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83e5487ff03c83e548 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83e5b07ff03c83e5b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83fe007ff03c83fe00 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83fe687ff03c83fe68 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83fed07ff03c83fed0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83ff387ff03c83ff38 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c83ffa07ff03c83ffa0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8400087ff03c840008 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8400707ff03c840070 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8400d87ff03c8400d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8401407ff03c840140 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8401a87ff03c8401a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8402107ff03c840210 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8402787ff03c840278 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8402e07ff03c8402e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8403487ff03c840348 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8403b07ff03c8403b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8404187ff03c840418 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8404807ff03c840480 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8404e87ff03c8404e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8405507ff03c840550 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8405b87ff03c8405b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8406207ff03c840620 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b9a57d07ff03b9a57d0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b9a58387ff03b9a5838 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b9a58a07ff03b9a58a0 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b9a59087ff03b9a5908 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b9a59707ff03b9a5970 /* 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 */ - FFF25b8256907f8c5b825690 /* Resources */ = { + FFF23b993f207ff03b993f20 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -538,7 +538,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b8256907f8c5b825690 /* Frameworks */ = { + FFFC3b993f207ff03b993f20 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -548,28 +548,28 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b8256907f8c5b825690 /* Sources */ = { + FFF83b993f207ff03b993f20 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5b03ec087f8c5b03ec08, - FFFF5b03ec707f8c5b03ec70, - FFFF5b03ecd87f8c5b03ecd8, - FFFF5b03ed407f8c5b03ed40, - FFFF5b03eda87f8c5b03eda8, - FFFF5b03ee107f8c5b03ee10, - FFFF5b03ee787f8c5b03ee78, - FFFF5b03eee07f8c5b03eee0, - FFFF5b03ef487f8c5b03ef48, - FFFF5b03efb07f8c5b03efb0, - FFFF5b03f0187f8c5b03f018, - FFFF5b03f0807f8c5b03f080, - FFFF5b03f0e87f8c5b03f0e8, - FFFF5b03f1507f8c5b03f150, - FFFF5b03f1b87f8c5b03f1b8, - FFFF5b03f2207f8c5b03f220, - FFFF5b8370387f8c5b837038, - FFFF5b8370a07f8c5b8370a0, + FFFF3c8400087ff03c840008, + FFFF3c8400707ff03c840070, + FFFF3c8400d87ff03c8400d8, + FFFF3c8401407ff03c840140, + FFFF3c8401a87ff03c8401a8, + FFFF3c8402107ff03c840210, + FFFF3c8402787ff03c840278, + FFFF3c8402e07ff03c8402e0, + FFFF3c8403487ff03c840348, + FFFF3c8403b07ff03c8403b0, + FFFF3c8404187ff03c840418, + FFFF3c8404807ff03c840480, + FFFF3c8404e87ff03c8404e8, + FFFF3c8405507ff03c840550, + FFFF3c8405b87ff03c8405b8, + FFFF3c8406207ff03c840620, + FFFF3b9a59087ff03b9a5908, + FFFF3b9a59707ff03b9a5970, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -581,220 +581,220 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXExtensions */ - FFFF5b0412e87f8c5b0412e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0412e87f8c5b0412e8 /* ExtBroadPhase.cpp */; }; - FFFF5b0413507f8c5b041350 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0413507f8c5b041350 /* ExtClothFabricCooker.cpp */; }; - FFFF5b0413b87f8c5b0413b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0413b87f8c5b0413b8 /* ExtClothGeodesicTetherCooker.cpp */; }; - FFFF5b0414207f8c5b041420 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0414207f8c5b041420 /* ExtClothMeshQuadifier.cpp */; }; - FFFF5b0414887f8c5b041488 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0414887f8c5b041488 /* ExtClothSimpleTetherCooker.cpp */; }; - FFFF5b0414f07f8c5b0414f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0414f07f8c5b0414f0 /* ExtCollection.cpp */; }; - FFFF5b0415587f8c5b041558 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0415587f8c5b041558 /* ExtConvexMeshExt.cpp */; }; - FFFF5b0415c07f8c5b0415c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0415c07f8c5b0415c0 /* ExtCpuWorkerThread.cpp */; }; - FFFF5b0416287f8c5b041628 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0416287f8c5b041628 /* ExtD6Joint.cpp */; }; - FFFF5b0416907f8c5b041690 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0416907f8c5b041690 /* ExtD6JointSolverPrep.cpp */; }; - FFFF5b0416f87f8c5b0416f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0416f87f8c5b0416f8 /* ExtDefaultCpuDispatcher.cpp */; }; - FFFF5b0417607f8c5b041760 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0417607f8c5b041760 /* ExtDefaultErrorCallback.cpp */; }; - FFFF5b0417c87f8c5b0417c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0417c87f8c5b0417c8 /* ExtDefaultSimulationFilterShader.cpp */; }; - FFFF5b0418307f8c5b041830 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0418307f8c5b041830 /* ExtDefaultStreams.cpp */; }; - FFFF5b0418987f8c5b041898 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0418987f8c5b041898 /* ExtDistanceJoint.cpp */; }; - FFFF5b0419007f8c5b041900 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0419007f8c5b041900 /* ExtDistanceJointSolverPrep.cpp */; }; - FFFF5b0419687f8c5b041968 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0419687f8c5b041968 /* ExtExtensions.cpp */; }; - FFFF5b0419d07f8c5b0419d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0419d07f8c5b0419d0 /* ExtFixedJoint.cpp */; }; - FFFF5b041a387f8c5b041a38 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b041a387f8c5b041a38 /* ExtFixedJointSolverPrep.cpp */; }; - FFFF5b041aa07f8c5b041aa0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b041aa07f8c5b041aa0 /* ExtJoint.cpp */; }; - FFFF5b041b087f8c5b041b08 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b041b087f8c5b041b08 /* ExtMetaData.cpp */; }; - FFFF5b041b707f8c5b041b70 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b041b707f8c5b041b70 /* ExtParticleExt.cpp */; }; - FFFF5b041bd87f8c5b041bd8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b041bd87f8c5b041bd8 /* ExtPrismaticJoint.cpp */; }; - FFFF5b041c407f8c5b041c40 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b041c407f8c5b041c40 /* ExtPrismaticJointSolverPrep.cpp */; }; - FFFF5b041ca87f8c5b041ca8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b041ca87f8c5b041ca8 /* ExtPvd.cpp */; }; - FFFF5b041d107f8c5b041d10 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b041d107f8c5b041d10 /* ExtPxStringTable.cpp */; }; - FFFF5b041d787f8c5b041d78 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b041d787f8c5b041d78 /* ExtRaycastCCD.cpp */; }; - FFFF5b041de07f8c5b041de0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b041de07f8c5b041de0 /* ExtRevoluteJoint.cpp */; }; - FFFF5b041e487f8c5b041e48 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b041e487f8c5b041e48 /* ExtRevoluteJointSolverPrep.cpp */; }; - FFFF5b041eb07f8c5b041eb0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b041eb07f8c5b041eb0 /* ExtRigidBodyExt.cpp */; }; - FFFF5b041f187f8c5b041f18 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b041f187f8c5b041f18 /* ExtSceneQueryExt.cpp */; }; - FFFF5b041f807f8c5b041f80 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b041f807f8c5b041f80 /* ExtSimpleFactory.cpp */; }; - FFFF5b041fe87f8c5b041fe8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b041fe87f8c5b041fe8 /* ExtSmoothNormals.cpp */; }; - FFFF5b0420507f8c5b042050 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0420507f8c5b042050 /* ExtSphericalJoint.cpp */; }; - FFFF5b0420b87f8c5b0420b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0420b87f8c5b0420b8 /* ExtSphericalJointSolverPrep.cpp */; }; - FFFF5b0421207f8c5b042120 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0421207f8c5b042120 /* ExtTriangleMeshExt.cpp */; }; - FFFF5b0456d07f8c5b0456d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b0456d07f8c5b0456d0 /* SnSerialUtils.cpp */; }; - FFFF5b0457387f8c5b045738 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b0457387f8c5b045738 /* SnSerialization.cpp */; }; - FFFF5b0457a07f8c5b0457a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b0457a07f8c5b0457a0 /* SnSerializationRegistry.cpp */; }; - FFFF5b045ae07f8c5b045ae0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b045ae07f8c5b045ae0 /* Binary/SnBinaryDeserialization.cpp */; }; - FFFF5b045b487f8c5b045b48 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b045b487f8c5b045b48 /* Binary/SnBinarySerialization.cpp */; }; - FFFF5b045bb07f8c5b045bb0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b045bb07f8c5b045bb0 /* Binary/SnConvX.cpp */; }; - FFFF5b045c187f8c5b045c18 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b045c187f8c5b045c18 /* Binary/SnConvX_Align.cpp */; }; - FFFF5b045c807f8c5b045c80 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b045c807f8c5b045c80 /* Binary/SnConvX_Convert.cpp */; }; - FFFF5b045ce87f8c5b045ce8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b045ce87f8c5b045ce8 /* Binary/SnConvX_Error.cpp */; }; - FFFF5b045d507f8c5b045d50 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b045d507f8c5b045d50 /* Binary/SnConvX_MetaData.cpp */; }; - FFFF5b045db87f8c5b045db8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b045db87f8c5b045db8 /* Binary/SnConvX_Output.cpp */; }; - FFFF5b045e207f8c5b045e20 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b045e207f8c5b045e20 /* Binary/SnConvX_Union.cpp */; }; - FFFF5b045e887f8c5b045e88 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b045e887f8c5b045e88 /* Binary/SnSerializationContext.cpp */; }; - FFFF5b0467e07f8c5b0467e0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b0467e07f8c5b0467e0 /* Xml/SnJointRepXSerializer.cpp */; }; - FFFF5b0468487f8c5b046848 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b0468487f8c5b046848 /* Xml/SnRepXCoreSerializer.cpp */; }; - FFFF5b0468b07f8c5b0468b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b0468b07f8c5b0468b0 /* Xml/SnRepXUpgrader.cpp */; }; - FFFF5b0469187f8c5b046918 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5b0469187f8c5b046918 /* Xml/SnXmlSerialization.cpp */; }; - FFFF5b0436e07f8c5b0436e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5b0436e07f8c5b0436e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; + FFFF3c8426e87ff03c8426e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8426e87ff03c8426e8 /* ExtBroadPhase.cpp */; }; + FFFF3c8427507ff03c842750 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8427507ff03c842750 /* ExtClothFabricCooker.cpp */; }; + FFFF3c8427b87ff03c8427b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8427b87ff03c8427b8 /* ExtClothGeodesicTetherCooker.cpp */; }; + FFFF3c8428207ff03c842820 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8428207ff03c842820 /* ExtClothMeshQuadifier.cpp */; }; + FFFF3c8428887ff03c842888 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8428887ff03c842888 /* ExtClothSimpleTetherCooker.cpp */; }; + FFFF3c8428f07ff03c8428f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8428f07ff03c8428f0 /* ExtCollection.cpp */; }; + FFFF3c8429587ff03c842958 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8429587ff03c842958 /* ExtConvexMeshExt.cpp */; }; + FFFF3c8429c07ff03c8429c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8429c07ff03c8429c0 /* ExtCpuWorkerThread.cpp */; }; + FFFF3c842a287ff03c842a28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c842a287ff03c842a28 /* ExtD6Joint.cpp */; }; + FFFF3c842a907ff03c842a90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c842a907ff03c842a90 /* ExtD6JointSolverPrep.cpp */; }; + FFFF3c842af87ff03c842af8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c842af87ff03c842af8 /* ExtDefaultCpuDispatcher.cpp */; }; + FFFF3c842b607ff03c842b60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c842b607ff03c842b60 /* ExtDefaultErrorCallback.cpp */; }; + FFFF3c842bc87ff03c842bc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c842bc87ff03c842bc8 /* ExtDefaultSimulationFilterShader.cpp */; }; + FFFF3c842c307ff03c842c30 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c842c307ff03c842c30 /* ExtDefaultStreams.cpp */; }; + FFFF3c842c987ff03c842c98 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c842c987ff03c842c98 /* ExtDistanceJoint.cpp */; }; + FFFF3c842d007ff03c842d00 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c842d007ff03c842d00 /* ExtDistanceJointSolverPrep.cpp */; }; + FFFF3c842d687ff03c842d68 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c842d687ff03c842d68 /* ExtExtensions.cpp */; }; + FFFF3c842dd07ff03c842dd0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c842dd07ff03c842dd0 /* ExtFixedJoint.cpp */; }; + FFFF3c842e387ff03c842e38 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c842e387ff03c842e38 /* ExtFixedJointSolverPrep.cpp */; }; + FFFF3c842ea07ff03c842ea0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c842ea07ff03c842ea0 /* ExtJoint.cpp */; }; + FFFF3c842f087ff03c842f08 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c842f087ff03c842f08 /* ExtMetaData.cpp */; }; + FFFF3c842f707ff03c842f70 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c842f707ff03c842f70 /* ExtParticleExt.cpp */; }; + FFFF3c842fd87ff03c842fd8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c842fd87ff03c842fd8 /* ExtPrismaticJoint.cpp */; }; + FFFF3c8430407ff03c843040 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8430407ff03c843040 /* ExtPrismaticJointSolverPrep.cpp */; }; + FFFF3c8430a87ff03c8430a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8430a87ff03c8430a8 /* ExtPvd.cpp */; }; + FFFF3c8431107ff03c843110 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8431107ff03c843110 /* ExtPxStringTable.cpp */; }; + FFFF3c8431787ff03c843178 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8431787ff03c843178 /* ExtRaycastCCD.cpp */; }; + FFFF3c8431e07ff03c8431e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8431e07ff03c8431e0 /* ExtRevoluteJoint.cpp */; }; + FFFF3c8432487ff03c843248 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8432487ff03c843248 /* ExtRevoluteJointSolverPrep.cpp */; }; + FFFF3c8432b07ff03c8432b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8432b07ff03c8432b0 /* ExtRigidBodyExt.cpp */; }; + FFFF3c8433187ff03c843318 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8433187ff03c843318 /* ExtSceneQueryExt.cpp */; }; + FFFF3c8433807ff03c843380 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8433807ff03c843380 /* ExtSimpleFactory.cpp */; }; + FFFF3c8433e87ff03c8433e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8433e87ff03c8433e8 /* ExtSmoothNormals.cpp */; }; + FFFF3c8434507ff03c843450 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8434507ff03c843450 /* ExtSphericalJoint.cpp */; }; + FFFF3c8434b87ff03c8434b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8434b87ff03c8434b8 /* ExtSphericalJointSolverPrep.cpp */; }; + FFFF3c8435207ff03c843520 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8435207ff03c843520 /* ExtTriangleMeshExt.cpp */; }; + FFFF3c845cd07ff03c845cd0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c845cd07ff03c845cd0 /* SnSerialUtils.cpp */; }; + FFFF3c845d387ff03c845d38 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c845d387ff03c845d38 /* SnSerialization.cpp */; }; + FFFF3c845da07ff03c845da0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c845da07ff03c845da0 /* SnSerializationRegistry.cpp */; }; + FFFF3c8460e07ff03c8460e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c8460e07ff03c8460e0 /* Binary/SnBinaryDeserialization.cpp */; }; + FFFF3c8461487ff03c846148 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c8461487ff03c846148 /* Binary/SnBinarySerialization.cpp */; }; + FFFF3c8461b07ff03c8461b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c8461b07ff03c8461b0 /* Binary/SnConvX.cpp */; }; + FFFF3c8462187ff03c846218 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c8462187ff03c846218 /* Binary/SnConvX_Align.cpp */; }; + FFFF3c8462807ff03c846280 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c8462807ff03c846280 /* Binary/SnConvX_Convert.cpp */; }; + FFFF3c8462e87ff03c8462e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c8462e87ff03c8462e8 /* Binary/SnConvX_Error.cpp */; }; + FFFF3c8463507ff03c846350 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c8463507ff03c846350 /* Binary/SnConvX_MetaData.cpp */; }; + FFFF3c8463b87ff03c8463b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c8463b87ff03c8463b8 /* Binary/SnConvX_Output.cpp */; }; + FFFF3c8464207ff03c846420 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c8464207ff03c846420 /* Binary/SnConvX_Union.cpp */; }; + FFFF3c8464887ff03c846488 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c8464887ff03c846488 /* Binary/SnSerializationContext.cpp */; }; + FFFF3c846de07ff03c846de0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c846de07ff03c846de0 /* Xml/SnJointRepXSerializer.cpp */; }; + FFFF3c846e487ff03c846e48 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c846e487ff03c846e48 /* Xml/SnRepXCoreSerializer.cpp */; }; + FFFF3c846eb07ff03c846eb0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c846eb07ff03c846eb0 /* Xml/SnRepXUpgrader.cpp */; }; + FFFF3c846f187ff03c846f18 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD3c846f187ff03c846f18 /* Xml/SnXmlSerialization.cpp */; }; + FFFF3c844ae07ff03c844ae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD3c844ae07ff03c844ae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b836b207f8c5b836b20 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5b0422007f8c5b042200 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0422687f8c5b042268 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0422d07f8c5b0422d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0423387f8c5b042338 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0423a07f8c5b0423a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0424087f8c5b042408 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0424707f8c5b042470 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0424d87f8c5b0424d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0425407f8c5b042540 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0425a87f8c5b0425a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0426107f8c5b042610 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0426787f8c5b042678 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0426e07f8c5b0426e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0427487f8c5b042748 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0427b07f8c5b0427b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0428187f8c5b042818 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0428807f8c5b042880 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0428e87f8c5b0428e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0429507f8c5b042950 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0429b87f8c5b0429b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b042a207f8c5b042a20 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b042a887f8c5b042a88 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b042af07f8c5b042af0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b042b587f8c5b042b58 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b042bc07f8c5b042bc0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b042c287f8c5b042c28 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b042c907f8c5b042c90 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b042cf87f8c5b042cf8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b042d607f8c5b042d60 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b042dc87f8c5b042dc8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b042e307f8c5b042e30 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b042e987f8c5b042e98 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b042f007f8c5b042f00 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b042f687f8c5b042f68 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b042fd07f8c5b042fd0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0430387f8c5b043038 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0430a07f8c5b0430a0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b040c007f8c5b040c00 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b040c687f8c5b040c68 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b040cd07f8c5b040cd0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b040d387f8c5b040d38 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b040da07f8c5b040da0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b040e087f8c5b040e08 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b040e707f8c5b040e70 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b040ed87f8c5b040ed8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b040f407f8c5b040f40 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b040fa87f8c5b040fa8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0410107f8c5b041010 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0410787f8c5b041078 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0410e07f8c5b0410e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0411487f8c5b041148 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0411b07f8c5b0411b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0412187f8c5b041218 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0412807f8c5b041280 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0412e87f8c5b0412e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0413507f8c5b041350 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0413b87f8c5b0413b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0414207f8c5b041420 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0414887f8c5b041488 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0414f07f8c5b0414f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0415587f8c5b041558 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0415c07f8c5b0415c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0416287f8c5b041628 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0416907f8c5b041690 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0416f87f8c5b0416f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0417607f8c5b041760 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0417c87f8c5b0417c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0418307f8c5b041830 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0418987f8c5b041898 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0419007f8c5b041900 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0419687f8c5b041968 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0419d07f8c5b0419d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b041a387f8c5b041a38 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b041aa07f8c5b041aa0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b041b087f8c5b041b08 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b041b707f8c5b041b70 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b041bd87f8c5b041bd8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b041c407f8c5b041c40 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b041ca87f8c5b041ca8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b041d107f8c5b041d10 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b041d787f8c5b041d78 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b041de07f8c5b041de0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b041e487f8c5b041e48 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b041eb07f8c5b041eb0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b041f187f8c5b041f18 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b041f807f8c5b041f80 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b041fe87f8c5b041fe8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0420507f8c5b042050 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0420b87f8c5b0420b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0421207f8c5b042120 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0456007f8c5b045600 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0456687f8c5b045668 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0456d07f8c5b0456d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0457387f8c5b045738 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0457a07f8c5b0457a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0458087f8c5b045808 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0458707f8c5b045870 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0458d87f8c5b0458d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0459407f8c5b045940 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0459a87f8c5b0459a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045a107f8c5b045a10 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045a787f8c5b045a78 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045ae07f8c5b045ae0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b045b487f8c5b045b48 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b045bb07f8c5b045bb0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b045c187f8c5b045c18 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b045c807f8c5b045c80 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b045ce87f8c5b045ce8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b045d507f8c5b045d50 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b045db87f8c5b045db8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b045e207f8c5b045e20 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b045e887f8c5b045e88 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b045ef07f8c5b045ef0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045f587f8c5b045f58 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b045fc07f8c5b045fc0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0460287f8c5b046028 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0460907f8c5b046090 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0460f87f8c5b0460f8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0461607f8c5b046160 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0461c87f8c5b0461c8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0462307f8c5b046230 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0462987f8c5b046298 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0463007f8c5b046300 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0463687f8c5b046368 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0463d07f8c5b0463d0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0464387f8c5b046438 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0464a07f8c5b0464a0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0465087f8c5b046508 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0465707f8c5b046570 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0465d87f8c5b0465d8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0466407f8c5b046640 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0466a87f8c5b0466a8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0467107f8c5b046710 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0467787f8c5b046778 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0467e07f8c5b0467e0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0468487f8c5b046848 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0468b07f8c5b0468b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0469187f8c5b046918 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0469807f8c5b046980 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0432007f8c5b043200 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0432687f8c5b043268 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0432d07f8c5b0432d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0433387f8c5b043338 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0433a07f8c5b0433a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0434087f8c5b043408 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0434707f8c5b043470 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0434d87f8c5b0434d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0435407f8c5b043540 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0435a87f8c5b0435a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0436107f8c5b043610 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0436787f8c5b043678 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0436e07f8c5b0436e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b9a54207ff03b9a5420 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3c8436007ff03c843600 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8436687ff03c843668 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8436d07ff03c8436d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8437387ff03c843738 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8437a07ff03c8437a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8438087ff03c843808 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8438707ff03c843870 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8438d87ff03c8438d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8439407ff03c843940 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8439a87ff03c8439a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c843a107ff03c843a10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c843a787ff03c843a78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c843ae07ff03c843ae0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c843b487ff03c843b48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c843bb07ff03c843bb0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c843c187ff03c843c18 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c843c807ff03c843c80 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c843ce87ff03c843ce8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c843d507ff03c843d50 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c843db87ff03c843db8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c843e207ff03c843e20 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c843e887ff03c843e88 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c843ef07ff03c843ef0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c843f587ff03c843f58 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c843fc07ff03c843fc0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8440287ff03c844028 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8440907ff03c844090 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8440f87ff03c8440f8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8441607ff03c844160 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8441c87ff03c8441c8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8442307ff03c844230 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8442987ff03c844298 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8443007ff03c844300 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8443687ff03c844368 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8443d07ff03c8443d0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8444387ff03c844438 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8444a07ff03c8444a0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8420007ff03c842000 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8420687ff03c842068 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8420d07ff03c8420d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8421387ff03c842138 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8421a07ff03c8421a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8422087ff03c842208 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8422707ff03c842270 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8422d87ff03c8422d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8423407ff03c842340 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8423a87ff03c8423a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8424107ff03c842410 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8424787ff03c842478 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8424e07ff03c8424e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8425487ff03c842548 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8425b07ff03c8425b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8426187ff03c842618 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8426807ff03c842680 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8426e87ff03c8426e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8427507ff03c842750 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8427b87ff03c8427b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8428207ff03c842820 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8428887ff03c842888 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8428f07ff03c8428f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8429587ff03c842958 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8429c07ff03c8429c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c842a287ff03c842a28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c842a907ff03c842a90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c842af87ff03c842af8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c842b607ff03c842b60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c842bc87ff03c842bc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c842c307ff03c842c30 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c842c987ff03c842c98 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c842d007ff03c842d00 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c842d687ff03c842d68 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c842dd07ff03c842dd0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c842e387ff03c842e38 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c842ea07ff03c842ea0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c842f087ff03c842f08 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c842f707ff03c842f70 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c842fd87ff03c842fd8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8430407ff03c843040 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8430a87ff03c8430a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8431107ff03c843110 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8431787ff03c843178 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8431e07ff03c8431e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8432487ff03c843248 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8432b07ff03c8432b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8433187ff03c843318 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8433807ff03c843380 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8433e87ff03c8433e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8434507ff03c843450 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8434b87ff03c8434b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8435207ff03c843520 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c845c007ff03c845c00 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c845c687ff03c845c68 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c845cd07ff03c845cd0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c845d387ff03c845d38 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c845da07ff03c845da0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c845e087ff03c845e08 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c845e707ff03c845e70 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c845ed87ff03c845ed8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c845f407ff03c845f40 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c845fa87ff03c845fa8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8460107ff03c846010 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8460787ff03c846078 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8460e07ff03c8460e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8461487ff03c846148 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8461b07ff03c8461b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8462187ff03c846218 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8462807ff03c846280 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8462e87ff03c8462e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8463507ff03c846350 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8463b87ff03c8463b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8464207ff03c846420 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8464887ff03c846488 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8464f07ff03c8464f0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8465587ff03c846558 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8465c07ff03c8465c0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8466287ff03c846628 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8466907ff03c846690 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8466f87ff03c8466f8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8467607ff03c846760 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8467c87ff03c8467c8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8468307ff03c846830 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8468987ff03c846898 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8469007ff03c846900 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8469687ff03c846968 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8469d07ff03c8469d0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c846a387ff03c846a38 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c846aa07ff03c846aa0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c846b087ff03c846b08 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c846b707ff03c846b70 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c846bd87ff03c846bd8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c846c407ff03c846c40 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c846ca87ff03c846ca8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c846d107ff03c846d10 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c846d787ff03c846d78 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c846de07ff03c846de0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c846e487ff03c846e48 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c846eb07ff03c846eb0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c846f187ff03c846f18 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c846f807ff03c846f80 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8446007ff03c844600 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8446687ff03c844668 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8446d07ff03c8446d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8447387ff03c844738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8447a07ff03c8447a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8448087ff03c844808 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8448707ff03c844870 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8448d87ff03c8448d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8449407ff03c844940 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8449a87ff03c8449a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c844a107ff03c844a10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c844a787ff03c844a78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c844ae07ff03c844ae0 /* 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 */ - FFF25b836b207f8c5b836b20 /* Resources */ = { + FFF23b9a54207ff03b9a5420 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -804,7 +804,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b836b207f8c5b836b20 /* Frameworks */ = { + FFFC3b9a54207ff03b9a5420 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -814,64 +814,64 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b836b207f8c5b836b20 /* Sources */ = { + FFF83b9a54207ff03b9a5420 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5b0412e87f8c5b0412e8, - FFFF5b0413507f8c5b041350, - FFFF5b0413b87f8c5b0413b8, - FFFF5b0414207f8c5b041420, - FFFF5b0414887f8c5b041488, - FFFF5b0414f07f8c5b0414f0, - FFFF5b0415587f8c5b041558, - FFFF5b0415c07f8c5b0415c0, - FFFF5b0416287f8c5b041628, - FFFF5b0416907f8c5b041690, - FFFF5b0416f87f8c5b0416f8, - FFFF5b0417607f8c5b041760, - FFFF5b0417c87f8c5b0417c8, - FFFF5b0418307f8c5b041830, - FFFF5b0418987f8c5b041898, - FFFF5b0419007f8c5b041900, - FFFF5b0419687f8c5b041968, - FFFF5b0419d07f8c5b0419d0, - FFFF5b041a387f8c5b041a38, - FFFF5b041aa07f8c5b041aa0, - FFFF5b041b087f8c5b041b08, - FFFF5b041b707f8c5b041b70, - FFFF5b041bd87f8c5b041bd8, - FFFF5b041c407f8c5b041c40, - FFFF5b041ca87f8c5b041ca8, - FFFF5b041d107f8c5b041d10, - FFFF5b041d787f8c5b041d78, - FFFF5b041de07f8c5b041de0, - FFFF5b041e487f8c5b041e48, - FFFF5b041eb07f8c5b041eb0, - FFFF5b041f187f8c5b041f18, - FFFF5b041f807f8c5b041f80, - FFFF5b041fe87f8c5b041fe8, - FFFF5b0420507f8c5b042050, - FFFF5b0420b87f8c5b0420b8, - FFFF5b0421207f8c5b042120, - FFFF5b0456d07f8c5b0456d0, - FFFF5b0457387f8c5b045738, - FFFF5b0457a07f8c5b0457a0, - FFFF5b045ae07f8c5b045ae0, - FFFF5b045b487f8c5b045b48, - FFFF5b045bb07f8c5b045bb0, - FFFF5b045c187f8c5b045c18, - FFFF5b045c807f8c5b045c80, - FFFF5b045ce87f8c5b045ce8, - FFFF5b045d507f8c5b045d50, - FFFF5b045db87f8c5b045db8, - FFFF5b045e207f8c5b045e20, - FFFF5b045e887f8c5b045e88, - FFFF5b0467e07f8c5b0467e0, - FFFF5b0468487f8c5b046848, - FFFF5b0468b07f8c5b0468b0, - FFFF5b0469187f8c5b046918, - FFFF5b0436e07f8c5b0436e0, + FFFF3c8426e87ff03c8426e8, + FFFF3c8427507ff03c842750, + FFFF3c8427b87ff03c8427b8, + FFFF3c8428207ff03c842820, + FFFF3c8428887ff03c842888, + FFFF3c8428f07ff03c8428f0, + FFFF3c8429587ff03c842958, + FFFF3c8429c07ff03c8429c0, + FFFF3c842a287ff03c842a28, + FFFF3c842a907ff03c842a90, + FFFF3c842af87ff03c842af8, + FFFF3c842b607ff03c842b60, + FFFF3c842bc87ff03c842bc8, + FFFF3c842c307ff03c842c30, + FFFF3c842c987ff03c842c98, + FFFF3c842d007ff03c842d00, + FFFF3c842d687ff03c842d68, + FFFF3c842dd07ff03c842dd0, + FFFF3c842e387ff03c842e38, + FFFF3c842ea07ff03c842ea0, + FFFF3c842f087ff03c842f08, + FFFF3c842f707ff03c842f70, + FFFF3c842fd87ff03c842fd8, + FFFF3c8430407ff03c843040, + FFFF3c8430a87ff03c8430a8, + FFFF3c8431107ff03c843110, + FFFF3c8431787ff03c843178, + FFFF3c8431e07ff03c8431e0, + FFFF3c8432487ff03c843248, + FFFF3c8432b07ff03c8432b0, + FFFF3c8433187ff03c843318, + FFFF3c8433807ff03c843380, + FFFF3c8433e87ff03c8433e8, + FFFF3c8434507ff03c843450, + FFFF3c8434b87ff03c8434b8, + FFFF3c8435207ff03c843520, + FFFF3c845cd07ff03c845cd0, + FFFF3c845d387ff03c845d38, + FFFF3c845da07ff03c845da0, + FFFF3c8460e07ff03c8460e0, + FFFF3c8461487ff03c846148, + FFFF3c8461b07ff03c8461b0, + FFFF3c8462187ff03c846218, + FFFF3c8462807ff03c846280, + FFFF3c8462e87ff03c8462e8, + FFFF3c8463507ff03c846350, + FFFF3c8463b87ff03c8463b8, + FFFF3c8464207ff03c846420, + FFFF3c8464887ff03c846488, + FFFF3c846de07ff03c846de0, + FFFF3c846e487ff03c846e48, + FFFF3c846eb07ff03c846eb0, + FFFF3c846f187ff03c846f18, + FFFF3c844ae07ff03c844ae0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -880,56 +880,56 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF45b8362207f8c5b836220 /* PBXTargetDependency */ = { + FFF43b9a34507ff03b9a3450 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b8199707f8c5b819970 /* PsFastXml */; - targetProxy = FFF55b8199707f8c5b819970 /* PBXContainerItemProxy */; + target = FFFA3b98b2007ff03b98b200 /* PsFastXml */; + targetProxy = FFF53b98b2007ff03b98b200 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SceneQuery */ - FFFF5b0496007f8c5b049600 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0496007f8c5b049600 /* SqAABBPruner.cpp */; }; - FFFF5b0496687f8c5b049668 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0496687f8c5b049668 /* SqAABBTree.cpp */; }; - FFFF5b0496d07f8c5b0496d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0496d07f8c5b0496d0 /* SqAABBTreeUpdateMap.cpp */; }; - FFFF5b0497387f8c5b049738 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0497387f8c5b049738 /* SqBounds.cpp */; }; - FFFF5b0497a07f8c5b0497a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0497a07f8c5b0497a0 /* SqBucketPruner.cpp */; }; - FFFF5b0498087f8c5b049808 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0498087f8c5b049808 /* SqExtendedBucketPruner.cpp */; }; - FFFF5b0498707f8c5b049870 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0498707f8c5b049870 /* SqMetaData.cpp */; }; - FFFF5b0498d87f8c5b0498d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0498d87f8c5b0498d8 /* SqPruningPool.cpp */; }; - FFFF5b0499407f8c5b049940 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0499407f8c5b049940 /* SqPruningStructure.cpp */; }; - FFFF5b0499a87f8c5b0499a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0499a87f8c5b0499a8 /* SqSceneQueryManager.cpp */; }; + FFFF3c84ac007ff03c84ac00 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c84ac007ff03c84ac00 /* SqAABBPruner.cpp */; }; + FFFF3c84ac687ff03c84ac68 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c84ac687ff03c84ac68 /* SqAABBTree.cpp */; }; + FFFF3c84acd07ff03c84acd0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c84acd07ff03c84acd0 /* SqAABBTreeUpdateMap.cpp */; }; + FFFF3c84ad387ff03c84ad38 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c84ad387ff03c84ad38 /* SqBounds.cpp */; }; + FFFF3c84ada07ff03c84ada0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c84ada07ff03c84ada0 /* SqBucketPruner.cpp */; }; + FFFF3c84ae087ff03c84ae08 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c84ae087ff03c84ae08 /* SqExtendedBucketPruner.cpp */; }; + FFFF3c84ae707ff03c84ae70 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c84ae707ff03c84ae70 /* SqMetaData.cpp */; }; + FFFF3c84aed87ff03c84aed8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c84aed87ff03c84aed8 /* SqPruningPool.cpp */; }; + FFFF3c84af407ff03c84af40 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c84af407ff03c84af40 /* SqPruningStructure.cpp */; }; + FFFF3c84afa87ff03c84afa8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c84afa87ff03c84afa8 /* SqSceneQueryManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b847c107f8c5b847c10 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5b0496007f8c5b049600 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0496687f8c5b049668 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0496d07f8c5b0496d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0497387f8c5b049738 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0497a07f8c5b0497a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0498087f8c5b049808 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0498707f8c5b049870 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0498d87f8c5b0498d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0499407f8c5b049940 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0499a87f8c5b0499a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b049a107f8c5b049a10 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b049a787f8c5b049a78 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b049ae07f8c5b049ae0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b049b487f8c5b049b48 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b049bb07f8c5b049bb0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b049c187f8c5b049c18 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b049c807f8c5b049c80 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b049ce87f8c5b049ce8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b049d507f8c5b049d50 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b049db87f8c5b049db8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b84beb07f8c5b84beb0 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b84bf187f8c5b84bf18 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b84bf807f8c5b84bf80 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b84bfe87f8c5b84bfe8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b9b66107ff03b9b6610 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3c84ac007ff03c84ac00 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c84ac687ff03c84ac68 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c84acd07ff03c84acd0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c84ad387ff03c84ad38 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c84ada07ff03c84ada0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c84ae087ff03c84ae08 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c84ae707ff03c84ae70 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c84aed87ff03c84aed8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c84af407ff03c84af40 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c84afa87ff03c84afa8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c84b0107ff03c84b010 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84b0787ff03c84b078 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84b0e07ff03c84b0e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84b1487ff03c84b148 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84b1b07ff03c84b1b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84b2187ff03c84b218 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84b2807ff03c84b280 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84b2e87ff03c84b2e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84b3507ff03c84b350 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84b3b87ff03c84b3b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b95a0a07ff03b95a0a0 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b95a1087ff03b95a108 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b95a1707ff03b95a170 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b95a1d87ff03b95a1d8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF25b847c107f8c5b847c10 /* Resources */ = { + FFF23b9b66107ff03b9b6610 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -939,7 +939,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b847c107f8c5b847c10 /* Frameworks */ = { + FFFC3b9b66107ff03b9b6610 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -949,20 +949,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b847c107f8c5b847c10 /* Sources */ = { + FFF83b9b66107ff03b9b6610 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5b0496007f8c5b049600, - FFFF5b0496687f8c5b049668, - FFFF5b0496d07f8c5b0496d0, - FFFF5b0497387f8c5b049738, - FFFF5b0497a07f8c5b0497a0, - FFFF5b0498087f8c5b049808, - FFFF5b0498707f8c5b049870, - FFFF5b0498d87f8c5b0498d8, - FFFF5b0499407f8c5b049940, - FFFF5b0499a87f8c5b0499a8, + FFFF3c84ac007ff03c84ac00, + FFFF3c84ac687ff03c84ac68, + FFFF3c84acd07ff03c84acd0, + FFFF3c84ad387ff03c84ad38, + FFFF3c84ada07ff03c84ada0, + FFFF3c84ae087ff03c84ae08, + FFFF3c84ae707ff03c84ae70, + FFFF3c84aed87ff03c84aed8, + FFFF3c84af407ff03c84af40, + FFFF3c84afa87ff03c84afa8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -974,154 +974,154 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SimulationController */ - FFFF5b04ffd07f8c5b04ffd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b04ffd07f8c5b04ffd0 /* ScActorCore.cpp */; }; - FFFF5b0500387f8c5b050038 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0500387f8c5b050038 /* ScActorSim.cpp */; }; - FFFF5b0500a07f8c5b0500a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0500a07f8c5b0500a0 /* ScArticulationCore.cpp */; }; - FFFF5b0501087f8c5b050108 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0501087f8c5b050108 /* ScArticulationJointCore.cpp */; }; - FFFF5b0501707f8c5b050170 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0501707f8c5b050170 /* ScArticulationJointSim.cpp */; }; - FFFF5b0501d87f8c5b0501d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0501d87f8c5b0501d8 /* ScArticulationSim.cpp */; }; - FFFF5b0502407f8c5b050240 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0502407f8c5b050240 /* ScBodyCore.cpp */; }; - FFFF5b0502a87f8c5b0502a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0502a87f8c5b0502a8 /* ScBodyCoreKinematic.cpp */; }; - FFFF5b0503107f8c5b050310 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0503107f8c5b050310 /* ScBodySim.cpp */; }; - FFFF5b0503787f8c5b050378 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0503787f8c5b050378 /* ScConstraintCore.cpp */; }; - FFFF5b0503e07f8c5b0503e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0503e07f8c5b0503e0 /* ScConstraintGroupNode.cpp */; }; - FFFF5b0504487f8c5b050448 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0504487f8c5b050448 /* ScConstraintInteraction.cpp */; }; - FFFF5b0504b07f8c5b0504b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0504b07f8c5b0504b0 /* ScConstraintProjectionManager.cpp */; }; - FFFF5b0505187f8c5b050518 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0505187f8c5b050518 /* ScConstraintProjectionTree.cpp */; }; - FFFF5b0505807f8c5b050580 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0505807f8c5b050580 /* ScConstraintSim.cpp */; }; - FFFF5b0505e87f8c5b0505e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0505e87f8c5b0505e8 /* ScElementInteractionMarker.cpp */; }; - FFFF5b0506507f8c5b050650 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0506507f8c5b050650 /* ScElementSim.cpp */; }; - FFFF5b0506b87f8c5b0506b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0506b87f8c5b0506b8 /* ScInteraction.cpp */; }; - FFFF5b0507207f8c5b050720 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0507207f8c5b050720 /* ScIterators.cpp */; }; - FFFF5b0507887f8c5b050788 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0507887f8c5b050788 /* ScMaterialCore.cpp */; }; - FFFF5b0507f07f8c5b0507f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0507f07f8c5b0507f0 /* ScMetaData.cpp */; }; - FFFF5b0508587f8c5b050858 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0508587f8c5b050858 /* ScNPhaseCore.cpp */; }; - FFFF5b0508c07f8c5b0508c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0508c07f8c5b0508c0 /* ScPhysics.cpp */; }; - FFFF5b0509287f8c5b050928 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0509287f8c5b050928 /* ScRigidCore.cpp */; }; - FFFF5b0509907f8c5b050990 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0509907f8c5b050990 /* ScRigidSim.cpp */; }; - FFFF5b0509f87f8c5b0509f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0509f87f8c5b0509f8 /* ScScene.cpp */; }; - FFFF5b050a607f8c5b050a60 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b050a607f8c5b050a60 /* ScShapeCore.cpp */; }; - FFFF5b050ac87f8c5b050ac8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b050ac87f8c5b050ac8 /* ScShapeInteraction.cpp */; }; - FFFF5b050b307f8c5b050b30 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b050b307f8c5b050b30 /* ScShapeSim.cpp */; }; - FFFF5b050b987f8c5b050b98 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b050b987f8c5b050b98 /* ScSimStats.cpp */; }; - FFFF5b050c007f8c5b050c00 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b050c007f8c5b050c00 /* ScSimulationController.cpp */; }; - FFFF5b050c687f8c5b050c68 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b050c687f8c5b050c68 /* ScSqBoundsManager.cpp */; }; - FFFF5b050cd07f8c5b050cd0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b050cd07f8c5b050cd0 /* ScStaticCore.cpp */; }; - FFFF5b050d387f8c5b050d38 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b050d387f8c5b050d38 /* ScStaticSim.cpp */; }; - FFFF5b050da07f8c5b050da0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b050da07f8c5b050da0 /* ScTriggerInteraction.cpp */; }; - FFFF5b050f407f8c5b050f40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b050f407f8c5b050f40 /* particles/ScParticleBodyInteraction.cpp */; }; - FFFF5b050fa87f8c5b050fa8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b050fa87f8c5b050fa8 /* particles/ScParticlePacketShape.cpp */; }; - FFFF5b0510107f8c5b051010 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0510107f8c5b051010 /* particles/ScParticleSystemCore.cpp */; }; - FFFF5b0510787f8c5b051078 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0510787f8c5b051078 /* particles/ScParticleSystemSim.cpp */; }; - FFFF5b0511b07f8c5b0511b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0511b07f8c5b0511b0 /* cloth/ScClothCore.cpp */; }; - FFFF5b0512187f8c5b051218 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0512187f8c5b051218 /* cloth/ScClothFabricCore.cpp */; }; - FFFF5b0512807f8c5b051280 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0512807f8c5b051280 /* cloth/ScClothShape.cpp */; }; - FFFF5b0512e87f8c5b0512e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0512e87f8c5b0512e8 /* cloth/ScClothSim.cpp */; }; + FFFF3c1be9d07ff03c1be9d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1be9d07ff03c1be9d0 /* ScActorCore.cpp */; }; + FFFF3c1bea387ff03c1bea38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bea387ff03c1bea38 /* ScActorSim.cpp */; }; + FFFF3c1beaa07ff03c1beaa0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1beaa07ff03c1beaa0 /* ScArticulationCore.cpp */; }; + FFFF3c1beb087ff03c1beb08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1beb087ff03c1beb08 /* ScArticulationJointCore.cpp */; }; + FFFF3c1beb707ff03c1beb70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1beb707ff03c1beb70 /* ScArticulationJointSim.cpp */; }; + FFFF3c1bebd87ff03c1bebd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bebd87ff03c1bebd8 /* ScArticulationSim.cpp */; }; + FFFF3c1bec407ff03c1bec40 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bec407ff03c1bec40 /* ScBodyCore.cpp */; }; + FFFF3c1beca87ff03c1beca8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1beca87ff03c1beca8 /* ScBodyCoreKinematic.cpp */; }; + FFFF3c1bed107ff03c1bed10 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bed107ff03c1bed10 /* ScBodySim.cpp */; }; + FFFF3c1bed787ff03c1bed78 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bed787ff03c1bed78 /* ScConstraintCore.cpp */; }; + FFFF3c1bede07ff03c1bede0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bede07ff03c1bede0 /* ScConstraintGroupNode.cpp */; }; + FFFF3c1bee487ff03c1bee48 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bee487ff03c1bee48 /* ScConstraintInteraction.cpp */; }; + FFFF3c1beeb07ff03c1beeb0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1beeb07ff03c1beeb0 /* ScConstraintProjectionManager.cpp */; }; + FFFF3c1bef187ff03c1bef18 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bef187ff03c1bef18 /* ScConstraintProjectionTree.cpp */; }; + FFFF3c1bef807ff03c1bef80 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bef807ff03c1bef80 /* ScConstraintSim.cpp */; }; + FFFF3c1befe87ff03c1befe8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1befe87ff03c1befe8 /* ScElementInteractionMarker.cpp */; }; + FFFF3c1bf0507ff03c1bf050 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf0507ff03c1bf050 /* ScElementSim.cpp */; }; + FFFF3c1bf0b87ff03c1bf0b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf0b87ff03c1bf0b8 /* ScInteraction.cpp */; }; + FFFF3c1bf1207ff03c1bf120 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf1207ff03c1bf120 /* ScIterators.cpp */; }; + FFFF3c1bf1887ff03c1bf188 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf1887ff03c1bf188 /* ScMaterialCore.cpp */; }; + FFFF3c1bf1f07ff03c1bf1f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf1f07ff03c1bf1f0 /* ScMetaData.cpp */; }; + FFFF3c1bf2587ff03c1bf258 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf2587ff03c1bf258 /* ScNPhaseCore.cpp */; }; + FFFF3c1bf2c07ff03c1bf2c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf2c07ff03c1bf2c0 /* ScPhysics.cpp */; }; + FFFF3c1bf3287ff03c1bf328 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf3287ff03c1bf328 /* ScRigidCore.cpp */; }; + FFFF3c1bf3907ff03c1bf390 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf3907ff03c1bf390 /* ScRigidSim.cpp */; }; + FFFF3c1bf3f87ff03c1bf3f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf3f87ff03c1bf3f8 /* ScScene.cpp */; }; + FFFF3c1bf4607ff03c1bf460 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf4607ff03c1bf460 /* ScShapeCore.cpp */; }; + FFFF3c1bf4c87ff03c1bf4c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf4c87ff03c1bf4c8 /* ScShapeInteraction.cpp */; }; + FFFF3c1bf5307ff03c1bf530 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf5307ff03c1bf530 /* ScShapeSim.cpp */; }; + FFFF3c1bf5987ff03c1bf598 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf5987ff03c1bf598 /* ScSimStats.cpp */; }; + FFFF3c1bf6007ff03c1bf600 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf6007ff03c1bf600 /* ScSimulationController.cpp */; }; + FFFF3c1bf6687ff03c1bf668 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf6687ff03c1bf668 /* ScSqBoundsManager.cpp */; }; + FFFF3c1bf6d07ff03c1bf6d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf6d07ff03c1bf6d0 /* ScStaticCore.cpp */; }; + FFFF3c1bf7387ff03c1bf738 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf7387ff03c1bf738 /* ScStaticSim.cpp */; }; + FFFF3c1bf7a07ff03c1bf7a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf7a07ff03c1bf7a0 /* ScTriggerInteraction.cpp */; }; + FFFF3c1bf9407ff03c1bf940 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf9407ff03c1bf940 /* particles/ScParticleBodyInteraction.cpp */; }; + FFFF3c1bf9a87ff03c1bf9a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bf9a87ff03c1bf9a8 /* particles/ScParticlePacketShape.cpp */; }; + FFFF3c1bfa107ff03c1bfa10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bfa107ff03c1bfa10 /* particles/ScParticleSystemCore.cpp */; }; + FFFF3c1bfa787ff03c1bfa78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bfa787ff03c1bfa78 /* particles/ScParticleSystemSim.cpp */; }; + FFFF3c1bfbb07ff03c1bfbb0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bfbb07ff03c1bfbb0 /* cloth/ScClothCore.cpp */; }; + FFFF3c1bfc187ff03c1bfc18 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bfc187ff03c1bfc18 /* cloth/ScClothFabricCore.cpp */; }; + FFFF3c1bfc807ff03c1bfc80 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bfc807ff03c1bfc80 /* cloth/ScClothShape.cpp */; }; + FFFF3c1bfce87ff03c1bfce8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1bfce87ff03c1bfce8 /* cloth/ScClothSim.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b84c1707f8c5b84c170 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5b04c0007f8c5b04c000 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04c0687f8c5b04c068 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04c0d07f8c5b04c0d0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04c1387f8c5b04c138 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04c1a07f8c5b04c1a0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04c2087f8c5b04c208 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04c2707f8c5b04c270 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04c2d87f8c5b04c2d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04c3407f8c5b04c340 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04c3a87f8c5b04c3a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04c4107f8c5b04c410 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04c4787f8c5b04c478 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04c4e07f8c5b04c4e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04c5487f8c5b04c548 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04c5b07f8c5b04c5b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f2007f8c5b04f200 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f2687f8c5b04f268 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f2d07f8c5b04f2d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f3387f8c5b04f338 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f3a07f8c5b04f3a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f4087f8c5b04f408 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f4707f8c5b04f470 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f4d87f8c5b04f4d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f5407f8c5b04f540 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f5a87f8c5b04f5a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f6107f8c5b04f610 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f6787f8c5b04f678 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f6e07f8c5b04f6e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f7487f8c5b04f748 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f7b07f8c5b04f7b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f8187f8c5b04f818 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f8807f8c5b04f880 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f8e87f8c5b04f8e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f9507f8c5b04f950 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04f9b87f8c5b04f9b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04fa207f8c5b04fa20 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04fa887f8c5b04fa88 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04faf07f8c5b04faf0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04fb587f8c5b04fb58 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04fbc07f8c5b04fbc0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04fc287f8c5b04fc28 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04fc907f8c5b04fc90 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04fcf87f8c5b04fcf8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04fd607f8c5b04fd60 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04fdc87f8c5b04fdc8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04fe307f8c5b04fe30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04fe987f8c5b04fe98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04ff007f8c5b04ff00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04ff687f8c5b04ff68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b04ffd07f8c5b04ffd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0500387f8c5b050038 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0500a07f8c5b0500a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0501087f8c5b050108 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0501707f8c5b050170 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0501d87f8c5b0501d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0502407f8c5b050240 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0502a87f8c5b0502a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0503107f8c5b050310 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0503787f8c5b050378 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0503e07f8c5b0503e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0504487f8c5b050448 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0504b07f8c5b0504b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0505187f8c5b050518 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0505807f8c5b050580 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0505e87f8c5b0505e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0506507f8c5b050650 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0506b87f8c5b0506b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0507207f8c5b050720 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0507887f8c5b050788 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0507f07f8c5b0507f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0508587f8c5b050858 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0508c07f8c5b0508c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0509287f8c5b050928 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0509907f8c5b050990 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0509f87f8c5b0509f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b050a607f8c5b050a60 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b050ac87f8c5b050ac8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b050b307f8c5b050b30 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b050b987f8c5b050b98 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b050c007f8c5b050c00 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b050c687f8c5b050c68 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b050cd07f8c5b050cd0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b050d387f8c5b050d38 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b050da07f8c5b050da0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b050e087f8c5b050e08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b050e707f8c5b050e70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b050ed87f8c5b050ed8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b050f407f8c5b050f40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b050fa87f8c5b050fa8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0510107f8c5b051010 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0510787f8c5b051078 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0510e07f8c5b0510e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0511487f8c5b051148 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0511b07f8c5b0511b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0512187f8c5b051218 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0512807f8c5b051280 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0512e87f8c5b0512e8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b951b307ff03b951b30 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3c84d6007ff03c84d600 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84d6687ff03c84d668 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84d6d07ff03c84d6d0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84d7387ff03c84d738 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84d7a07ff03c84d7a0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84d8087ff03c84d808 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84d8707ff03c84d870 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84d8d87ff03c84d8d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84d9407ff03c84d940 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84d9a87ff03c84d9a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84da107ff03c84da10 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84da787ff03c84da78 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84dae07ff03c84dae0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84db487ff03c84db48 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c84dbb07ff03c84dbb0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bdc007ff03c1bdc00 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bdc687ff03c1bdc68 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bdcd07ff03c1bdcd0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bdd387ff03c1bdd38 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bdda07ff03c1bdda0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bde087ff03c1bde08 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bde707ff03c1bde70 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bded87ff03c1bded8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bdf407ff03c1bdf40 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bdfa87ff03c1bdfa8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be0107ff03c1be010 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be0787ff03c1be078 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be0e07ff03c1be0e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be1487ff03c1be148 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be1b07ff03c1be1b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be2187ff03c1be218 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be2807ff03c1be280 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be2e87ff03c1be2e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be3507ff03c1be350 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be3b87ff03c1be3b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be4207ff03c1be420 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be4887ff03c1be488 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be4f07ff03c1be4f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be5587ff03c1be558 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be5c07ff03c1be5c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be6287ff03c1be628 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be6907ff03c1be690 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be6f87ff03c1be6f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be7607ff03c1be760 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be7c87ff03c1be7c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be8307ff03c1be830 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be8987ff03c1be898 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be9007ff03c1be900 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be9687ff03c1be968 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1be9d07ff03c1be9d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bea387ff03c1bea38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1beaa07ff03c1beaa0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1beb087ff03c1beb08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1beb707ff03c1beb70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bebd87ff03c1bebd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bec407ff03c1bec40 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1beca87ff03c1beca8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bed107ff03c1bed10 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bed787ff03c1bed78 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bede07ff03c1bede0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bee487ff03c1bee48 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1beeb07ff03c1beeb0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bef187ff03c1bef18 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bef807ff03c1bef80 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1befe87ff03c1befe8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf0507ff03c1bf050 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf0b87ff03c1bf0b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf1207ff03c1bf120 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf1887ff03c1bf188 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf1f07ff03c1bf1f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf2587ff03c1bf258 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf2c07ff03c1bf2c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf3287ff03c1bf328 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf3907ff03c1bf390 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf3f87ff03c1bf3f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf4607ff03c1bf460 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf4c87ff03c1bf4c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf5307ff03c1bf530 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf5987ff03c1bf598 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf6007ff03c1bf600 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf6687ff03c1bf668 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf6d07ff03c1bf6d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf7387ff03c1bf738 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf7a07ff03c1bf7a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf8087ff03c1bf808 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf8707ff03c1bf870 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf8d87ff03c1bf8d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf9407ff03c1bf940 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bf9a87ff03c1bf9a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bfa107ff03c1bfa10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bfa787ff03c1bfa78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bfae07ff03c1bfae0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bfb487ff03c1bfb48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bfbb07ff03c1bfbb0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bfc187ff03c1bfc18 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bfc807ff03c1bfc80 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1bfce87ff03c1bfce8 /* 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 */ - FFF25b84c1707f8c5b84c170 /* Resources */ = { + FFF23b951b307ff03b951b30 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1131,7 +1131,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b84c1707f8c5b84c170 /* Frameworks */ = { + FFFC3b951b307ff03b951b30 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1141,53 +1141,53 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b84c1707f8c5b84c170 /* Sources */ = { + FFF83b951b307ff03b951b30 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5b04ffd07f8c5b04ffd0, - FFFF5b0500387f8c5b050038, - FFFF5b0500a07f8c5b0500a0, - FFFF5b0501087f8c5b050108, - FFFF5b0501707f8c5b050170, - FFFF5b0501d87f8c5b0501d8, - FFFF5b0502407f8c5b050240, - FFFF5b0502a87f8c5b0502a8, - FFFF5b0503107f8c5b050310, - FFFF5b0503787f8c5b050378, - FFFF5b0503e07f8c5b0503e0, - FFFF5b0504487f8c5b050448, - FFFF5b0504b07f8c5b0504b0, - FFFF5b0505187f8c5b050518, - FFFF5b0505807f8c5b050580, - FFFF5b0505e87f8c5b0505e8, - FFFF5b0506507f8c5b050650, - FFFF5b0506b87f8c5b0506b8, - FFFF5b0507207f8c5b050720, - FFFF5b0507887f8c5b050788, - FFFF5b0507f07f8c5b0507f0, - FFFF5b0508587f8c5b050858, - FFFF5b0508c07f8c5b0508c0, - FFFF5b0509287f8c5b050928, - FFFF5b0509907f8c5b050990, - FFFF5b0509f87f8c5b0509f8, - FFFF5b050a607f8c5b050a60, - FFFF5b050ac87f8c5b050ac8, - FFFF5b050b307f8c5b050b30, - FFFF5b050b987f8c5b050b98, - FFFF5b050c007f8c5b050c00, - FFFF5b050c687f8c5b050c68, - FFFF5b050cd07f8c5b050cd0, - FFFF5b050d387f8c5b050d38, - FFFF5b050da07f8c5b050da0, - FFFF5b050f407f8c5b050f40, - FFFF5b050fa87f8c5b050fa8, - FFFF5b0510107f8c5b051010, - FFFF5b0510787f8c5b051078, - FFFF5b0511b07f8c5b0511b0, - FFFF5b0512187f8c5b051218, - FFFF5b0512807f8c5b051280, - FFFF5b0512e87f8c5b0512e8, + FFFF3c1be9d07ff03c1be9d0, + FFFF3c1bea387ff03c1bea38, + FFFF3c1beaa07ff03c1beaa0, + FFFF3c1beb087ff03c1beb08, + FFFF3c1beb707ff03c1beb70, + FFFF3c1bebd87ff03c1bebd8, + FFFF3c1bec407ff03c1bec40, + FFFF3c1beca87ff03c1beca8, + FFFF3c1bed107ff03c1bed10, + FFFF3c1bed787ff03c1bed78, + FFFF3c1bede07ff03c1bede0, + FFFF3c1bee487ff03c1bee48, + FFFF3c1beeb07ff03c1beeb0, + FFFF3c1bef187ff03c1bef18, + FFFF3c1bef807ff03c1bef80, + FFFF3c1befe87ff03c1befe8, + FFFF3c1bf0507ff03c1bf050, + FFFF3c1bf0b87ff03c1bf0b8, + FFFF3c1bf1207ff03c1bf120, + FFFF3c1bf1887ff03c1bf188, + FFFF3c1bf1f07ff03c1bf1f0, + FFFF3c1bf2587ff03c1bf258, + FFFF3c1bf2c07ff03c1bf2c0, + FFFF3c1bf3287ff03c1bf328, + FFFF3c1bf3907ff03c1bf390, + FFFF3c1bf3f87ff03c1bf3f8, + FFFF3c1bf4607ff03c1bf460, + FFFF3c1bf4c87ff03c1bf4c8, + FFFF3c1bf5307ff03c1bf530, + FFFF3c1bf5987ff03c1bf598, + FFFF3c1bf6007ff03c1bf600, + FFFF3c1bf6687ff03c1bf668, + FFFF3c1bf6d07ff03c1bf6d0, + FFFF3c1bf7387ff03c1bf738, + FFFF3c1bf7a07ff03c1bf7a0, + FFFF3c1bf9407ff03c1bf940, + FFFF3c1bf9a87ff03c1bf9a8, + FFFF3c1bfa107ff03c1bfa10, + FFFF3c1bfa787ff03c1bfa78, + FFFF3c1bfbb07ff03c1bfbb0, + FFFF3c1bfc187ff03c1bfc18, + FFFF3c1bfc807ff03c1bfc80, + FFFF3c1bfce87ff03c1bfce8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1199,80 +1199,80 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCooking */ - FFFF5b8563807f8c5b856380 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5b836b207f8c5b836b20 /* PhysXExtensions */; }; - FFFF5b0534007f8c5b053400 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0534007f8c5b053400 /* Adjacencies.cpp */; }; - FFFF5b0534687f8c5b053468 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0534687f8c5b053468 /* Cooking.cpp */; }; - FFFF5b0534d07f8c5b0534d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0534d07f8c5b0534d0 /* CookingUtils.cpp */; }; - FFFF5b0535387f8c5b053538 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0535387f8c5b053538 /* EdgeList.cpp */; }; - FFFF5b0535a07f8c5b0535a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0535a07f8c5b0535a0 /* MeshCleaner.cpp */; }; - FFFF5b0536087f8c5b053608 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0536087f8c5b053608 /* Quantizer.cpp */; }; - FFFF5b0538e07f8c5b0538e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0538e07f8c5b0538e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; - FFFF5b0539487f8c5b053948 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0539487f8c5b053948 /* mesh/HeightFieldCooking.cpp */; }; - FFFF5b0539b07f8c5b0539b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0539b07f8c5b0539b0 /* mesh/RTreeCooking.cpp */; }; - FFFF5b053a187f8c5b053a18 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b053a187f8c5b053a18 /* mesh/TriangleMeshBuilder.cpp */; }; - FFFF5b053c887f8c5b053c88 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b053c887f8c5b053c88 /* convex/BigConvexDataBuilder.cpp */; }; - FFFF5b053cf07f8c5b053cf0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b053cf07f8c5b053cf0 /* convex/ConvexHullBuilder.cpp */; }; - FFFF5b053d587f8c5b053d58 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b053d587f8c5b053d58 /* convex/ConvexHullLib.cpp */; }; - FFFF5b053dc07f8c5b053dc0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b053dc07f8c5b053dc0 /* convex/ConvexHullUtils.cpp */; }; - FFFF5b053e287f8c5b053e28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b053e287f8c5b053e28 /* convex/ConvexMeshBuilder.cpp */; }; - FFFF5b053e907f8c5b053e90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b053e907f8c5b053e90 /* convex/ConvexPolygonsBuilder.cpp */; }; - FFFF5b053ef87f8c5b053ef8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b053ef87f8c5b053ef8 /* convex/InflationConvexHullLib.cpp */; }; - FFFF5b053f607f8c5b053f60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b053f607f8c5b053f60 /* convex/QuickHullConvexHullLib.cpp */; }; - FFFF5b053fc87f8c5b053fc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b053fc87f8c5b053fc8 /* convex/VolumeIntegration.cpp */; }; + FFFF3dbe4f507ff03dbe4f50 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD3b9a54207ff03b9a5420 /* PhysXExtensions */; }; + FFFF3c1c5e007ff03c1c5e00 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c5e007ff03c1c5e00 /* Adjacencies.cpp */; }; + FFFF3c1c5e687ff03c1c5e68 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c5e687ff03c1c5e68 /* Cooking.cpp */; }; + FFFF3c1c5ed07ff03c1c5ed0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c5ed07ff03c1c5ed0 /* CookingUtils.cpp */; }; + FFFF3c1c5f387ff03c1c5f38 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c5f387ff03c1c5f38 /* EdgeList.cpp */; }; + FFFF3c1c5fa07ff03c1c5fa0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c5fa07ff03c1c5fa0 /* MeshCleaner.cpp */; }; + FFFF3c1c60087ff03c1c6008 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c60087ff03c1c6008 /* Quantizer.cpp */; }; + FFFF3c1c62e07ff03c1c62e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c62e07ff03c1c62e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; + FFFF3c1c63487ff03c1c6348 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c63487ff03c1c6348 /* mesh/HeightFieldCooking.cpp */; }; + FFFF3c1c63b07ff03c1c63b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c63b07ff03c1c63b0 /* mesh/RTreeCooking.cpp */; }; + FFFF3c1c64187ff03c1c6418 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c64187ff03c1c6418 /* mesh/TriangleMeshBuilder.cpp */; }; + FFFF3c1c66887ff03c1c6688 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c66887ff03c1c6688 /* convex/BigConvexDataBuilder.cpp */; }; + FFFF3c1c66f07ff03c1c66f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c66f07ff03c1c66f0 /* convex/ConvexHullBuilder.cpp */; }; + FFFF3c1c67587ff03c1c6758 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c67587ff03c1c6758 /* convex/ConvexHullLib.cpp */; }; + FFFF3c1c67c07ff03c1c67c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c67c07ff03c1c67c0 /* convex/ConvexHullUtils.cpp */; }; + FFFF3c1c68287ff03c1c6828 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c68287ff03c1c6828 /* convex/ConvexMeshBuilder.cpp */; }; + FFFF3c1c68907ff03c1c6890 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c68907ff03c1c6890 /* convex/ConvexPolygonsBuilder.cpp */; }; + FFFF3c1c68f87ff03c1c68f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c68f87ff03c1c68f8 /* convex/InflationConvexHullLib.cpp */; }; + FFFF3c1c69607ff03c1c6960 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c69607ff03c1c6960 /* convex/QuickHullConvexHullLib.cpp */; }; + FFFF3c1c69c87ff03c1c69c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c1c69c87ff03c1c69c8 /* convex/VolumeIntegration.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b8507d07f8c5b8507d0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5b85aa807f8c5b85aa80 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b85aae87f8c5b85aae8 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b85ab507f8c5b85ab50 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b85abb87f8c5b85abb8 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b85ac207f8c5b85ac20 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b85ac887f8c5b85ac88 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b85acf07f8c5b85acf0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0534007f8c5b053400 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0534687f8c5b053468 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0534d07f8c5b0534d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0535387f8c5b053538 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0535a07f8c5b0535a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0536087f8c5b053608 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0536707f8c5b053670 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0536d87f8c5b0536d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0537407f8c5b053740 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0537a87f8c5b0537a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0538107f8c5b053810 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0538787f8c5b053878 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0538e07f8c5b0538e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0539487f8c5b053948 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0539b07f8c5b0539b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b053a187f8c5b053a18 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b053a807f8c5b053a80 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b053ae87f8c5b053ae8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b053b507f8c5b053b50 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b053bb87f8c5b053bb8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b053c207f8c5b053c20 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b053c887f8c5b053c88 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b053cf07f8c5b053cf0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b053d587f8c5b053d58 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b053dc07f8c5b053dc0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b053e287f8c5b053e28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b053e907f8c5b053e90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b053ef87f8c5b053ef8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b053f607f8c5b053f60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b053fc87f8c5b053fc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0540307f8c5b054030 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0540987f8c5b054098 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0541007f8c5b054100 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0541687f8c5b054168 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0541d07f8c5b0541d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0542387f8c5b054238 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0542a07f8c5b0542a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0543087f8c5b054308 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b0543707f8c5b054370 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; + FFFD3dbe48807ff03dbe4880 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3dbe76e07ff03dbe76e0 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3dbe77487ff03dbe7748 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3dbe77b07ff03dbe77b0 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3dbe78187ff03dbe7818 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD3dbe78807ff03dbe7880 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3dbe78e87ff03dbe78e8 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3dbe79507ff03dbe7950 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c5e007ff03c1c5e00 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c5e687ff03c1c5e68 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c5ed07ff03c1c5ed0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c5f387ff03c1c5f38 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c5fa07ff03c1c5fa0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c60087ff03c1c6008 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c60707ff03c1c6070 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c60d87ff03c1c60d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c61407ff03c1c6140 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c61a87ff03c1c61a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c62107ff03c1c6210 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c62787ff03c1c6278 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c62e07ff03c1c62e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c63487ff03c1c6348 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c63b07ff03c1c63b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c64187ff03c1c6418 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c64807ff03c1c6480 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c64e87ff03c1c64e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c65507ff03c1c6550 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c65b87ff03c1c65b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c66207ff03c1c6620 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c66887ff03c1c6688 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c66f07ff03c1c66f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c67587ff03c1c6758 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c67c07ff03c1c67c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c68287ff03c1c6828 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c68907ff03c1c6890 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c68f87ff03c1c68f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c69607ff03c1c6960 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c69c87ff03c1c69c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c6a307ff03c1c6a30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c6a987ff03c1c6a98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c6b007ff03c1c6b00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c6b687ff03c1c6b68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c6bd07ff03c1c6bd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c6c387ff03c1c6c38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c6ca07ff03c1c6ca0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c6d087ff03c1c6d08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1c6d707ff03c1c6d70 /* 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 */ - FFF25b8507d07f8c5b8507d0 /* Resources */ = { + FFF23dbe48807ff03dbe4880 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1282,7 +1282,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b8507d07f8c5b8507d0 /* Frameworks */ = { + FFFC3dbe48807ff03dbe4880 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1292,29 +1292,29 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b8507d07f8c5b8507d0 /* Sources */ = { + FFF83dbe48807ff03dbe4880 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5b0534007f8c5b053400, - FFFF5b0534687f8c5b053468, - FFFF5b0534d07f8c5b0534d0, - FFFF5b0535387f8c5b053538, - FFFF5b0535a07f8c5b0535a0, - FFFF5b0536087f8c5b053608, - FFFF5b0538e07f8c5b0538e0, - FFFF5b0539487f8c5b053948, - FFFF5b0539b07f8c5b0539b0, - FFFF5b053a187f8c5b053a18, - FFFF5b053c887f8c5b053c88, - FFFF5b053cf07f8c5b053cf0, - FFFF5b053d587f8c5b053d58, - FFFF5b053dc07f8c5b053dc0, - FFFF5b053e287f8c5b053e28, - FFFF5b053e907f8c5b053e90, - FFFF5b053ef87f8c5b053ef8, - FFFF5b053f607f8c5b053f60, - FFFF5b053fc87f8c5b053fc8, + FFFF3c1c5e007ff03c1c5e00, + FFFF3c1c5e687ff03c1c5e68, + FFFF3c1c5ed07ff03c1c5ed0, + FFFF3c1c5f387ff03c1c5f38, + FFFF3c1c5fa07ff03c1c5fa0, + FFFF3c1c60087ff03c1c6008, + FFFF3c1c62e07ff03c1c62e0, + FFFF3c1c63487ff03c1c6348, + FFFF3c1c63b07ff03c1c63b0, + FFFF3c1c64187ff03c1c6418, + FFFF3c1c66887ff03c1c6688, + FFFF3c1c66f07ff03c1c66f0, + FFFF3c1c67587ff03c1c6758, + FFFF3c1c67c07ff03c1c67c0, + FFFF3c1c68287ff03c1c6828, + FFFF3c1c68907ff03c1c6890, + FFFF3c1c68f87ff03c1c68f8, + FFFF3c1c69607ff03c1c6960, + FFFF3c1c69c87ff03c1c69c8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1323,515 +1323,515 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF45b85b3f07f8c5b85b3f0 /* PBXTargetDependency */ = { + FFF43dbe86907ff03dbe8690 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA59c183f07f8c59c183f0 /* PhysXCommon */; - targetProxy = FFF559c183f07f8c59c183f0 /* PBXContainerItemProxy */; + target = FFFA3ba4add07ff03ba4add0 /* PhysXCommon */; + targetProxy = FFF53ba4add07ff03ba4add0 /* PBXContainerItemProxy */; }; - FFF45b8563807f8c5b856380 /* PBXTargetDependency */ = { + FFF43dbe4f507ff03dbe4f50 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA5b836b207f8c5b836b20 /* PhysXExtensions */; - targetProxy = FFF55b836b207f8c5b836b20 /* PBXContainerItemProxy */; + target = FFFA3b9a54207ff03b9a5420 /* PhysXExtensions */; + targetProxy = FFF53b9a54207ff03b9a5420 /* PBXContainerItemProxy */; }; - FFF45b8568607f8c5b856860 /* PBXTargetDependency */ = { + FFF43dbe42407ff03dbe4240 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA59c114307f8c59c11430 /* PxFoundation */; - targetProxy = FFF559c114307f8c59c11430 /* PBXContainerItemProxy */; + target = FFFA3ba5cc607ff03ba5cc60 /* PxFoundation */; + targetProxy = FFF53ba5cc607ff03ba5cc60 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCommon */ - FFFF5a023e007f8c5a023e00 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a023e007f8c5a023e00 /* src/CmBoxPruning.cpp */; }; - FFFF5a023e687f8c5a023e68 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a023e687f8c5a023e68 /* src/CmCollection.cpp */; }; - FFFF5a023ed07f8c5a023ed0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a023ed07f8c5a023ed0 /* src/CmMathUtils.cpp */; }; - FFFF5a023f387f8c5a023f38 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a023f387f8c5a023f38 /* src/CmPtrTable.cpp */; }; - FFFF5a023fa07f8c5a023fa0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a023fa07f8c5a023fa0 /* src/CmRadixSort.cpp */; }; - FFFF5a0240087f8c5a024008 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a0240087f8c5a024008 /* src/CmRadixSortBuffered.cpp */; }; - FFFF5a0240707f8c5a024070 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a0240707f8c5a024070 /* src/CmRenderOutput.cpp */; }; - FFFF5a0240d87f8c5a0240d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5a0240d87f8c5a0240d8 /* src/CmVisualization.cpp */; }; - FFFF5a8013a87f8c5a8013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8013a87f8c5a8013a8 /* ../../Include/GeomUtils */; }; - FFFF5a8048e07f8c5a8048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8048e07f8c5a8048e0 /* src/GuBounds.cpp */; }; - FFFF5a8049487f8c5a804948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8049487f8c5a804948 /* src/GuBox.cpp */; }; - FFFF5a8049b07f8c5a8049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8049b07f8c5a8049b0 /* src/GuCCTSweepTests.cpp */; }; - FFFF5a804a187f8c5a804a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a804a187f8c5a804a18 /* src/GuCapsule.cpp */; }; - FFFF5a804a807f8c5a804a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a804a807f8c5a804a80 /* src/GuGeometryQuery.cpp */; }; - FFFF5a804ae87f8c5a804ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a804ae87f8c5a804ae8 /* src/GuGeometryUnion.cpp */; }; - FFFF5a804b507f8c5a804b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a804b507f8c5a804b50 /* src/GuInternal.cpp */; }; - FFFF5a804bb87f8c5a804bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a804bb87f8c5a804bb8 /* src/GuMTD.cpp */; }; - FFFF5a804c207f8c5a804c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a804c207f8c5a804c20 /* src/GuMeshFactory.cpp */; }; - FFFF5a804c887f8c5a804c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a804c887f8c5a804c88 /* src/GuMetaData.cpp */; }; - FFFF5a804cf07f8c5a804cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a804cf07f8c5a804cf0 /* src/GuOverlapTests.cpp */; }; - FFFF5a804d587f8c5a804d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a804d587f8c5a804d58 /* src/GuRaycastTests.cpp */; }; - FFFF5a804dc07f8c5a804dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a804dc07f8c5a804dc0 /* src/GuSerialize.cpp */; }; - FFFF5a804e287f8c5a804e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a804e287f8c5a804e28 /* src/GuSweepMTD.cpp */; }; - FFFF5a804e907f8c5a804e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a804e907f8c5a804e90 /* src/GuSweepSharedTests.cpp */; }; - FFFF5a804ef87f8c5a804ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a804ef87f8c5a804ef8 /* src/GuSweepTests.cpp */; }; - FFFF5a804f607f8c5a804f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a804f607f8c5a804f60 /* src/contact/GuContactBoxBox.cpp */; }; - FFFF5a804fc87f8c5a804fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a804fc87f8c5a804fc8 /* src/contact/GuContactCapsuleBox.cpp */; }; - FFFF5a8050307f8c5a805030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8050307f8c5a805030 /* src/contact/GuContactCapsuleCapsule.cpp */; }; - FFFF5a8050987f8c5a805098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8050987f8c5a805098 /* src/contact/GuContactCapsuleConvex.cpp */; }; - FFFF5a8051007f8c5a805100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8051007f8c5a805100 /* src/contact/GuContactCapsuleMesh.cpp */; }; - FFFF5a8051687f8c5a805168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8051687f8c5a805168 /* src/contact/GuContactConvexConvex.cpp */; }; - FFFF5a8051d07f8c5a8051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8051d07f8c5a8051d0 /* src/contact/GuContactConvexMesh.cpp */; }; - FFFF5a8052387f8c5a805238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8052387f8c5a805238 /* src/contact/GuContactPlaneBox.cpp */; }; - FFFF5a8052a07f8c5a8052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8052a07f8c5a8052a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; - FFFF5a8053087f8c5a805308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8053087f8c5a805308 /* src/contact/GuContactPlaneConvex.cpp */; }; - FFFF5a8053707f8c5a805370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8053707f8c5a805370 /* src/contact/GuContactPolygonPolygon.cpp */; }; - FFFF5a8053d87f8c5a8053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8053d87f8c5a8053d8 /* src/contact/GuContactSphereBox.cpp */; }; - FFFF5a8054407f8c5a805440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8054407f8c5a805440 /* src/contact/GuContactSphereCapsule.cpp */; }; - FFFF5a8054a87f8c5a8054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8054a87f8c5a8054a8 /* src/contact/GuContactSphereMesh.cpp */; }; - FFFF5a8055107f8c5a805510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8055107f8c5a805510 /* src/contact/GuContactSpherePlane.cpp */; }; - FFFF5a8055787f8c5a805578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8055787f8c5a805578 /* src/contact/GuContactSphereSphere.cpp */; }; - FFFF5a8055e07f8c5a8055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8055e07f8c5a8055e0 /* src/contact/GuFeatureCode.cpp */; }; - FFFF5a8056487f8c5a805648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8056487f8c5a805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; - FFFF5a8056b07f8c5a8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8056b07f8c5a8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; - FFFF5a8057187f8c5a805718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8057187f8c5a805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; - FFFF5a8057807f8c5a805780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8057807f8c5a805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; - FFFF5a8057e87f8c5a8057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8057e87f8c5a8057e8 /* src/common/GuBarycentricCoordinates.cpp */; }; - FFFF5a8058507f8c5a805850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8058507f8c5a805850 /* src/common/GuSeparatingAxes.cpp */; }; - FFFF5a8058b87f8c5a8058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8058b87f8c5a8058b8 /* src/convex/GuBigConvexData.cpp */; }; - FFFF5a8059207f8c5a805920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8059207f8c5a805920 /* src/convex/GuConvexHelper.cpp */; }; - FFFF5a8059887f8c5a805988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8059887f8c5a805988 /* src/convex/GuConvexMesh.cpp */; }; - FFFF5a8059f07f8c5a8059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8059f07f8c5a8059f0 /* src/convex/GuConvexSupportTable.cpp */; }; - FFFF5a805a587f8c5a805a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a805a587f8c5a805a58 /* src/convex/GuConvexUtilsInternal.cpp */; }; - FFFF5a805ac07f8c5a805ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a805ac07f8c5a805ac0 /* src/convex/GuHillClimbing.cpp */; }; - FFFF5a805b287f8c5a805b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a805b287f8c5a805b28 /* src/convex/GuShapeConvex.cpp */; }; - FFFF5a805b907f8c5a805b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a805b907f8c5a805b90 /* src/distance/GuDistancePointBox.cpp */; }; - FFFF5a805bf87f8c5a805bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a805bf87f8c5a805bf8 /* src/distance/GuDistancePointTriangle.cpp */; }; - FFFF5a805c607f8c5a805c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a805c607f8c5a805c60 /* src/distance/GuDistanceSegmentBox.cpp */; }; - FFFF5a805cc87f8c5a805cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a805cc87f8c5a805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; - FFFF5a805d307f8c5a805d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a805d307f8c5a805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; - FFFF5a805d987f8c5a805d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a805d987f8c5a805d98 /* src/sweep/GuSweepBoxBox.cpp */; }; - FFFF5a805e007f8c5a805e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a805e007f8c5a805e00 /* src/sweep/GuSweepBoxSphere.cpp */; }; - FFFF5a805e687f8c5a805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a805e687f8c5a805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; - FFFF5a805ed07f8c5a805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a805ed07f8c5a805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; - FFFF5a805f387f8c5a805f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a805f387f8c5a805f38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; - FFFF5a805fa07f8c5a805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a805fa07f8c5a805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; - FFFF5a8060087f8c5a806008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8060087f8c5a806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; - FFFF5a8060707f8c5a806070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8060707f8c5a806070 /* src/sweep/GuSweepSphereCapsule.cpp */; }; - FFFF5a8060d87f8c5a8060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8060d87f8c5a8060d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; - FFFF5a8061407f8c5a806140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8061407f8c5a806140 /* src/sweep/GuSweepSphereTriangle.cpp */; }; - FFFF5a8061a87f8c5a8061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8061a87f8c5a8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; - FFFF5a8062107f8c5a806210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8062107f8c5a806210 /* src/gjk/GuEPA.cpp */; }; - FFFF5a8062787f8c5a806278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8062787f8c5a806278 /* src/gjk/GuGJKSimplex.cpp */; }; - FFFF5a8062e07f8c5a8062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8062e07f8c5a8062e0 /* src/gjk/GuGJKTest.cpp */; }; - FFFF5a8063487f8c5a806348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8063487f8c5a806348 /* src/intersection/GuIntersectionBoxBox.cpp */; }; - FFFF5a8063b07f8c5a8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8063b07f8c5a8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; - FFFF5a8064187f8c5a806418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8064187f8c5a806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; - FFFF5a8064807f8c5a806480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8064807f8c5a806480 /* src/intersection/GuIntersectionRayBox.cpp */; }; - FFFF5a8064e87f8c5a8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8064e87f8c5a8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; - FFFF5a8065507f8c5a806550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8065507f8c5a806550 /* src/intersection/GuIntersectionRaySphere.cpp */; }; - FFFF5a8065b87f8c5a8065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8065b87f8c5a8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; - FFFF5a8066207f8c5a806620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8066207f8c5a806620 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; - FFFF5a8066887f8c5a806688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8066887f8c5a806688 /* src/mesh/GuBV32.cpp */; }; - FFFF5a8066f07f8c5a8066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8066f07f8c5a8066f0 /* src/mesh/GuBV32Build.cpp */; }; - FFFF5a8067587f8c5a806758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8067587f8c5a806758 /* src/mesh/GuBV4.cpp */; }; - FFFF5a8067c07f8c5a8067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8067c07f8c5a8067c0 /* src/mesh/GuBV4Build.cpp */; }; - FFFF5a8068287f8c5a806828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8068287f8c5a806828 /* src/mesh/GuBV4_AABBSweep.cpp */; }; - FFFF5a8068907f8c5a806890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8068907f8c5a806890 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; - FFFF5a8068f87f8c5a8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8068f87f8c5a8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; - FFFF5a8069607f8c5a806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8069607f8c5a806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; - FFFF5a8069c87f8c5a8069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8069c87f8c5a8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; - FFFF5a806a307f8c5a806a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a806a307f8c5a806a30 /* src/mesh/GuBV4_Raycast.cpp */; }; - FFFF5a806a987f8c5a806a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a806a987f8c5a806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; - FFFF5a806b007f8c5a806b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a806b007f8c5a806b00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; - FFFF5a806b687f8c5a806b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a806b687f8c5a806b68 /* src/mesh/GuMeshQuery.cpp */; }; - FFFF5a806bd07f8c5a806bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a806bd07f8c5a806bd0 /* src/mesh/GuMidphaseBV4.cpp */; }; - FFFF5a806c387f8c5a806c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a806c387f8c5a806c38 /* src/mesh/GuMidphaseRTree.cpp */; }; - FFFF5a806ca07f8c5a806ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a806ca07f8c5a806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; - FFFF5a806d087f8c5a806d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a806d087f8c5a806d08 /* src/mesh/GuRTree.cpp */; }; - FFFF5a806d707f8c5a806d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a806d707f8c5a806d70 /* src/mesh/GuRTreeQueries.cpp */; }; - FFFF5a806dd87f8c5a806dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a806dd87f8c5a806dd8 /* src/mesh/GuSweepsMesh.cpp */; }; - FFFF5a806e407f8c5a806e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a806e407f8c5a806e40 /* src/mesh/GuTriangleMesh.cpp */; }; - FFFF5a806ea87f8c5a806ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a806ea87f8c5a806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; - FFFF5a806f107f8c5a806f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a806f107f8c5a806f10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; - FFFF5a806f787f8c5a806f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a806f787f8c5a806f78 /* src/hf/GuHeightField.cpp */; }; - FFFF5a806fe07f8c5a806fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a806fe07f8c5a806fe0 /* src/hf/GuHeightFieldUtil.cpp */; }; - FFFF5a8070487f8c5a807048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8070487f8c5a807048 /* src/hf/GuOverlapTestsHF.cpp */; }; - FFFF5a8070b07f8c5a8070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8070b07f8c5a8070b0 /* src/hf/GuSweepsHF.cpp */; }; - FFFF5a8071187f8c5a807118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8071187f8c5a807118 /* src/pcm/GuPCMContactBoxBox.cpp */; }; - FFFF5a8071807f8c5a807180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8071807f8c5a807180 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; - FFFF5a8071e87f8c5a8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8071e87f8c5a8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; - FFFF5a8072507f8c5a807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8072507f8c5a807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; - FFFF5a8072b87f8c5a8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8072b87f8c5a8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; - FFFF5a8073207f8c5a807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8073207f8c5a807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; - FFFF5a8073887f8c5a807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8073887f8c5a807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; - FFFF5a8073f07f8c5a8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8073f07f8c5a8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; - FFFF5a8074587f8c5a807458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8074587f8c5a807458 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; - FFFF5a8074c07f8c5a8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8074c07f8c5a8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; - FFFF5a8075287f8c5a807528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8075287f8c5a807528 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; - FFFF5a8075907f8c5a807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8075907f8c5a807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; - FFFF5a8075f87f8c5a8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8075f87f8c5a8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; - FFFF5a8076607f8c5a807660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8076607f8c5a807660 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; - FFFF5a8076c87f8c5a8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8076c87f8c5a8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; - FFFF5a8077307f8c5a807730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8077307f8c5a807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; - FFFF5a8077987f8c5a807798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8077987f8c5a807798 /* src/pcm/GuPCMContactSphereBox.cpp */; }; - FFFF5a8078007f8c5a807800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8078007f8c5a807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; - FFFF5a8078687f8c5a807868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8078687f8c5a807868 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; - FFFF5a8078d07f8c5a8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8078d07f8c5a8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; - FFFF5a8079387f8c5a807938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8079387f8c5a807938 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; - FFFF5a8079a07f8c5a8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a8079a07f8c5a8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; - FFFF5a807a087f8c5a807a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a807a087f8c5a807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; - FFFF5a807a707f8c5a807a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a807a707f8c5a807a70 /* src/pcm/GuPCMShapeConvex.cpp */; }; - FFFF5a807ad87f8c5a807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a807ad87f8c5a807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; - FFFF5a807b407f8c5a807b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a807b407f8c5a807b40 /* src/pcm/GuPersistentContactManifold.cpp */; }; - FFFF5a807ba87f8c5a807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a807ba87f8c5a807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; - FFFF5a807c107f8c5a807c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5a807c107f8c5a807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; + FFFF3c183c007ff03c183c00 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c183c007ff03c183c00 /* src/CmBoxPruning.cpp */; }; + FFFF3c183c687ff03c183c68 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c183c687ff03c183c68 /* src/CmCollection.cpp */; }; + FFFF3c183cd07ff03c183cd0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c183cd07ff03c183cd0 /* src/CmMathUtils.cpp */; }; + FFFF3c183d387ff03c183d38 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c183d387ff03c183d38 /* src/CmPtrTable.cpp */; }; + FFFF3c183da07ff03c183da0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c183da07ff03c183da0 /* src/CmRadixSort.cpp */; }; + FFFF3c183e087ff03c183e08 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c183e087ff03c183e08 /* src/CmRadixSortBuffered.cpp */; }; + FFFF3c183e707ff03c183e70 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c183e707ff03c183e70 /* src/CmRenderOutput.cpp */; }; + FFFF3c183ed87ff03c183ed8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3c183ed87ff03c183ed8 /* src/CmVisualization.cpp */; }; + FFFF3c8013a87ff03c8013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8013a87ff03c8013a8 /* ../../Include/GeomUtils */; }; + FFFF3c8048e07ff03c8048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8048e07ff03c8048e0 /* src/GuBounds.cpp */; }; + FFFF3c8049487ff03c804948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8049487ff03c804948 /* src/GuBox.cpp */; }; + FFFF3c8049b07ff03c8049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8049b07ff03c8049b0 /* src/GuCCTSweepTests.cpp */; }; + FFFF3c804a187ff03c804a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c804a187ff03c804a18 /* src/GuCapsule.cpp */; }; + FFFF3c804a807ff03c804a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c804a807ff03c804a80 /* src/GuGeometryQuery.cpp */; }; + FFFF3c804ae87ff03c804ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c804ae87ff03c804ae8 /* src/GuGeometryUnion.cpp */; }; + FFFF3c804b507ff03c804b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c804b507ff03c804b50 /* src/GuInternal.cpp */; }; + FFFF3c804bb87ff03c804bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c804bb87ff03c804bb8 /* src/GuMTD.cpp */; }; + FFFF3c804c207ff03c804c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c804c207ff03c804c20 /* src/GuMeshFactory.cpp */; }; + FFFF3c804c887ff03c804c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c804c887ff03c804c88 /* src/GuMetaData.cpp */; }; + FFFF3c804cf07ff03c804cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c804cf07ff03c804cf0 /* src/GuOverlapTests.cpp */; }; + FFFF3c804d587ff03c804d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c804d587ff03c804d58 /* src/GuRaycastTests.cpp */; }; + FFFF3c804dc07ff03c804dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c804dc07ff03c804dc0 /* src/GuSerialize.cpp */; }; + FFFF3c804e287ff03c804e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c804e287ff03c804e28 /* src/GuSweepMTD.cpp */; }; + FFFF3c804e907ff03c804e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c804e907ff03c804e90 /* src/GuSweepSharedTests.cpp */; }; + FFFF3c804ef87ff03c804ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c804ef87ff03c804ef8 /* src/GuSweepTests.cpp */; }; + FFFF3c804f607ff03c804f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c804f607ff03c804f60 /* src/contact/GuContactBoxBox.cpp */; }; + FFFF3c804fc87ff03c804fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c804fc87ff03c804fc8 /* src/contact/GuContactCapsuleBox.cpp */; }; + FFFF3c8050307ff03c805030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8050307ff03c805030 /* src/contact/GuContactCapsuleCapsule.cpp */; }; + FFFF3c8050987ff03c805098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8050987ff03c805098 /* src/contact/GuContactCapsuleConvex.cpp */; }; + FFFF3c8051007ff03c805100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8051007ff03c805100 /* src/contact/GuContactCapsuleMesh.cpp */; }; + FFFF3c8051687ff03c805168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8051687ff03c805168 /* src/contact/GuContactConvexConvex.cpp */; }; + FFFF3c8051d07ff03c8051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8051d07ff03c8051d0 /* src/contact/GuContactConvexMesh.cpp */; }; + FFFF3c8052387ff03c805238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8052387ff03c805238 /* src/contact/GuContactPlaneBox.cpp */; }; + FFFF3c8052a07ff03c8052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8052a07ff03c8052a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; + FFFF3c8053087ff03c805308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8053087ff03c805308 /* src/contact/GuContactPlaneConvex.cpp */; }; + FFFF3c8053707ff03c805370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8053707ff03c805370 /* src/contact/GuContactPolygonPolygon.cpp */; }; + FFFF3c8053d87ff03c8053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8053d87ff03c8053d8 /* src/contact/GuContactSphereBox.cpp */; }; + FFFF3c8054407ff03c805440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8054407ff03c805440 /* src/contact/GuContactSphereCapsule.cpp */; }; + FFFF3c8054a87ff03c8054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8054a87ff03c8054a8 /* src/contact/GuContactSphereMesh.cpp */; }; + FFFF3c8055107ff03c805510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8055107ff03c805510 /* src/contact/GuContactSpherePlane.cpp */; }; + FFFF3c8055787ff03c805578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8055787ff03c805578 /* src/contact/GuContactSphereSphere.cpp */; }; + FFFF3c8055e07ff03c8055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8055e07ff03c8055e0 /* src/contact/GuFeatureCode.cpp */; }; + FFFF3c8056487ff03c805648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8056487ff03c805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; + FFFF3c8056b07ff03c8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8056b07ff03c8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; + FFFF3c8057187ff03c805718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8057187ff03c805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; + FFFF3c8057807ff03c805780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8057807ff03c805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; + FFFF3c8057e87ff03c8057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8057e87ff03c8057e8 /* src/common/GuBarycentricCoordinates.cpp */; }; + FFFF3c8058507ff03c805850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8058507ff03c805850 /* src/common/GuSeparatingAxes.cpp */; }; + FFFF3c8058b87ff03c8058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8058b87ff03c8058b8 /* src/convex/GuBigConvexData.cpp */; }; + FFFF3c8059207ff03c805920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8059207ff03c805920 /* src/convex/GuConvexHelper.cpp */; }; + FFFF3c8059887ff03c805988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8059887ff03c805988 /* src/convex/GuConvexMesh.cpp */; }; + FFFF3c8059f07ff03c8059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8059f07ff03c8059f0 /* src/convex/GuConvexSupportTable.cpp */; }; + FFFF3c805a587ff03c805a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c805a587ff03c805a58 /* src/convex/GuConvexUtilsInternal.cpp */; }; + FFFF3c805ac07ff03c805ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c805ac07ff03c805ac0 /* src/convex/GuHillClimbing.cpp */; }; + FFFF3c805b287ff03c805b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c805b287ff03c805b28 /* src/convex/GuShapeConvex.cpp */; }; + FFFF3c805b907ff03c805b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c805b907ff03c805b90 /* src/distance/GuDistancePointBox.cpp */; }; + FFFF3c805bf87ff03c805bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c805bf87ff03c805bf8 /* src/distance/GuDistancePointTriangle.cpp */; }; + FFFF3c805c607ff03c805c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c805c607ff03c805c60 /* src/distance/GuDistanceSegmentBox.cpp */; }; + FFFF3c805cc87ff03c805cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c805cc87ff03c805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; + FFFF3c805d307ff03c805d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c805d307ff03c805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; + FFFF3c805d987ff03c805d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c805d987ff03c805d98 /* src/sweep/GuSweepBoxBox.cpp */; }; + FFFF3c805e007ff03c805e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c805e007ff03c805e00 /* src/sweep/GuSweepBoxSphere.cpp */; }; + FFFF3c805e687ff03c805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c805e687ff03c805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; + FFFF3c805ed07ff03c805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c805ed07ff03c805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; + FFFF3c805f387ff03c805f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c805f387ff03c805f38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; + FFFF3c805fa07ff03c805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c805fa07ff03c805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; + FFFF3c8060087ff03c806008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8060087ff03c806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; + FFFF3c8060707ff03c806070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8060707ff03c806070 /* src/sweep/GuSweepSphereCapsule.cpp */; }; + FFFF3c8060d87ff03c8060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8060d87ff03c8060d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; + FFFF3c8061407ff03c806140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8061407ff03c806140 /* src/sweep/GuSweepSphereTriangle.cpp */; }; + FFFF3c8061a87ff03c8061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8061a87ff03c8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; + FFFF3c8062107ff03c806210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8062107ff03c806210 /* src/gjk/GuEPA.cpp */; }; + FFFF3c8062787ff03c806278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8062787ff03c806278 /* src/gjk/GuGJKSimplex.cpp */; }; + FFFF3c8062e07ff03c8062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8062e07ff03c8062e0 /* src/gjk/GuGJKTest.cpp */; }; + FFFF3c8063487ff03c806348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8063487ff03c806348 /* src/intersection/GuIntersectionBoxBox.cpp */; }; + FFFF3c8063b07ff03c8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8063b07ff03c8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; + FFFF3c8064187ff03c806418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8064187ff03c806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; + FFFF3c8064807ff03c806480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8064807ff03c806480 /* src/intersection/GuIntersectionRayBox.cpp */; }; + FFFF3c8064e87ff03c8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8064e87ff03c8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; + FFFF3c8065507ff03c806550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8065507ff03c806550 /* src/intersection/GuIntersectionRaySphere.cpp */; }; + FFFF3c8065b87ff03c8065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8065b87ff03c8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; + FFFF3c8066207ff03c806620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8066207ff03c806620 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; + FFFF3c8066887ff03c806688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8066887ff03c806688 /* src/mesh/GuBV32.cpp */; }; + FFFF3c8066f07ff03c8066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8066f07ff03c8066f0 /* src/mesh/GuBV32Build.cpp */; }; + FFFF3c8067587ff03c806758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8067587ff03c806758 /* src/mesh/GuBV4.cpp */; }; + FFFF3c8067c07ff03c8067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8067c07ff03c8067c0 /* src/mesh/GuBV4Build.cpp */; }; + FFFF3c8068287ff03c806828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8068287ff03c806828 /* src/mesh/GuBV4_AABBSweep.cpp */; }; + FFFF3c8068907ff03c806890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8068907ff03c806890 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; + FFFF3c8068f87ff03c8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8068f87ff03c8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; + FFFF3c8069607ff03c806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8069607ff03c806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; + FFFF3c8069c87ff03c8069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8069c87ff03c8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; + FFFF3c806a307ff03c806a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c806a307ff03c806a30 /* src/mesh/GuBV4_Raycast.cpp */; }; + FFFF3c806a987ff03c806a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c806a987ff03c806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; + FFFF3c806b007ff03c806b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c806b007ff03c806b00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; + FFFF3c806b687ff03c806b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c806b687ff03c806b68 /* src/mesh/GuMeshQuery.cpp */; }; + FFFF3c806bd07ff03c806bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c806bd07ff03c806bd0 /* src/mesh/GuMidphaseBV4.cpp */; }; + FFFF3c806c387ff03c806c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c806c387ff03c806c38 /* src/mesh/GuMidphaseRTree.cpp */; }; + FFFF3c806ca07ff03c806ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c806ca07ff03c806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; + FFFF3c806d087ff03c806d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c806d087ff03c806d08 /* src/mesh/GuRTree.cpp */; }; + FFFF3c806d707ff03c806d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c806d707ff03c806d70 /* src/mesh/GuRTreeQueries.cpp */; }; + FFFF3c806dd87ff03c806dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c806dd87ff03c806dd8 /* src/mesh/GuSweepsMesh.cpp */; }; + FFFF3c806e407ff03c806e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c806e407ff03c806e40 /* src/mesh/GuTriangleMesh.cpp */; }; + FFFF3c806ea87ff03c806ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c806ea87ff03c806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; + FFFF3c806f107ff03c806f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c806f107ff03c806f10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; + FFFF3c806f787ff03c806f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c806f787ff03c806f78 /* src/hf/GuHeightField.cpp */; }; + FFFF3c806fe07ff03c806fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c806fe07ff03c806fe0 /* src/hf/GuHeightFieldUtil.cpp */; }; + FFFF3c8070487ff03c807048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8070487ff03c807048 /* src/hf/GuOverlapTestsHF.cpp */; }; + FFFF3c8070b07ff03c8070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8070b07ff03c8070b0 /* src/hf/GuSweepsHF.cpp */; }; + FFFF3c8071187ff03c807118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8071187ff03c807118 /* src/pcm/GuPCMContactBoxBox.cpp */; }; + FFFF3c8071807ff03c807180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8071807ff03c807180 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; + FFFF3c8071e87ff03c8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8071e87ff03c8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; + FFFF3c8072507ff03c807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8072507ff03c807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; + FFFF3c8072b87ff03c8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8072b87ff03c8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; + FFFF3c8073207ff03c807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8073207ff03c807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; + FFFF3c8073887ff03c807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8073887ff03c807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; + FFFF3c8073f07ff03c8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8073f07ff03c8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; + FFFF3c8074587ff03c807458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8074587ff03c807458 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; + FFFF3c8074c07ff03c8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8074c07ff03c8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; + FFFF3c8075287ff03c807528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8075287ff03c807528 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; + FFFF3c8075907ff03c807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8075907ff03c807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; + FFFF3c8075f87ff03c8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8075f87ff03c8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; + FFFF3c8076607ff03c807660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8076607ff03c807660 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; + FFFF3c8076c87ff03c8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8076c87ff03c8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; + FFFF3c8077307ff03c807730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8077307ff03c807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; + FFFF3c8077987ff03c807798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8077987ff03c807798 /* src/pcm/GuPCMContactSphereBox.cpp */; }; + FFFF3c8078007ff03c807800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8078007ff03c807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; + FFFF3c8078687ff03c807868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8078687ff03c807868 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; + FFFF3c8078d07ff03c8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8078d07ff03c8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; + FFFF3c8079387ff03c807938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8079387ff03c807938 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; + FFFF3c8079a07ff03c8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c8079a07ff03c8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; + FFFF3c807a087ff03c807a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c807a087ff03c807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; + FFFF3c807a707ff03c807a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c807a707ff03c807a70 /* src/pcm/GuPCMShapeConvex.cpp */; }; + FFFF3c807ad87ff03c807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c807ad87ff03c807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; + FFFF3c807b407ff03c807b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c807b407ff03c807b40 /* src/pcm/GuPersistentContactManifold.cpp */; }; + FFFF3c807ba87ff03c807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c807ba87ff03c807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; + FFFF3c807c107ff03c807c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3c807c107ff03c807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD59c183f07f8c59c183f0 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5a80ec007f8c5a80ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80ec687f8c5a80ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80ecd07f8c5a80ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80ed387f8c5a80ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80eda07f8c5a80eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80ee087f8c5a80ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80ee707f8c5a80ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80eed87f8c5a80eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80ef407f8c5a80ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80efa87f8c5a80efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f0107f8c5a80f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f0787f8c5a80f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f0e07f8c5a80f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f1487f8c5a80f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f1b07f8c5a80f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f2187f8c5a80f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f2807f8c5a80f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f2e87f8c5a80f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f3507f8c5a80f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f3b87f8c5a80f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f4207f8c5a80f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f4887f8c5a80f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f4f07f8c5a80f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f5587f8c5a80f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f5c07f8c5a80f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f6287f8c5a80f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f6907f8c5a80f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f6f87f8c5a80f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f7607f8c5a80f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f7c87f8c5a80f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f8307f8c5a80f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f8987f8c5a80f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a80f9007f8c5a80f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a023e007f8c5a023e00 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a023e687f8c5a023e68 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a023ed07f8c5a023ed0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a023f387f8c5a023f38 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a023fa07f8c5a023fa0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a0240087f8c5a024008 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a0240707f8c5a024070 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a0240d87f8c5a0240d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a0241407f8c5a024140 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0241a87f8c5a0241a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0242107f8c5a024210 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0242787f8c5a024278 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0242e07f8c5a0242e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0243487f8c5a024348 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0243b07f8c5a0243b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0244187f8c5a024418 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0244807f8c5a024480 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0244e87f8c5a0244e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0245507f8c5a024550 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0245b87f8c5a0245b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0246207f8c5a024620 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0246887f8c5a024688 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0246f07f8c5a0246f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0247587f8c5a024758 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0247c07f8c5a0247c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0248287f8c5a024828 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0248907f8c5a024890 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0248f87f8c5a0248f8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0249607f8c5a024960 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a0249c87f8c5a0249c8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a024a307f8c5a024a30 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a024a987f8c5a024a98 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a024b007f8c5a024b00 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a024b687f8c5a024b68 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a024bd07f8c5a024bd0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a024c387f8c5a024c38 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8010007f8c5a801000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8010687f8c5a801068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8010d07f8c5a8010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8011387f8c5a801138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8011a07f8c5a8011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8012087f8c5a801208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8012707f8c5a801270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8012d87f8c5a8012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8013407f8c5a801340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8013a87f8c5a8013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; - FFFD5a8014107f8c5a801410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8014787f8c5a801478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8014e07f8c5a8014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8015487f8c5a801548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8015b07f8c5a8015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8016187f8c5a801618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8016807f8c5a801680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8016e87f8c5a8016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8017507f8c5a801750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8017b87f8c5a8017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8018207f8c5a801820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8018887f8c5a801888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8018f07f8c5a8018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8019587f8c5a801958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8019c07f8c5a8019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a801a287f8c5a801a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a801a907f8c5a801a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a801af87f8c5a801af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a801b607f8c5a801b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a801bc87f8c5a801bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a801c307f8c5a801c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a801c987f8c5a801c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a801d007f8c5a801d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a801d687f8c5a801d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a801dd07f8c5a801dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a801e387f8c5a801e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a801ea07f8c5a801ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a801f087f8c5a801f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a801f707f8c5a801f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a801fd87f8c5a801fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8020407f8c5a802040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8020a87f8c5a8020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8021107f8c5a802110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8021787f8c5a802178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8021e07f8c5a8021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8022487f8c5a802248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8022b07f8c5a8022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8023187f8c5a802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8023807f8c5a802380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8023e87f8c5a8023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8024507f8c5a802450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8024b87f8c5a8024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8025207f8c5a802520 /* 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; }; - FFFD5a8025887f8c5a802588 /* 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; }; - FFFD5a8025f07f8c5a8025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8026587f8c5a802658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8026c07f8c5a8026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8027287f8c5a802728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8027907f8c5a802790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8027f87f8c5a8027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8028607f8c5a802860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8028c87f8c5a8028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8029307f8c5a802930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8029987f8c5a802998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a802a007f8c5a802a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a802a687f8c5a802a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a802ad07f8c5a802ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a802b387f8c5a802b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a802ba07f8c5a802ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a802c087f8c5a802c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a802c707f8c5a802c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a802cd87f8c5a802cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a802d407f8c5a802d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a802da87f8c5a802da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a802e107f8c5a802e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a802e787f8c5a802e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a802ee07f8c5a802ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a802f487f8c5a802f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a802fb07f8c5a802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8030187f8c5a803018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8030807f8c5a803080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8030e87f8c5a8030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8031507f8c5a803150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8031b87f8c5a8031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8032207f8c5a803220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8032887f8c5a803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8032f07f8c5a8032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8033587f8c5a803358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8033c07f8c5a8033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8034287f8c5a803428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8034907f8c5a803490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8034f87f8c5a8034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8035607f8c5a803560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8035c87f8c5a8035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8036307f8c5a803630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8036987f8c5a803698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8037007f8c5a803700 /* 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; }; - FFFD5a8037687f8c5a803768 /* 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; }; - FFFD5a8037d07f8c5a8037d0 /* 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; }; - FFFD5a8038387f8c5a803838 /* 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; }; - FFFD5a8038a07f8c5a8038a0 /* 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; }; - FFFD5a8039087f8c5a803908 /* 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; }; - FFFD5a8039707f8c5a803970 /* 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; }; - FFFD5a8039d87f8c5a8039d8 /* 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; }; - FFFD5a803a407f8c5a803a40 /* 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; }; - FFFD5a803aa87f8c5a803aa8 /* 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; }; - FFFD5a803b107f8c5a803b10 /* 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; }; - FFFD5a803b787f8c5a803b78 /* 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; }; - FFFD5a803be07f8c5a803be0 /* 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; }; - FFFD5a803c487f8c5a803c48 /* 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; }; - FFFD5a803cb07f8c5a803cb0 /* 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; }; - FFFD5a803d187f8c5a803d18 /* 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; }; - FFFD5a803d807f8c5a803d80 /* 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; }; - FFFD5a803de87f8c5a803de8 /* 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; }; - FFFD5a803e507f8c5a803e50 /* 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; }; - FFFD5a803eb87f8c5a803eb8 /* 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; }; - FFFD5a803f207f8c5a803f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a803f887f8c5a803f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a803ff07f8c5a803ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8040587f8c5a804058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8040c07f8c5a8040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8041287f8c5a804128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8041907f8c5a804190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8041f87f8c5a8041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8042607f8c5a804260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8042c87f8c5a8042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8043307f8c5a804330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8043987f8c5a804398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8044007f8c5a804400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8044687f8c5a804468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8044d07f8c5a8044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8045387f8c5a804538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8045a07f8c5a8045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8046087f8c5a804608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8046707f8c5a804670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8046d87f8c5a8046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8047407f8c5a804740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8047a87f8c5a8047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8048107f8c5a804810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8048787f8c5a804878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8048e07f8c5a8048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8049487f8c5a804948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8049b07f8c5a8049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a804a187f8c5a804a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a804a807f8c5a804a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a804ae87f8c5a804ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a804b507f8c5a804b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a804bb87f8c5a804bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a804c207f8c5a804c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a804c887f8c5a804c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a804cf07f8c5a804cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a804d587f8c5a804d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a804dc07f8c5a804dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a804e287f8c5a804e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a804e907f8c5a804e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a804ef87f8c5a804ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a804f607f8c5a804f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a804fc87f8c5a804fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8050307f8c5a805030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8050987f8c5a805098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8051007f8c5a805100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8051687f8c5a805168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8051d07f8c5a8051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8052387f8c5a805238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8052a07f8c5a8052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8053087f8c5a805308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8053707f8c5a805370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8053d87f8c5a8053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8054407f8c5a805440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8054a87f8c5a8054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8055107f8c5a805510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8055787f8c5a805578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8055e07f8c5a8055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8056487f8c5a805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8056b07f8c5a8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8057187f8c5a805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8057807f8c5a805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8057e87f8c5a8057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8058507f8c5a805850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8058b87f8c5a8058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8059207f8c5a805920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8059887f8c5a805988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8059f07f8c5a8059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a805a587f8c5a805a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a805ac07f8c5a805ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a805b287f8c5a805b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a805b907f8c5a805b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a805bf87f8c5a805bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a805c607f8c5a805c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a805cc87f8c5a805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a805d307f8c5a805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a805d987f8c5a805d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a805e007f8c5a805e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a805e687f8c5a805e68 /* 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; }; - FFFD5a805ed07f8c5a805ed0 /* 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; }; - FFFD5a805f387f8c5a805f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a805fa07f8c5a805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8060087f8c5a806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8060707f8c5a806070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8060d87f8c5a8060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8061407f8c5a806140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8061a87f8c5a8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8062107f8c5a806210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8062787f8c5a806278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8062e07f8c5a8062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8063487f8c5a806348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8063b07f8c5a8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8064187f8c5a806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8064807f8c5a806480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8064e87f8c5a8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8065507f8c5a806550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8065b87f8c5a8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8066207f8c5a806620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8066887f8c5a806688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8066f07f8c5a8066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8067587f8c5a806758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8067c07f8c5a8067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8068287f8c5a806828 /* 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; }; - FFFD5a8068907f8c5a806890 /* 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; }; - FFFD5a8068f87f8c5a8068f8 /* 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; }; - FFFD5a8069607f8c5a806960 /* 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; }; - FFFD5a8069c87f8c5a8069c8 /* 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; }; - FFFD5a806a307f8c5a806a30 /* 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; }; - FFFD5a806a987f8c5a806a98 /* 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; }; - FFFD5a806b007f8c5a806b00 /* 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; }; - FFFD5a806b687f8c5a806b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a806bd07f8c5a806bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a806c387f8c5a806c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a806ca07f8c5a806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a806d087f8c5a806d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a806d707f8c5a806d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a806dd87f8c5a806dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a806e407f8c5a806e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a806ea87f8c5a806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a806f107f8c5a806f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a806f787f8c5a806f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a806fe07f8c5a806fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8070487f8c5a807048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8070b07f8c5a8070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8071187f8c5a807118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8071807f8c5a807180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8071e87f8c5a8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8072507f8c5a807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8072b87f8c5a8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8073207f8c5a807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8073887f8c5a807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8073f07f8c5a8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8074587f8c5a807458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8074c07f8c5a8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8075287f8c5a807528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8075907f8c5a807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8075f87f8c5a8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8076607f8c5a807660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8076c87f8c5a8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8077307f8c5a807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8077987f8c5a807798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8078007f8c5a807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8078687f8c5a807868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8078d07f8c5a8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8079387f8c5a807938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8079a07f8c5a8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a807a087f8c5a807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a807a707f8c5a807a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a807ad87f8c5a807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a807b407f8c5a807b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a807ba87f8c5a807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a807c107f8c5a807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3ba4add07ff03ba4add0 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3c80ec007ff03c80ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80ec687ff03c80ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80ecd07ff03c80ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80ed387ff03c80ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80eda07ff03c80eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80ee087ff03c80ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80ee707ff03c80ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80eed87ff03c80eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80ef407ff03c80ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80efa87ff03c80efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f0107ff03c80f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f0787ff03c80f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f0e07ff03c80f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f1487ff03c80f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f1b07ff03c80f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f2187ff03c80f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f2807ff03c80f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f2e87ff03c80f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f3507ff03c80f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f3b87ff03c80f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f4207ff03c80f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f4887ff03c80f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f4f07ff03c80f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f5587ff03c80f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f5c07ff03c80f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f6287ff03c80f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f6907ff03c80f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f6f87ff03c80f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f7607ff03c80f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f7c87ff03c80f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f8307ff03c80f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f8987ff03c80f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c80f9007ff03c80f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c183c007ff03c183c00 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c183c687ff03c183c68 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c183cd07ff03c183cd0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c183d387ff03c183d38 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c183da07ff03c183da0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c183e087ff03c183e08 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c183e707ff03c183e70 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c183ed87ff03c183ed8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c183f407ff03c183f40 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c183fa87ff03c183fa8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1840107ff03c184010 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1840787ff03c184078 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1840e07ff03c1840e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1841487ff03c184148 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1841b07ff03c1841b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1842187ff03c184218 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1842807ff03c184280 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1842e87ff03c1842e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1843507ff03c184350 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1843b87ff03c1843b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1844207ff03c184420 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1844887ff03c184488 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1844f07ff03c1844f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1845587ff03c184558 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1845c07ff03c1845c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1846287ff03c184628 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1846907ff03c184690 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1846f87ff03c1846f8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1847607ff03c184760 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1847c87ff03c1847c8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1848307ff03c184830 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1848987ff03c184898 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1849007ff03c184900 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1849687ff03c184968 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1849d07ff03c1849d0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c184a387ff03c184a38 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8010007ff03c801000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8010687ff03c801068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8010d07ff03c8010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8011387ff03c801138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8011a07ff03c8011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8012087ff03c801208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8012707ff03c801270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8012d87ff03c8012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8013407ff03c801340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8013a87ff03c8013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; + FFFD3c8014107ff03c801410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8014787ff03c801478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8014e07ff03c8014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8015487ff03c801548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8015b07ff03c8015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8016187ff03c801618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8016807ff03c801680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8016e87ff03c8016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8017507ff03c801750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8017b87ff03c8017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8018207ff03c801820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8018887ff03c801888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8018f07ff03c8018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8019587ff03c801958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8019c07ff03c8019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c801a287ff03c801a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c801a907ff03c801a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c801af87ff03c801af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c801b607ff03c801b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c801bc87ff03c801bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c801c307ff03c801c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c801c987ff03c801c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c801d007ff03c801d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c801d687ff03c801d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c801dd07ff03c801dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c801e387ff03c801e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c801ea07ff03c801ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c801f087ff03c801f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c801f707ff03c801f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c801fd87ff03c801fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8020407ff03c802040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8020a87ff03c8020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8021107ff03c802110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8021787ff03c802178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8021e07ff03c8021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8022487ff03c802248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8022b07ff03c8022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8023187ff03c802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8023807ff03c802380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8023e87ff03c8023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8024507ff03c802450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8024b87ff03c8024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8025207ff03c802520 /* 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; }; + FFFD3c8025887ff03c802588 /* 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; }; + FFFD3c8025f07ff03c8025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8026587ff03c802658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8026c07ff03c8026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8027287ff03c802728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8027907ff03c802790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8027f87ff03c8027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8028607ff03c802860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8028c87ff03c8028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8029307ff03c802930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8029987ff03c802998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c802a007ff03c802a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c802a687ff03c802a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c802ad07ff03c802ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c802b387ff03c802b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c802ba07ff03c802ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c802c087ff03c802c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c802c707ff03c802c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c802cd87ff03c802cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c802d407ff03c802d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c802da87ff03c802da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c802e107ff03c802e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c802e787ff03c802e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c802ee07ff03c802ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c802f487ff03c802f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c802fb07ff03c802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8030187ff03c803018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8030807ff03c803080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8030e87ff03c8030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8031507ff03c803150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8031b87ff03c8031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8032207ff03c803220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8032887ff03c803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8032f07ff03c8032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8033587ff03c803358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8033c07ff03c8033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8034287ff03c803428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8034907ff03c803490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8034f87ff03c8034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8035607ff03c803560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8035c87ff03c8035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8036307ff03c803630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8036987ff03c803698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8037007ff03c803700 /* 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; }; + FFFD3c8037687ff03c803768 /* 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; }; + FFFD3c8037d07ff03c8037d0 /* 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; }; + FFFD3c8038387ff03c803838 /* 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; }; + FFFD3c8038a07ff03c8038a0 /* 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; }; + FFFD3c8039087ff03c803908 /* 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; }; + FFFD3c8039707ff03c803970 /* 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; }; + FFFD3c8039d87ff03c8039d8 /* 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; }; + FFFD3c803a407ff03c803a40 /* 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; }; + FFFD3c803aa87ff03c803aa8 /* 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; }; + FFFD3c803b107ff03c803b10 /* 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; }; + FFFD3c803b787ff03c803b78 /* 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; }; + FFFD3c803be07ff03c803be0 /* 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; }; + FFFD3c803c487ff03c803c48 /* 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; }; + FFFD3c803cb07ff03c803cb0 /* 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; }; + FFFD3c803d187ff03c803d18 /* 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; }; + FFFD3c803d807ff03c803d80 /* 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; }; + FFFD3c803de87ff03c803de8 /* 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; }; + FFFD3c803e507ff03c803e50 /* 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; }; + FFFD3c803eb87ff03c803eb8 /* 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; }; + FFFD3c803f207ff03c803f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c803f887ff03c803f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c803ff07ff03c803ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8040587ff03c804058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8040c07ff03c8040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8041287ff03c804128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8041907ff03c804190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8041f87ff03c8041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8042607ff03c804260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8042c87ff03c8042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8043307ff03c804330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8043987ff03c804398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8044007ff03c804400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8044687ff03c804468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8044d07ff03c8044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8045387ff03c804538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8045a07ff03c8045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8046087ff03c804608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8046707ff03c804670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8046d87ff03c8046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8047407ff03c804740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8047a87ff03c8047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8048107ff03c804810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8048787ff03c804878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8048e07ff03c8048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8049487ff03c804948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8049b07ff03c8049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c804a187ff03c804a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c804a807ff03c804a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c804ae87ff03c804ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c804b507ff03c804b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c804bb87ff03c804bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c804c207ff03c804c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c804c887ff03c804c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c804cf07ff03c804cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c804d587ff03c804d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c804dc07ff03c804dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c804e287ff03c804e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c804e907ff03c804e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c804ef87ff03c804ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c804f607ff03c804f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c804fc87ff03c804fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8050307ff03c805030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8050987ff03c805098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8051007ff03c805100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8051687ff03c805168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8051d07ff03c8051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8052387ff03c805238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8052a07ff03c8052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8053087ff03c805308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8053707ff03c805370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8053d87ff03c8053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8054407ff03c805440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8054a87ff03c8054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8055107ff03c805510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8055787ff03c805578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8055e07ff03c8055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8056487ff03c805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8056b07ff03c8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8057187ff03c805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8057807ff03c805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8057e87ff03c8057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8058507ff03c805850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8058b87ff03c8058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8059207ff03c805920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8059887ff03c805988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8059f07ff03c8059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c805a587ff03c805a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c805ac07ff03c805ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c805b287ff03c805b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c805b907ff03c805b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c805bf87ff03c805bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c805c607ff03c805c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c805cc87ff03c805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c805d307ff03c805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c805d987ff03c805d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c805e007ff03c805e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c805e687ff03c805e68 /* 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; }; + FFFD3c805ed07ff03c805ed0 /* 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; }; + FFFD3c805f387ff03c805f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c805fa07ff03c805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8060087ff03c806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8060707ff03c806070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8060d87ff03c8060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8061407ff03c806140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8061a87ff03c8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8062107ff03c806210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8062787ff03c806278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8062e07ff03c8062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8063487ff03c806348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8063b07ff03c8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8064187ff03c806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8064807ff03c806480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8064e87ff03c8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8065507ff03c806550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8065b87ff03c8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8066207ff03c806620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8066887ff03c806688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8066f07ff03c8066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8067587ff03c806758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8067c07ff03c8067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8068287ff03c806828 /* 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; }; + FFFD3c8068907ff03c806890 /* 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; }; + FFFD3c8068f87ff03c8068f8 /* 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; }; + FFFD3c8069607ff03c806960 /* 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; }; + FFFD3c8069c87ff03c8069c8 /* 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; }; + FFFD3c806a307ff03c806a30 /* 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; }; + FFFD3c806a987ff03c806a98 /* 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; }; + FFFD3c806b007ff03c806b00 /* 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; }; + FFFD3c806b687ff03c806b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c806bd07ff03c806bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c806c387ff03c806c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c806ca07ff03c806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c806d087ff03c806d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c806d707ff03c806d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c806dd87ff03c806dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c806e407ff03c806e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c806ea87ff03c806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c806f107ff03c806f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c806f787ff03c806f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c806fe07ff03c806fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8070487ff03c807048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8070b07ff03c8070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8071187ff03c807118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8071807ff03c807180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8071e87ff03c8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8072507ff03c807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8072b87ff03c8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8073207ff03c807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8073887ff03c807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8073f07ff03c8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8074587ff03c807458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8074c07ff03c8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8075287ff03c807528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8075907ff03c807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8075f87ff03c8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8076607ff03c807660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8076c87ff03c8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8077307ff03c807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8077987ff03c807798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8078007ff03c807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8078687ff03c807868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8078d07ff03c8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8079387ff03c807938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8079a07ff03c8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c807a087ff03c807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c807a707ff03c807a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c807ad87ff03c807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c807b407ff03c807b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c807ba87ff03c807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c807c107ff03c807c10 /* 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 */ - FFF259c183f07f8c59c183f0 /* Resources */ = { + FFF23ba4add07ff03ba4add0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5a8013a87f8c5a8013a8, + FFFF3c8013a87ff03c8013a8, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC59c183f07f8c59c183f0 /* Frameworks */ = { + FFFC3ba4add07ff03ba4add0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1841,145 +1841,145 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF859c183f07f8c59c183f0 /* Sources */ = { + FFF83ba4add07ff03ba4add0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5a023e007f8c5a023e00, - FFFF5a023e687f8c5a023e68, - FFFF5a023ed07f8c5a023ed0, - FFFF5a023f387f8c5a023f38, - FFFF5a023fa07f8c5a023fa0, - FFFF5a0240087f8c5a024008, - FFFF5a0240707f8c5a024070, - FFFF5a0240d87f8c5a0240d8, - FFFF5a8048e07f8c5a8048e0, - FFFF5a8049487f8c5a804948, - FFFF5a8049b07f8c5a8049b0, - FFFF5a804a187f8c5a804a18, - FFFF5a804a807f8c5a804a80, - FFFF5a804ae87f8c5a804ae8, - FFFF5a804b507f8c5a804b50, - FFFF5a804bb87f8c5a804bb8, - FFFF5a804c207f8c5a804c20, - FFFF5a804c887f8c5a804c88, - FFFF5a804cf07f8c5a804cf0, - FFFF5a804d587f8c5a804d58, - FFFF5a804dc07f8c5a804dc0, - FFFF5a804e287f8c5a804e28, - FFFF5a804e907f8c5a804e90, - FFFF5a804ef87f8c5a804ef8, - FFFF5a804f607f8c5a804f60, - FFFF5a804fc87f8c5a804fc8, - FFFF5a8050307f8c5a805030, - FFFF5a8050987f8c5a805098, - FFFF5a8051007f8c5a805100, - FFFF5a8051687f8c5a805168, - FFFF5a8051d07f8c5a8051d0, - FFFF5a8052387f8c5a805238, - FFFF5a8052a07f8c5a8052a0, - FFFF5a8053087f8c5a805308, - FFFF5a8053707f8c5a805370, - FFFF5a8053d87f8c5a8053d8, - FFFF5a8054407f8c5a805440, - FFFF5a8054a87f8c5a8054a8, - FFFF5a8055107f8c5a805510, - FFFF5a8055787f8c5a805578, - FFFF5a8055e07f8c5a8055e0, - FFFF5a8056487f8c5a805648, - FFFF5a8056b07f8c5a8056b0, - FFFF5a8057187f8c5a805718, - FFFF5a8057807f8c5a805780, - FFFF5a8057e87f8c5a8057e8, - FFFF5a8058507f8c5a805850, - FFFF5a8058b87f8c5a8058b8, - FFFF5a8059207f8c5a805920, - FFFF5a8059887f8c5a805988, - FFFF5a8059f07f8c5a8059f0, - FFFF5a805a587f8c5a805a58, - FFFF5a805ac07f8c5a805ac0, - FFFF5a805b287f8c5a805b28, - FFFF5a805b907f8c5a805b90, - FFFF5a805bf87f8c5a805bf8, - FFFF5a805c607f8c5a805c60, - FFFF5a805cc87f8c5a805cc8, - FFFF5a805d307f8c5a805d30, - FFFF5a805d987f8c5a805d98, - FFFF5a805e007f8c5a805e00, - FFFF5a805e687f8c5a805e68, - FFFF5a805ed07f8c5a805ed0, - FFFF5a805f387f8c5a805f38, - FFFF5a805fa07f8c5a805fa0, - FFFF5a8060087f8c5a806008, - FFFF5a8060707f8c5a806070, - FFFF5a8060d87f8c5a8060d8, - FFFF5a8061407f8c5a806140, - FFFF5a8061a87f8c5a8061a8, - FFFF5a8062107f8c5a806210, - FFFF5a8062787f8c5a806278, - FFFF5a8062e07f8c5a8062e0, - FFFF5a8063487f8c5a806348, - FFFF5a8063b07f8c5a8063b0, - FFFF5a8064187f8c5a806418, - FFFF5a8064807f8c5a806480, - FFFF5a8064e87f8c5a8064e8, - FFFF5a8065507f8c5a806550, - FFFF5a8065b87f8c5a8065b8, - FFFF5a8066207f8c5a806620, - FFFF5a8066887f8c5a806688, - FFFF5a8066f07f8c5a8066f0, - FFFF5a8067587f8c5a806758, - FFFF5a8067c07f8c5a8067c0, - FFFF5a8068287f8c5a806828, - FFFF5a8068907f8c5a806890, - FFFF5a8068f87f8c5a8068f8, - FFFF5a8069607f8c5a806960, - FFFF5a8069c87f8c5a8069c8, - FFFF5a806a307f8c5a806a30, - FFFF5a806a987f8c5a806a98, - FFFF5a806b007f8c5a806b00, - FFFF5a806b687f8c5a806b68, - FFFF5a806bd07f8c5a806bd0, - FFFF5a806c387f8c5a806c38, - FFFF5a806ca07f8c5a806ca0, - FFFF5a806d087f8c5a806d08, - FFFF5a806d707f8c5a806d70, - FFFF5a806dd87f8c5a806dd8, - FFFF5a806e407f8c5a806e40, - FFFF5a806ea87f8c5a806ea8, - FFFF5a806f107f8c5a806f10, - FFFF5a806f787f8c5a806f78, - FFFF5a806fe07f8c5a806fe0, - FFFF5a8070487f8c5a807048, - FFFF5a8070b07f8c5a8070b0, - FFFF5a8071187f8c5a807118, - FFFF5a8071807f8c5a807180, - FFFF5a8071e87f8c5a8071e8, - FFFF5a8072507f8c5a807250, - FFFF5a8072b87f8c5a8072b8, - FFFF5a8073207f8c5a807320, - FFFF5a8073887f8c5a807388, - FFFF5a8073f07f8c5a8073f0, - FFFF5a8074587f8c5a807458, - FFFF5a8074c07f8c5a8074c0, - FFFF5a8075287f8c5a807528, - FFFF5a8075907f8c5a807590, - FFFF5a8075f87f8c5a8075f8, - FFFF5a8076607f8c5a807660, - FFFF5a8076c87f8c5a8076c8, - FFFF5a8077307f8c5a807730, - FFFF5a8077987f8c5a807798, - FFFF5a8078007f8c5a807800, - FFFF5a8078687f8c5a807868, - FFFF5a8078d07f8c5a8078d0, - FFFF5a8079387f8c5a807938, - FFFF5a8079a07f8c5a8079a0, - FFFF5a807a087f8c5a807a08, - FFFF5a807a707f8c5a807a70, - FFFF5a807ad87f8c5a807ad8, - FFFF5a807b407f8c5a807b40, - FFFF5a807ba87f8c5a807ba8, - FFFF5a807c107f8c5a807c10, + FFFF3c183c007ff03c183c00, + FFFF3c183c687ff03c183c68, + FFFF3c183cd07ff03c183cd0, + FFFF3c183d387ff03c183d38, + FFFF3c183da07ff03c183da0, + FFFF3c183e087ff03c183e08, + FFFF3c183e707ff03c183e70, + FFFF3c183ed87ff03c183ed8, + FFFF3c8048e07ff03c8048e0, + FFFF3c8049487ff03c804948, + FFFF3c8049b07ff03c8049b0, + FFFF3c804a187ff03c804a18, + FFFF3c804a807ff03c804a80, + FFFF3c804ae87ff03c804ae8, + FFFF3c804b507ff03c804b50, + FFFF3c804bb87ff03c804bb8, + FFFF3c804c207ff03c804c20, + FFFF3c804c887ff03c804c88, + FFFF3c804cf07ff03c804cf0, + FFFF3c804d587ff03c804d58, + FFFF3c804dc07ff03c804dc0, + FFFF3c804e287ff03c804e28, + FFFF3c804e907ff03c804e90, + FFFF3c804ef87ff03c804ef8, + FFFF3c804f607ff03c804f60, + FFFF3c804fc87ff03c804fc8, + FFFF3c8050307ff03c805030, + FFFF3c8050987ff03c805098, + FFFF3c8051007ff03c805100, + FFFF3c8051687ff03c805168, + FFFF3c8051d07ff03c8051d0, + FFFF3c8052387ff03c805238, + FFFF3c8052a07ff03c8052a0, + FFFF3c8053087ff03c805308, + FFFF3c8053707ff03c805370, + FFFF3c8053d87ff03c8053d8, + FFFF3c8054407ff03c805440, + FFFF3c8054a87ff03c8054a8, + FFFF3c8055107ff03c805510, + FFFF3c8055787ff03c805578, + FFFF3c8055e07ff03c8055e0, + FFFF3c8056487ff03c805648, + FFFF3c8056b07ff03c8056b0, + FFFF3c8057187ff03c805718, + FFFF3c8057807ff03c805780, + FFFF3c8057e87ff03c8057e8, + FFFF3c8058507ff03c805850, + FFFF3c8058b87ff03c8058b8, + FFFF3c8059207ff03c805920, + FFFF3c8059887ff03c805988, + FFFF3c8059f07ff03c8059f0, + FFFF3c805a587ff03c805a58, + FFFF3c805ac07ff03c805ac0, + FFFF3c805b287ff03c805b28, + FFFF3c805b907ff03c805b90, + FFFF3c805bf87ff03c805bf8, + FFFF3c805c607ff03c805c60, + FFFF3c805cc87ff03c805cc8, + FFFF3c805d307ff03c805d30, + FFFF3c805d987ff03c805d98, + FFFF3c805e007ff03c805e00, + FFFF3c805e687ff03c805e68, + FFFF3c805ed07ff03c805ed0, + FFFF3c805f387ff03c805f38, + FFFF3c805fa07ff03c805fa0, + FFFF3c8060087ff03c806008, + FFFF3c8060707ff03c806070, + FFFF3c8060d87ff03c8060d8, + FFFF3c8061407ff03c806140, + FFFF3c8061a87ff03c8061a8, + FFFF3c8062107ff03c806210, + FFFF3c8062787ff03c806278, + FFFF3c8062e07ff03c8062e0, + FFFF3c8063487ff03c806348, + FFFF3c8063b07ff03c8063b0, + FFFF3c8064187ff03c806418, + FFFF3c8064807ff03c806480, + FFFF3c8064e87ff03c8064e8, + FFFF3c8065507ff03c806550, + FFFF3c8065b87ff03c8065b8, + FFFF3c8066207ff03c806620, + FFFF3c8066887ff03c806688, + FFFF3c8066f07ff03c8066f0, + FFFF3c8067587ff03c806758, + FFFF3c8067c07ff03c8067c0, + FFFF3c8068287ff03c806828, + FFFF3c8068907ff03c806890, + FFFF3c8068f87ff03c8068f8, + FFFF3c8069607ff03c806960, + FFFF3c8069c87ff03c8069c8, + FFFF3c806a307ff03c806a30, + FFFF3c806a987ff03c806a98, + FFFF3c806b007ff03c806b00, + FFFF3c806b687ff03c806b68, + FFFF3c806bd07ff03c806bd0, + FFFF3c806c387ff03c806c38, + FFFF3c806ca07ff03c806ca0, + FFFF3c806d087ff03c806d08, + FFFF3c806d707ff03c806d70, + FFFF3c806dd87ff03c806dd8, + FFFF3c806e407ff03c806e40, + FFFF3c806ea87ff03c806ea8, + FFFF3c806f107ff03c806f10, + FFFF3c806f787ff03c806f78, + FFFF3c806fe07ff03c806fe0, + FFFF3c8070487ff03c807048, + FFFF3c8070b07ff03c8070b0, + FFFF3c8071187ff03c807118, + FFFF3c8071807ff03c807180, + FFFF3c8071e87ff03c8071e8, + FFFF3c8072507ff03c807250, + FFFF3c8072b87ff03c8072b8, + FFFF3c8073207ff03c807320, + FFFF3c8073887ff03c807388, + FFFF3c8073f07ff03c8073f0, + FFFF3c8074587ff03c807458, + FFFF3c8074c07ff03c8074c0, + FFFF3c8075287ff03c807528, + FFFF3c8075907ff03c807590, + FFFF3c8075f87ff03c8075f8, + FFFF3c8076607ff03c807660, + FFFF3c8076c87ff03c8076c8, + FFFF3c8077307ff03c807730, + FFFF3c8077987ff03c807798, + FFFF3c8078007ff03c807800, + FFFF3c8078687ff03c807868, + FFFF3c8078d07ff03c8078d0, + FFFF3c8079387ff03c807938, + FFFF3c8079a07ff03c8079a0, + FFFF3c807a087ff03c807a08, + FFFF3c807a707ff03c807a70, + FFFF3c807ad87ff03c807ad8, + FFFF3c807b407ff03c807b40, + FFFF3c807ba87ff03c807ba8, + FFFF3c807c107ff03c807c10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1988,132 +1988,132 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF459c0ef507f8c59c0ef50 /* PBXTargetDependency */ = { + FFF43ba467c07ff03ba467c0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA59c114307f8c59c11430 /* PxFoundation */; - targetProxy = FFF559c114307f8c59c11430 /* PBXContainerItemProxy */; + target = FFFA3ba5cc607ff03ba5cc60 /* PxFoundation */; + targetProxy = FFF53ba5cc607ff03ba5cc60 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxFoundation */ - FFFF5a01d1187f8c5a01d118 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d1187f8c5a01d118 /* src/PsAllocator.cpp */; }; - FFFF5a01d1807f8c5a01d180 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d1807f8c5a01d180 /* src/PsAssert.cpp */; }; - FFFF5a01d1e87f8c5a01d1e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d1e87f8c5a01d1e8 /* src/PsFoundation.cpp */; }; - FFFF5a01d2507f8c5a01d250 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d2507f8c5a01d250 /* src/PsMathUtils.cpp */; }; - FFFF5a01d2b87f8c5a01d2b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d2b87f8c5a01d2b8 /* src/PsString.cpp */; }; - FFFF5a01d3207f8c5a01d320 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d3207f8c5a01d320 /* src/PsTempAllocator.cpp */; }; - FFFF5a01d3887f8c5a01d388 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d3887f8c5a01d388 /* src/PsUtilities.cpp */; }; - FFFF5a01d3f07f8c5a01d3f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d3f07f8c5a01d3f0 /* src/unix/PsUnixAtomic.cpp */; }; - FFFF5a01d4587f8c5a01d458 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d4587f8c5a01d458 /* src/unix/PsUnixCpu.cpp */; }; - FFFF5a01d4c07f8c5a01d4c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d4c07f8c5a01d4c0 /* src/unix/PsUnixFPU.cpp */; }; - FFFF5a01d5287f8c5a01d528 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d5287f8c5a01d528 /* src/unix/PsUnixMutex.cpp */; }; - FFFF5a01d5907f8c5a01d590 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d5907f8c5a01d590 /* src/unix/PsUnixPrintString.cpp */; }; - FFFF5a01d5f87f8c5a01d5f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d5f87f8c5a01d5f8 /* src/unix/PsUnixSList.cpp */; }; - FFFF5a01d6607f8c5a01d660 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d6607f8c5a01d660 /* src/unix/PsUnixSocket.cpp */; }; - FFFF5a01d6c87f8c5a01d6c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d6c87f8c5a01d6c8 /* src/unix/PsUnixSync.cpp */; }; - FFFF5a01d7307f8c5a01d730 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d7307f8c5a01d730 /* src/unix/PsUnixThread.cpp */; }; - FFFF5a01d7987f8c5a01d798 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a01d7987f8c5a01d798 /* src/unix/PsUnixTime.cpp */; }; + FFFF3c18b1187ff03c18b118 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b1187ff03c18b118 /* src/PsAllocator.cpp */; }; + FFFF3c18b1807ff03c18b180 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b1807ff03c18b180 /* src/PsAssert.cpp */; }; + FFFF3c18b1e87ff03c18b1e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b1e87ff03c18b1e8 /* src/PsFoundation.cpp */; }; + FFFF3c18b2507ff03c18b250 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b2507ff03c18b250 /* src/PsMathUtils.cpp */; }; + FFFF3c18b2b87ff03c18b2b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b2b87ff03c18b2b8 /* src/PsString.cpp */; }; + FFFF3c18b3207ff03c18b320 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b3207ff03c18b320 /* src/PsTempAllocator.cpp */; }; + FFFF3c18b3887ff03c18b388 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b3887ff03c18b388 /* src/PsUtilities.cpp */; }; + FFFF3c18b3f07ff03c18b3f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b3f07ff03c18b3f0 /* src/unix/PsUnixAtomic.cpp */; }; + FFFF3c18b4587ff03c18b458 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b4587ff03c18b458 /* src/unix/PsUnixCpu.cpp */; }; + FFFF3c18b4c07ff03c18b4c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b4c07ff03c18b4c0 /* src/unix/PsUnixFPU.cpp */; }; + FFFF3c18b5287ff03c18b528 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b5287ff03c18b528 /* src/unix/PsUnixMutex.cpp */; }; + FFFF3c18b5907ff03c18b590 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b5907ff03c18b590 /* src/unix/PsUnixPrintString.cpp */; }; + FFFF3c18b5f87ff03c18b5f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b5f87ff03c18b5f8 /* src/unix/PsUnixSList.cpp */; }; + FFFF3c18b6607ff03c18b660 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b6607ff03c18b660 /* src/unix/PsUnixSocket.cpp */; }; + FFFF3c18b6c87ff03c18b6c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b6c87ff03c18b6c8 /* src/unix/PsUnixSync.cpp */; }; + FFFF3c18b7307ff03c18b730 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b7307ff03c18b730 /* src/unix/PsUnixThread.cpp */; }; + FFFF3c18b7987ff03c18b798 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c18b7987ff03c18b798 /* src/unix/PsUnixTime.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD59c114307f8c59c11430 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5a01b2007f8c5a01b200 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b2687f8c5a01b268 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b2d07f8c5a01b2d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b3387f8c5a01b338 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b3a07f8c5a01b3a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b4087f8c5a01b408 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b4707f8c5a01b470 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b4d87f8c5a01b4d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b5407f8c5a01b540 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b5a87f8c5a01b5a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b6107f8c5a01b610 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b6787f8c5a01b678 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b6e07f8c5a01b6e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b7487f8c5a01b748 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b7b07f8c5a01b7b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b8187f8c5a01b818 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b8807f8c5a01b880 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b8e87f8c5a01b8e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b9507f8c5a01b950 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01b9b87f8c5a01b9b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01ba207f8c5a01ba20 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01ba887f8c5a01ba88 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01baf07f8c5a01baf0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01bb587f8c5a01bb58 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01bbc07f8c5a01bbc0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01bc287f8c5a01bc28 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01bc907f8c5a01bc90 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01bcf87f8c5a01bcf8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01bd607f8c5a01bd60 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01be007f8c5a01be00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01be687f8c5a01be68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01bed07f8c5a01bed0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01bf387f8c5a01bf38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01bfa07f8c5a01bfa0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c0087f8c5a01c008 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c0707f8c5a01c070 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c0d87f8c5a01c0d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c1407f8c5a01c140 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c1a87f8c5a01c1a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c2107f8c5a01c210 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c2787f8c5a01c278 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c2e07f8c5a01c2e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c3487f8c5a01c348 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c3b07f8c5a01c3b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c4187f8c5a01c418 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c4807f8c5a01c480 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c4e87f8c5a01c4e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c5507f8c5a01c550 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c5b87f8c5a01c5b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c6207f8c5a01c620 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c6887f8c5a01c688 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c6f07f8c5a01c6f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c7587f8c5a01c758 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c7c07f8c5a01c7c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c8287f8c5a01c828 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c8907f8c5a01c890 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c8f87f8c5a01c8f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c9607f8c5a01c960 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01c9c87f8c5a01c9c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01ca307f8c5a01ca30 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01ca987f8c5a01ca98 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01cb007f8c5a01cb00 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01cb687f8c5a01cb68 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01cbd07f8c5a01cbd0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01cc387f8c5a01cc38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01cca07f8c5a01cca0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01cd087f8c5a01cd08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01cd707f8c5a01cd70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01cdd87f8c5a01cdd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01ce407f8c5a01ce40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01cea87f8c5a01cea8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01cf107f8c5a01cf10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01cf787f8c5a01cf78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01cfe07f8c5a01cfe0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d0487f8c5a01d048 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d0b07f8c5a01d0b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d1187f8c5a01d118 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d1807f8c5a01d180 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d1e87f8c5a01d1e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d2507f8c5a01d250 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d2b87f8c5a01d2b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d3207f8c5a01d320 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d3887f8c5a01d388 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d3f07f8c5a01d3f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d4587f8c5a01d458 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d4c07f8c5a01d4c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d5287f8c5a01d528 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d5907f8c5a01d590 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d5f87f8c5a01d5f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d6607f8c5a01d660 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d6c87f8c5a01d6c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d7307f8c5a01d730 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a01d7987f8c5a01d798 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3ba5cc607ff03ba5cc60 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3c163e007ff03c163e00 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c163e687ff03c163e68 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c163ed07ff03c163ed0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c163f387ff03c163f38 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c163fa07ff03c163fa0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1640087ff03c164008 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1640707ff03c164070 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1640d87ff03c1640d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1641407ff03c164140 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1641a87ff03c1641a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1642107ff03c164210 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1642787ff03c164278 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1642e07ff03c1642e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1643487ff03c164348 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1643b07ff03c1643b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1644187ff03c164418 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1644807ff03c164480 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1644e87ff03c1644e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1645507ff03c164550 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1645b87ff03c1645b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1646207ff03c164620 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1646887ff03c164688 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1646f07ff03c1646f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1647587ff03c164758 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1647c07ff03c1647c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1648287ff03c164828 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1648907ff03c164890 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1648f87ff03c1648f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1649607ff03c164960 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c189e007ff03c189e00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c189e687ff03c189e68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c189ed07ff03c189ed0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c189f387ff03c189f38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c189fa07ff03c189fa0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a0087ff03c18a008 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a0707ff03c18a070 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a0d87ff03c18a0d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a1407ff03c18a140 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a1a87ff03c18a1a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a2107ff03c18a210 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a2787ff03c18a278 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a2e07ff03c18a2e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a3487ff03c18a348 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a3b07ff03c18a3b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a4187ff03c18a418 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a4807ff03c18a480 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a4e87ff03c18a4e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a5507ff03c18a550 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a5b87ff03c18a5b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a6207ff03c18a620 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a6887ff03c18a688 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a6f07ff03c18a6f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a7587ff03c18a758 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a7c07ff03c18a7c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a8287ff03c18a828 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a8907ff03c18a890 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a8f87ff03c18a8f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a9607ff03c18a960 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18a9c87ff03c18a9c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18aa307ff03c18aa30 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18aa987ff03c18aa98 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18ab007ff03c18ab00 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18ab687ff03c18ab68 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18abd07ff03c18abd0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18ac387ff03c18ac38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18aca07ff03c18aca0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18ad087ff03c18ad08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18ad707ff03c18ad70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18add87ff03c18add8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18ae407ff03c18ae40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18aea87ff03c18aea8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18af107ff03c18af10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18af787ff03c18af78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18afe07ff03c18afe0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b0487ff03c18b048 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b0b07ff03c18b0b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b1187ff03c18b118 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b1807ff03c18b180 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b1e87ff03c18b1e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b2507ff03c18b250 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b2b87ff03c18b2b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b3207ff03c18b320 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b3887ff03c18b388 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b3f07ff03c18b3f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b4587ff03c18b458 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b4c07ff03c18b4c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b5287ff03c18b528 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b5907ff03c18b590 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b5f87ff03c18b5f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b6607ff03c18b660 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b6c87ff03c18b6c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b7307ff03c18b730 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c18b7987ff03c18b798 /* 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 */ - FFF259c114307f8c59c11430 /* Resources */ = { + FFF23ba5cc607ff03ba5cc60 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2123,7 +2123,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC59c114307f8c59c11430 /* Frameworks */ = { + FFFC3ba5cc607ff03ba5cc60 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2133,27 +2133,27 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF859c114307f8c59c11430 /* Sources */ = { + FFF83ba5cc607ff03ba5cc60 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5a01d1187f8c5a01d118, - FFFF5a01d1807f8c5a01d180, - FFFF5a01d1e87f8c5a01d1e8, - FFFF5a01d2507f8c5a01d250, - FFFF5a01d2b87f8c5a01d2b8, - FFFF5a01d3207f8c5a01d320, - FFFF5a01d3887f8c5a01d388, - FFFF5a01d3f07f8c5a01d3f0, - FFFF5a01d4587f8c5a01d458, - FFFF5a01d4c07f8c5a01d4c0, - FFFF5a01d5287f8c5a01d528, - FFFF5a01d5907f8c5a01d590, - FFFF5a01d5f87f8c5a01d5f8, - FFFF5a01d6607f8c5a01d660, - FFFF5a01d6c87f8c5a01d6c8, - FFFF5a01d7307f8c5a01d730, - FFFF5a01d7987f8c5a01d798, + FFFF3c18b1187ff03c18b118, + FFFF3c18b1807ff03c18b180, + FFFF3c18b1e87ff03c18b1e8, + FFFF3c18b2507ff03c18b250, + FFFF3c18b2b87ff03c18b2b8, + FFFF3c18b3207ff03c18b320, + FFFF3c18b3887ff03c18b388, + FFFF3c18b3f07ff03c18b3f0, + FFFF3c18b4587ff03c18b458, + FFFF3c18b4c07ff03c18b4c0, + FFFF3c18b5287ff03c18b528, + FFFF3c18b5907ff03c18b590, + FFFF3c18b5f87ff03c18b5f8, + FFFF3c18b6607ff03c18b660, + FFFF3c18b6c87ff03c18b6c8, + FFFF3c18b7307ff03c18b730, + FFFF3c18b7987ff03c18b798, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2165,103 +2165,103 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxPvdSDK */ - FFFF59186da87f8c59186da8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD59186da87f8c59186da8 /* src/PxProfileEventImpl.cpp */; }; - FFFF59186e107f8c59186e10 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD59186e107f8c59186e10 /* src/PxPvd.cpp */; }; - FFFF59186e787f8c59186e78 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD59186e787f8c59186e78 /* src/PxPvdDataStream.cpp */; }; - FFFF59186ee07f8c59186ee0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD59186ee07f8c59186ee0 /* src/PxPvdDefaultFileTransport.cpp */; }; - FFFF59186f487f8c59186f48 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD59186f487f8c59186f48 /* src/PxPvdDefaultSocketTransport.cpp */; }; - FFFF59186fb07f8c59186fb0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD59186fb07f8c59186fb0 /* src/PxPvdImpl.cpp */; }; - FFFF591870187f8c59187018 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD591870187f8c59187018 /* src/PxPvdMemClient.cpp */; }; - FFFF591870807f8c59187080 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD591870807f8c59187080 /* src/PxPvdObjectModelMetaData.cpp */; }; - FFFF591870e87f8c591870e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD591870e87f8c591870e8 /* src/PxPvdObjectRegistrar.cpp */; }; - FFFF591871507f8c59187150 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD591871507f8c59187150 /* src/PxPvdProfileZoneClient.cpp */; }; - FFFF591871b87f8c591871b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD591871b87f8c591871b8 /* src/PxPvdUserRenderer.cpp */; }; + FFFF3c81e9a87ff03c81e9a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c81e9a87ff03c81e9a8 /* src/PxProfileEventImpl.cpp */; }; + FFFF3c81ea107ff03c81ea10 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c81ea107ff03c81ea10 /* src/PxPvd.cpp */; }; + FFFF3c81ea787ff03c81ea78 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c81ea787ff03c81ea78 /* src/PxPvdDataStream.cpp */; }; + FFFF3c81eae07ff03c81eae0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c81eae07ff03c81eae0 /* src/PxPvdDefaultFileTransport.cpp */; }; + FFFF3c81eb487ff03c81eb48 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c81eb487ff03c81eb48 /* src/PxPvdDefaultSocketTransport.cpp */; }; + FFFF3c81ebb07ff03c81ebb0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c81ebb07ff03c81ebb0 /* src/PxPvdImpl.cpp */; }; + FFFF3c81ec187ff03c81ec18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c81ec187ff03c81ec18 /* src/PxPvdMemClient.cpp */; }; + FFFF3c81ec807ff03c81ec80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c81ec807ff03c81ec80 /* src/PxPvdObjectModelMetaData.cpp */; }; + FFFF3c81ece87ff03c81ece8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c81ece87ff03c81ece8 /* src/PxPvdObjectRegistrar.cpp */; }; + FFFF3c81ed507ff03c81ed50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c81ed507ff03c81ed50 /* src/PxPvdProfileZoneClient.cpp */; }; + FFFF3c81edb87ff03c81edb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c81edb87ff03c81edb8 /* src/PxPvdUserRenderer.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD59944d307f8c59944d30 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD599418207f8c59941820 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD599418887f8c59941888 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD59186a007f8c59186a00 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD59186a687f8c59186a68 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; - FFFD59186ad07f8c59186ad0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD59186b387f8c59186b38 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD59186ba07f8c59186ba0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD59186c087f8c59186c08 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; - FFFD59186c707f8c59186c70 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD59186cd87f8c59186cd8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD59186d407f8c59186d40 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; - FFFD59186da87f8c59186da8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59186e107f8c59186e10 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59186e787f8c59186e78 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59186ee07f8c59186ee0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59186f487f8c59186f48 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59186fb07f8c59186fb0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD591870187f8c59187018 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD591870807f8c59187080 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD591870e87f8c591870e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD591871507f8c59187150 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD591871b87f8c591871b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD591872207f8c59187220 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD591872887f8c59187288 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFD591872f07f8c591872f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; - FFFD591873587f8c59187358 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD591873c07f8c591873c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD591874287f8c59187428 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; - FFFD591874907f8c59187490 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD591874f87f8c591874f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFD591875607f8c59187560 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD591875c87f8c591875c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD591876307f8c59187630 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFD591876987f8c59187698 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; - FFFD591877007f8c59187700 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; - FFFD591877687f8c59187768 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFD591877d07f8c591877d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD591878387f8c59187838 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFD591878a07f8c591878a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; - FFFD591879087f8c59187908 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD591879707f8c59187970 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD591879d87f8c591879d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD59187a407f8c59187a40 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFD59187aa87f8c59187aa8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD59187b107f8c59187b10 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD59187b787f8c59187b78 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFD59187be07f8c59187be0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; - FFFD59187c487f8c59187c48 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD59187cb07f8c59187cb0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; - FFFD59187d187f8c59187d18 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD59187d807f8c59187d80 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD59187de87f8c59187de8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; - FFFD59187e507f8c59187e50 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD59187eb87f8c59187eb8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; - FFFD59187f207f8c59187f20 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD59187f887f8c59187f88 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD59187ff07f8c59187ff0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD591880587f8c59188058 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; - FFFD591880c07f8c591880c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD591881287f8c59188128 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; - FFFD591881907f8c59188190 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD591881f87f8c591881f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD591882607f8c59188260 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD591882c87f8c591882c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD591883307f8c59188330 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD591883987f8c59188398 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD591884007f8c59188400 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD591884687f8c59188468 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD591884d07f8c591884d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; - FFFD591885387f8c59188538 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD591885a07f8c591885a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; - FFFD591886087f8c59188608 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFD591886707f8c59188670 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD591886d87f8c591886d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD591887407f8c59188740 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; - FFFD591887a87f8c591887a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD591888107f8c59188810 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD591888787f8c59188878 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b9d39307ff03b9d3930 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3b9bfd807ff03b9bfd80 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b9bfde87ff03b9bfde8 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81e6007ff03c81e600 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81e6687ff03c81e668 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81e6d07ff03c81e6d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81e7387ff03c81e738 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81e7a07ff03c81e7a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81e8087ff03c81e808 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81e8707ff03c81e870 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81e8d87ff03c81e8d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81e9407ff03c81e940 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81e9a87ff03c81e9a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c81ea107ff03c81ea10 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c81ea787ff03c81ea78 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c81eae07ff03c81eae0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c81eb487ff03c81eb48 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c81ebb07ff03c81ebb0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c81ec187ff03c81ec18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c81ec807ff03c81ec80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c81ece87ff03c81ece8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c81ed507ff03c81ed50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c81edb87ff03c81edb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c81ee207ff03c81ee20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81ee887ff03c81ee88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81eef07ff03c81eef0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81ef587ff03c81ef58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81efc07ff03c81efc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f0287ff03c81f028 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f0907ff03c81f090 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f0f87ff03c81f0f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f1607ff03c81f160 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f1c87ff03c81f1c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f2307ff03c81f230 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f2987ff03c81f298 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f3007ff03c81f300 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f3687ff03c81f368 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f3d07ff03c81f3d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f4387ff03c81f438 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f4a07ff03c81f4a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f5087ff03c81f508 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f5707ff03c81f570 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f5d87ff03c81f5d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f6407ff03c81f640 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f6a87ff03c81f6a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f7107ff03c81f710 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f7787ff03c81f778 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f7e07ff03c81f7e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f8487ff03c81f848 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f8b07ff03c81f8b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f9187ff03c81f918 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f9807ff03c81f980 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81f9e87ff03c81f9e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81fa507ff03c81fa50 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81fab87ff03c81fab8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81fb207ff03c81fb20 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81fb887ff03c81fb88 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81fbf07ff03c81fbf0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81fc587ff03c81fc58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81fcc07ff03c81fcc0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81fd287ff03c81fd28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81fd907ff03c81fd90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81fdf87ff03c81fdf8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81fe607ff03c81fe60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81fec87ff03c81fec8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81ff307ff03c81ff30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c81ff987ff03c81ff98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8200007ff03c820000 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8200687ff03c820068 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8200d07ff03c8200d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8201387ff03c820138 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8201a07ff03c8201a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8202087ff03c820208 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8202707ff03c820270 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8202d87ff03c8202d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8203407ff03c820340 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8203a87ff03c8203a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8204107ff03c820410 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c8204787ff03c820478 /* 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 */ - FFF259944d307f8c59944d30 /* Resources */ = { + FFF23b9d39307ff03b9d3930 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2271,7 +2271,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC59944d307f8c59944d30 /* Frameworks */ = { + FFFC3b9d39307ff03b9d3930 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2281,21 +2281,21 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF859944d307f8c59944d30 /* Sources */ = { + FFF83b9d39307ff03b9d3930 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF59186da87f8c59186da8, - FFFF59186e107f8c59186e10, - FFFF59186e787f8c59186e78, - FFFF59186ee07f8c59186ee0, - FFFF59186f487f8c59186f48, - FFFF59186fb07f8c59186fb0, - FFFF591870187f8c59187018, - FFFF591870807f8c59187080, - FFFF591870e87f8c591870e8, - FFFF591871507f8c59187150, - FFFF591871b87f8c591871b8, + FFFF3c81e9a87ff03c81e9a8, + FFFF3c81ea107ff03c81ea10, + FFFF3c81ea787ff03c81ea78, + FFFF3c81eae07ff03c81eae0, + FFFF3c81eb487ff03c81eb48, + FFFF3c81ebb07ff03c81ebb0, + FFFF3c81ec187ff03c81ec18, + FFFF3c81ec807ff03c81ec80, + FFFF3c81ece87ff03c81ece8, + FFFF3c81ed507ff03c81ed50, + FFFF3c81edb87ff03c81edb8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2304,108 +2304,108 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4599408d07f8c599408d0 /* PBXTargetDependency */ = { + FFF43b9c77107ff03b9c7710 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA59c114307f8c59c11430 /* PxFoundation */; - targetProxy = FFF559c114307f8c59c11430 /* PBXContainerItemProxy */; + target = FFFA3ba5cc607ff03ba5cc60 /* PxFoundation */; + targetProxy = FFF53ba5cc607ff03ba5cc60 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevel */ - FFFF59d387007f8c59d38700 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD59d387007f8c59d38700 /* px_globals.cpp */; }; - FFFF59d3b1907f8c59d3b190 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD59d3b1907f8c59d3b190 /* PxsCCD.cpp */; }; - FFFF59d3b1f87f8c59d3b1f8 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD59d3b1f87f8c59d3b1f8 /* PxsContactManager.cpp */; }; - FFFF59d3b2607f8c59d3b260 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD59d3b2607f8c59d3b260 /* PxsContext.cpp */; }; - FFFF59d3b2c87f8c59d3b2c8 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD59d3b2c87f8c59d3b2c8 /* PxsDefaultMemoryManager.cpp */; }; - FFFF59d3b3307f8c59d3b330 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD59d3b3307f8c59d3b330 /* PxsIslandSim.cpp */; }; - FFFF59d3b3987f8c59d3b398 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD59d3b3987f8c59d3b398 /* PxsMaterialCombiner.cpp */; }; - FFFF59d3b4007f8c59d3b400 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD59d3b4007f8c59d3b400 /* PxsNphaseImplementationContext.cpp */; }; - FFFF59d3b4687f8c59d3b468 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD59d3b4687f8c59d3b468 /* PxsSimpleIslandManager.cpp */; }; - FFFF5a8182007f8c5a818200 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a8182007f8c5a818200 /* collision/PxcContact.cpp */; }; - FFFF5a8182687f8c5a818268 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a8182687f8c5a818268 /* pipeline/PxcContactCache.cpp */; }; - FFFF5a8182d07f8c5a8182d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a8182d07f8c5a8182d0 /* pipeline/PxcContactMethodImpl.cpp */; }; - FFFF5a8183387f8c5a818338 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a8183387f8c5a818338 /* pipeline/PxcMaterialHeightField.cpp */; }; - FFFF5a8183a07f8c5a8183a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a8183a07f8c5a8183a0 /* pipeline/PxcMaterialMesh.cpp */; }; - FFFF5a8184087f8c5a818408 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a8184087f8c5a818408 /* pipeline/PxcMaterialMethodImpl.cpp */; }; - FFFF5a8184707f8c5a818470 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a8184707f8c5a818470 /* pipeline/PxcMaterialShape.cpp */; }; - FFFF5a8184d87f8c5a8184d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a8184d87f8c5a8184d8 /* pipeline/PxcNpBatch.cpp */; }; - FFFF5a8185407f8c5a818540 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a8185407f8c5a818540 /* pipeline/PxcNpCacheStreamPair.cpp */; }; - FFFF5a8185a87f8c5a8185a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a8185a87f8c5a8185a8 /* pipeline/PxcNpContactPrepShared.cpp */; }; - FFFF5a8186107f8c5a818610 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a8186107f8c5a818610 /* pipeline/PxcNpMemBlockPool.cpp */; }; - FFFF5a8186787f8c5a818678 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a8186787f8c5a818678 /* pipeline/PxcNpThreadContext.cpp */; }; + FFFF3bf0f0207ff03bf0f020 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD3bf0f0207ff03bf0f020 /* px_globals.cpp */; }; + FFFF3bf08af07ff03bf08af0 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3bf08af07ff03bf08af0 /* PxsCCD.cpp */; }; + FFFF3bf08b587ff03bf08b58 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3bf08b587ff03bf08b58 /* PxsContactManager.cpp */; }; + FFFF3bf08bc07ff03bf08bc0 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3bf08bc07ff03bf08bc0 /* PxsContext.cpp */; }; + FFFF3bf08c287ff03bf08c28 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3bf08c287ff03bf08c28 /* PxsDefaultMemoryManager.cpp */; }; + FFFF3bf08c907ff03bf08c90 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3bf08c907ff03bf08c90 /* PxsIslandSim.cpp */; }; + FFFF3bf08cf87ff03bf08cf8 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3bf08cf87ff03bf08cf8 /* PxsMaterialCombiner.cpp */; }; + FFFF3bf08d607ff03bf08d60 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3bf08d607ff03bf08d60 /* PxsNphaseImplementationContext.cpp */; }; + FFFF3bf08dc87ff03bf08dc8 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD3bf08dc87ff03bf08dc8 /* PxsSimpleIslandManager.cpp */; }; + FFFF3d008e007ff03d008e00 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3d008e007ff03d008e00 /* collision/PxcContact.cpp */; }; + FFFF3d008e687ff03d008e68 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3d008e687ff03d008e68 /* pipeline/PxcContactCache.cpp */; }; + FFFF3d008ed07ff03d008ed0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3d008ed07ff03d008ed0 /* pipeline/PxcContactMethodImpl.cpp */; }; + FFFF3d008f387ff03d008f38 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3d008f387ff03d008f38 /* pipeline/PxcMaterialHeightField.cpp */; }; + FFFF3d008fa07ff03d008fa0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3d008fa07ff03d008fa0 /* pipeline/PxcMaterialMesh.cpp */; }; + FFFF3d0090087ff03d009008 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3d0090087ff03d009008 /* pipeline/PxcMaterialMethodImpl.cpp */; }; + FFFF3d0090707ff03d009070 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3d0090707ff03d009070 /* pipeline/PxcMaterialShape.cpp */; }; + FFFF3d0090d87ff03d0090d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3d0090d87ff03d0090d8 /* pipeline/PxcNpBatch.cpp */; }; + FFFF3d0091407ff03d009140 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3d0091407ff03d009140 /* pipeline/PxcNpCacheStreamPair.cpp */; }; + FFFF3d0091a87ff03d0091a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3d0091a87ff03d0091a8 /* pipeline/PxcNpContactPrepShared.cpp */; }; + FFFF3d0092107ff03d009210 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3d0092107ff03d009210 /* pipeline/PxcNpMemBlockPool.cpp */; }; + FFFF3d0092787ff03d009278 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD3d0092787ff03d009278 /* pipeline/PxcNpThreadContext.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD59d336a07f8c59d336a0 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD59d387007f8c59d38700 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59d3a0207f8c59d3a020 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d3a0887f8c59d3a088 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d3a0f07f8c59d3a0f0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d3a1587f8c59d3a158 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d3a1c07f8c59d3a1c0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d3a2287f8c59d3a228 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d3a2907f8c59d3a290 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d3a2f87f8c59d3a2f8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d3a3607f8c59d3a360 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d3b1907f8c59d3b190 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59d3b1f87f8c59d3b1f8 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59d3b2607f8c59d3b260 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59d3b2c87f8c59d3b2c8 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59d3b3307f8c59d3b330 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59d3b3987f8c59d3b398 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59d3b4007f8c59d3b400 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59d3b4687f8c59d3b468 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8198007f8c5a819800 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8198687f8c5a819868 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8198d07f8c5a8198d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8199387f8c5a819938 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8199a07f8c5a8199a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a819a087f8c5a819a08 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a819a707f8c5a819a70 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a819ad87f8c5a819ad8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a819b407f8c5a819b40 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a819ba87f8c5a819ba8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a819c107f8c5a819c10 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a819c787f8c5a819c78 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a819ce07f8c5a819ce0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a819d487f8c5a819d48 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a819db07f8c5a819db0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a819e187f8c5a819e18 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a819e807f8c5a819e80 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a819ee87f8c5a819ee8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a819f507f8c5a819f50 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a819fb87f8c5a819fb8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8182007f8c5a818200 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8182687f8c5a818268 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8182d07f8c5a8182d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8183387f8c5a818338 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8183a07f8c5a8183a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8184087f8c5a818408 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8184707f8c5a818470 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8184d87f8c5a8184d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8185407f8c5a818540 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8185a87f8c5a8185a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8186107f8c5a818610 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8186787f8c5a818678 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a818a007f8c5a818a00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a818a687f8c5a818a68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a818ad07f8c5a818ad0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a818b387f8c5a818b38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a818ba07f8c5a818ba0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a818c087f8c5a818c08 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a818c707f8c5a818c70 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a818cd87f8c5a818cd8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a818d407f8c5a818d40 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a818da87f8c5a818da8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a818e107f8c5a818e10 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a818e787f8c5a818e78 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a818ee07f8c5a818ee0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a818f487f8c5a818f48 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a818fb07f8c5a818fb0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf0b4507ff03bf0b450 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3bf0f0207ff03bf0f020 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3bf113907ff03bf11390 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf113f87ff03bf113f8 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf114607ff03bf11460 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf114c87ff03bf114c8 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf115307ff03bf11530 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf115987ff03bf11598 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf116007ff03bf11600 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf116687ff03bf11668 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf116d07ff03bf116d0 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf08af07ff03bf08af0 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3bf08b587ff03bf08b58 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3bf08bc07ff03bf08bc0 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3bf08c287ff03bf08c28 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3bf08c907ff03bf08c90 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3bf08cf87ff03bf08cf8 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3bf08d607ff03bf08d60 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3bf08dc87ff03bf08dc8 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3d0000007ff03d000000 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0000687ff03d000068 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0000d07ff03d0000d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0001387ff03d000138 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0001a07ff03d0001a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0002087ff03d000208 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0002707ff03d000270 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0002d87ff03d0002d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0003407ff03d000340 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0003a87ff03d0003a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0004107ff03d000410 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0004787ff03d000478 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0004e07ff03d0004e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0005487ff03d000548 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0005b07ff03d0005b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0006187ff03d000618 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0006807ff03d000680 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0006e87ff03d0006e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0007507ff03d000750 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d0007b87ff03d0007b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d008e007ff03d008e00 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3d008e687ff03d008e68 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3d008ed07ff03d008ed0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3d008f387ff03d008f38 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3d008fa07ff03d008fa0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3d0090087ff03d009008 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3d0090707ff03d009070 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3d0090d87ff03d0090d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3d0091407ff03d009140 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3d0091a87ff03d0091a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3d0092107ff03d009210 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3d0092787ff03d009278 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3d009c007ff03d009c00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d009c687ff03d009c68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d009cd07ff03d009cd0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d009d387ff03d009d38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d009da07ff03d009da0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d009e087ff03d009e08 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d009e707ff03d009e70 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d009ed87ff03d009ed8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d009f407ff03d009f40 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d009fa87ff03d009fa8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d00a0107ff03d00a010 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d00a0787ff03d00a078 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d00a0e07ff03d00a0e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d00a1487ff03d00a148 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3d00a1b07ff03d00a1b0 /* 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 */ - FFF259d336a07f8c59d336a0 /* Resources */ = { + FFF23bf0b4507ff03bf0b450 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2415,7 +2415,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC59d336a07f8c59d336a0 /* Frameworks */ = { + FFFC3bf0b4507ff03bf0b450 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2425,31 +2425,31 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF859d336a07f8c59d336a0 /* Sources */ = { + FFF83bf0b4507ff03bf0b450 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF59d387007f8c59d38700, - FFFF59d3b1907f8c59d3b190, - FFFF59d3b1f87f8c59d3b1f8, - FFFF59d3b2607f8c59d3b260, - FFFF59d3b2c87f8c59d3b2c8, - FFFF59d3b3307f8c59d3b330, - FFFF59d3b3987f8c59d3b398, - FFFF59d3b4007f8c59d3b400, - FFFF59d3b4687f8c59d3b468, - FFFF5a8182007f8c5a818200, - FFFF5a8182687f8c5a818268, - FFFF5a8182d07f8c5a8182d0, - FFFF5a8183387f8c5a818338, - FFFF5a8183a07f8c5a8183a0, - FFFF5a8184087f8c5a818408, - FFFF5a8184707f8c5a818470, - FFFF5a8184d87f8c5a8184d8, - FFFF5a8185407f8c5a818540, - FFFF5a8185a87f8c5a8185a8, - FFFF5a8186107f8c5a818610, - FFFF5a8186787f8c5a818678, + FFFF3bf0f0207ff03bf0f020, + FFFF3bf08af07ff03bf08af0, + FFFF3bf08b587ff03bf08b58, + FFFF3bf08bc07ff03bf08bc0, + FFFF3bf08c287ff03bf08c28, + FFFF3bf08c907ff03bf08c90, + FFFF3bf08cf87ff03bf08cf8, + FFFF3bf08d607ff03bf08d60, + FFFF3bf08dc87ff03bf08dc8, + FFFF3d008e007ff03d008e00, + FFFF3d008e687ff03d008e68, + FFFF3d008ed07ff03d008ed0, + FFFF3d008f387ff03d008f38, + FFFF3d008fa07ff03d008fa0, + FFFF3d0090087ff03d009008, + FFFF3d0090707ff03d009070, + FFFF3d0090d87ff03d0090d8, + FFFF3d0091407ff03d009140, + FFFF3d0091a87ff03d0091a8, + FFFF3d0092107ff03d009210, + FFFF3d0092787ff03d009278, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2461,38 +2461,38 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelAABB */ - FFFF5b01fe707f8c5b01fe70 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b01fe707f8c5b01fe70 /* BpBroadPhase.cpp */; }; - FFFF5b01fed87f8c5b01fed8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b01fed87f8c5b01fed8 /* BpBroadPhaseMBP.cpp */; }; - FFFF5b01ff407f8c5b01ff40 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b01ff407f8c5b01ff40 /* BpBroadPhaseSap.cpp */; }; - FFFF5b01ffa87f8c5b01ffa8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b01ffa87f8c5b01ffa8 /* BpBroadPhaseSapAux.cpp */; }; - FFFF5b0200107f8c5b020010 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0200107f8c5b020010 /* BpMBPTasks.cpp */; }; - FFFF5b0200787f8c5b020078 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0200787f8c5b020078 /* BpSAPTasks.cpp */; }; - FFFF5b0200e07f8c5b0200e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b0200e07f8c5b0200e0 /* BpSimpleAABBManager.cpp */; }; + FFFF3c814e707ff03c814e70 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c814e707ff03c814e70 /* BpBroadPhase.cpp */; }; + FFFF3c814ed87ff03c814ed8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c814ed87ff03c814ed8 /* BpBroadPhaseMBP.cpp */; }; + FFFF3c814f407ff03c814f40 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c814f407ff03c814f40 /* BpBroadPhaseSap.cpp */; }; + FFFF3c814fa87ff03c814fa8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c814fa87ff03c814fa8 /* BpBroadPhaseSapAux.cpp */; }; + FFFF3c8150107ff03c815010 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8150107ff03c815010 /* BpMBPTasks.cpp */; }; + FFFF3c8150787ff03c815078 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8150787ff03c815078 /* BpSAPTasks.cpp */; }; + FFFF3c8150e07ff03c8150e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c8150e07ff03c8150e0 /* BpSimpleAABBManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b808e607f8c5b808e60 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5b80c5f07f8c5b80c5f0 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80c6587f8c5b80c658 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80c6c07f8c5b80c6c0 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b80c7287f8c5b80c728 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b01fc007f8c5b01fc00 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b01fc687f8c5b01fc68 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b01fcd07f8c5b01fcd0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b01fd387f8c5b01fd38 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b01fda07f8c5b01fda0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b01fe087f8c5b01fe08 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b01fe707f8c5b01fe70 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b01fed87f8c5b01fed8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b01ff407f8c5b01ff40 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b01ffa87f8c5b01ffa8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0200107f8c5b020010 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0200787f8c5b020078 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5b0200e07f8c5b0200e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b971cd07ff03b971cd0 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3b95fd407ff03b95fd40 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b95fda87ff03b95fda8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b95fe107ff03b95fe10 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b95fe787ff03b95fe78 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c814c007ff03c814c00 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c814c687ff03c814c68 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c814cd07ff03c814cd0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c814d387ff03c814d38 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c814da07ff03c814da0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c814e087ff03c814e08 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c814e707ff03c814e70 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c814ed87ff03c814ed8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c814f407ff03c814f40 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c814fa87ff03c814fa8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8150107ff03c815010 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8150787ff03c815078 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c8150e07ff03c8150e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF25b808e607f8c5b808e60 /* Resources */ = { + FFF23b971cd07ff03b971cd0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2502,7 +2502,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b808e607f8c5b808e60 /* Frameworks */ = { + FFFC3b971cd07ff03b971cd0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2512,17 +2512,17 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b808e607f8c5b808e60 /* Sources */ = { + FFF83b971cd07ff03b971cd0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5b01fe707f8c5b01fe70, - FFFF5b01fed87f8c5b01fed8, - FFFF5b01ff407f8c5b01ff40, - FFFF5b01ffa87f8c5b01ffa8, - FFFF5b0200107f8c5b020010, - FFFF5b0200787f8c5b020078, - FFFF5b0200e07f8c5b0200e0, + FFFF3c814e707ff03c814e70, + FFFF3c814ed87ff03c814ed8, + FFFF3c814f407ff03c814f40, + FFFF3c814fa87ff03c814fa8, + FFFF3c8150107ff03c815010, + FFFF3c8150787ff03c815078, + FFFF3c8150e07ff03c8150e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2534,105 +2534,105 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelDynamics */ - FFFF5a02d2007f8c5a02d200 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d2007f8c5a02d200 /* DyArticulation.cpp */; }; - FFFF5a02d2687f8c5a02d268 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d2687f8c5a02d268 /* DyArticulationContactPrep.cpp */; }; - FFFF5a02d2d07f8c5a02d2d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d2d07f8c5a02d2d0 /* DyArticulationContactPrepPF.cpp */; }; - FFFF5a02d3387f8c5a02d338 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d3387f8c5a02d338 /* DyArticulationHelper.cpp */; }; - FFFF5a02d3a07f8c5a02d3a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d3a07f8c5a02d3a0 /* DyArticulationSIMD.cpp */; }; - FFFF5a02d4087f8c5a02d408 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d4087f8c5a02d408 /* DyArticulationScalar.cpp */; }; - FFFF5a02d4707f8c5a02d470 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d4707f8c5a02d470 /* DyConstraintPartition.cpp */; }; - FFFF5a02d4d87f8c5a02d4d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d4d87f8c5a02d4d8 /* DyConstraintSetup.cpp */; }; - FFFF5a02d5407f8c5a02d540 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d5407f8c5a02d540 /* DyConstraintSetupBlock.cpp */; }; - FFFF5a02d5a87f8c5a02d5a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d5a87f8c5a02d5a8 /* DyContactPrep.cpp */; }; - FFFF5a02d6107f8c5a02d610 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d6107f8c5a02d610 /* DyContactPrep4.cpp */; }; - FFFF5a02d6787f8c5a02d678 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d6787f8c5a02d678 /* DyContactPrep4PF.cpp */; }; - FFFF5a02d6e07f8c5a02d6e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d6e07f8c5a02d6e0 /* DyContactPrepPF.cpp */; }; - FFFF5a02d7487f8c5a02d748 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d7487f8c5a02d748 /* DyDynamics.cpp */; }; - FFFF5a02d7b07f8c5a02d7b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d7b07f8c5a02d7b0 /* DyFrictionCorrelation.cpp */; }; - FFFF5a02d8187f8c5a02d818 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d8187f8c5a02d818 /* DyRigidBodyToSolverBody.cpp */; }; - FFFF5a02d8807f8c5a02d880 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d8807f8c5a02d880 /* DySolverConstraints.cpp */; }; - FFFF5a02d8e87f8c5a02d8e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d8e87f8c5a02d8e8 /* DySolverConstraintsBlock.cpp */; }; - FFFF5a02d9507f8c5a02d950 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d9507f8c5a02d950 /* DySolverControl.cpp */; }; - FFFF5a02d9b87f8c5a02d9b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02d9b87f8c5a02d9b8 /* DySolverControlPF.cpp */; }; - FFFF5a02da207f8c5a02da20 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02da207f8c5a02da20 /* DySolverPFConstraints.cpp */; }; - FFFF5a02da887f8c5a02da88 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02da887f8c5a02da88 /* DySolverPFConstraintsBlock.cpp */; }; - FFFF5a02daf07f8c5a02daf0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02daf07f8c5a02daf0 /* DyThreadContext.cpp */; }; - FFFF5a02db587f8c5a02db58 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5a02db587f8c5a02db58 /* DyThresholdTable.cpp */; }; + FFFF3c1930007ff03c193000 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1930007ff03c193000 /* DyArticulation.cpp */; }; + FFFF3c1930687ff03c193068 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1930687ff03c193068 /* DyArticulationContactPrep.cpp */; }; + FFFF3c1930d07ff03c1930d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1930d07ff03c1930d0 /* DyArticulationContactPrepPF.cpp */; }; + FFFF3c1931387ff03c193138 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1931387ff03c193138 /* DyArticulationHelper.cpp */; }; + FFFF3c1931a07ff03c1931a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1931a07ff03c1931a0 /* DyArticulationSIMD.cpp */; }; + FFFF3c1932087ff03c193208 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1932087ff03c193208 /* DyArticulationScalar.cpp */; }; + FFFF3c1932707ff03c193270 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1932707ff03c193270 /* DyConstraintPartition.cpp */; }; + FFFF3c1932d87ff03c1932d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1932d87ff03c1932d8 /* DyConstraintSetup.cpp */; }; + FFFF3c1933407ff03c193340 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1933407ff03c193340 /* DyConstraintSetupBlock.cpp */; }; + FFFF3c1933a87ff03c1933a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1933a87ff03c1933a8 /* DyContactPrep.cpp */; }; + FFFF3c1934107ff03c193410 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1934107ff03c193410 /* DyContactPrep4.cpp */; }; + FFFF3c1934787ff03c193478 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1934787ff03c193478 /* DyContactPrep4PF.cpp */; }; + FFFF3c1934e07ff03c1934e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1934e07ff03c1934e0 /* DyContactPrepPF.cpp */; }; + FFFF3c1935487ff03c193548 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1935487ff03c193548 /* DyDynamics.cpp */; }; + FFFF3c1935b07ff03c1935b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1935b07ff03c1935b0 /* DyFrictionCorrelation.cpp */; }; + FFFF3c1936187ff03c193618 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1936187ff03c193618 /* DyRigidBodyToSolverBody.cpp */; }; + FFFF3c1936807ff03c193680 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1936807ff03c193680 /* DySolverConstraints.cpp */; }; + FFFF3c1936e87ff03c1936e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1936e87ff03c1936e8 /* DySolverConstraintsBlock.cpp */; }; + FFFF3c1937507ff03c193750 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1937507ff03c193750 /* DySolverControl.cpp */; }; + FFFF3c1937b87ff03c1937b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1937b87ff03c1937b8 /* DySolverControlPF.cpp */; }; + FFFF3c1938207ff03c193820 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1938207ff03c193820 /* DySolverPFConstraints.cpp */; }; + FFFF3c1938887ff03c193888 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1938887ff03c193888 /* DySolverPFConstraintsBlock.cpp */; }; + FFFF3c1938f07ff03c1938f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1938f07ff03c1938f0 /* DyThreadContext.cpp */; }; + FFFF3c1939587ff03c193958 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD3c1939587ff03c193958 /* DyThresholdTable.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD59c249907f8c59c24990 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5a02d2007f8c5a02d200 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d2687f8c5a02d268 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d2d07f8c5a02d2d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d3387f8c5a02d338 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d3a07f8c5a02d3a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d4087f8c5a02d408 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d4707f8c5a02d470 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d4d87f8c5a02d4d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d5407f8c5a02d540 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d5a87f8c5a02d5a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d6107f8c5a02d610 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d6787f8c5a02d678 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d6e07f8c5a02d6e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d7487f8c5a02d748 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d7b07f8c5a02d7b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d8187f8c5a02d818 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d8807f8c5a02d880 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d8e87f8c5a02d8e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d9507f8c5a02d950 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02d9b87f8c5a02d9b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02da207f8c5a02da20 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02da887f8c5a02da88 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02daf07f8c5a02daf0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a02db587f8c5a02db58 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD59c31cb07f8c59c31cb0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD59c31d187f8c59c31d18 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD59c31d807f8c59c31d80 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; - FFFD59c31de87f8c59c31de8 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD59c31e507f8c59c31e50 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD59c31eb87f8c59c31eb8 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02ea007f8c5a02ea00 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02ea687f8c5a02ea68 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02ead07f8c5a02ead0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02eb387f8c5a02eb38 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02eba07f8c5a02eba0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02ec087f8c5a02ec08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02ec707f8c5a02ec70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02ecd87f8c5a02ecd8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02ed407f8c5a02ed40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02eda87f8c5a02eda8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02ee107f8c5a02ee10 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02ee787f8c5a02ee78 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02eee07f8c5a02eee0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02ef487f8c5a02ef48 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02efb07f8c5a02efb0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f0187f8c5a02f018 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f0807f8c5a02f080 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f0e87f8c5a02f0e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f1507f8c5a02f150 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f1b87f8c5a02f1b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f2207f8c5a02f220 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f2887f8c5a02f288 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f2f07f8c5a02f2f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f3587f8c5a02f358 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f3c07f8c5a02f3c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f4287f8c5a02f428 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f4907f8c5a02f490 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f4f87f8c5a02f4f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f5607f8c5a02f560 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f5c87f8c5a02f5c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f6307f8c5a02f630 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f6987f8c5a02f698 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f7007f8c5a02f700 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f7687f8c5a02f768 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f7d07f8c5a02f7d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f8387f8c5a02f838 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a02f8a07f8c5a02f8a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD3ba330407ff03ba33040 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3c1930007ff03c193000 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1930687ff03c193068 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1930d07ff03c1930d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1931387ff03c193138 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1931a07ff03c1931a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1932087ff03c193208 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1932707ff03c193270 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1932d87ff03c1932d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1933407ff03c193340 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1933a87ff03c1933a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1934107ff03c193410 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1934787ff03c193478 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1934e07ff03c1934e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1935487ff03c193548 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1935b07ff03c1935b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1936187ff03c193618 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1936807ff03c193680 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1936e87ff03c1936e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1937507ff03c193750 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1937b87ff03c1937b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1938207ff03c193820 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1938887ff03c193888 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1938f07ff03c1938f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c1939587ff03c193958 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3ba2da507ff03ba2da50 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD3ba2dab87ff03ba2dab8 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3ba2db207ff03ba2db20 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; + FFFD3ba2db887ff03ba2db88 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD3ba2dbf07ff03ba2dbf0 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD3ba2dc587ff03ba2dc58 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1948007ff03c194800 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1948687ff03c194868 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1948d07ff03c1948d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1949387ff03c194938 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1949a07ff03c1949a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c194a087ff03c194a08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c194a707ff03c194a70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c194ad87ff03c194ad8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c194b407ff03c194b40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c194ba87ff03c194ba8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c194c107ff03c194c10 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c194c787ff03c194c78 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c194ce07ff03c194ce0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c194d487ff03c194d48 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c194db07ff03c194db0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c194e187ff03c194e18 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c194e807ff03c194e80 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c194ee87ff03c194ee8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c194f507ff03c194f50 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c194fb87ff03c194fb8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1950207ff03c195020 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1950887ff03c195088 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1950f07ff03c1950f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1951587ff03c195158 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1951c07ff03c1951c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1952287ff03c195228 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1952907ff03c195290 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1952f87ff03c1952f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1953607ff03c195360 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1953c87ff03c1953c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1954307ff03c195430 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1954987ff03c195498 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1955007ff03c195500 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1955687ff03c195568 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1955d07ff03c1955d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1956387ff03c195638 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1956a07ff03c1956a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF259c249907f8c59c24990 /* Resources */ = { + FFF23ba330407ff03ba33040 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2642,7 +2642,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC59c249907f8c59c24990 /* Frameworks */ = { + FFFC3ba330407ff03ba33040 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2652,34 +2652,34 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF859c249907f8c59c24990 /* Sources */ = { + FFF83ba330407ff03ba33040 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5a02d2007f8c5a02d200, - FFFF5a02d2687f8c5a02d268, - FFFF5a02d2d07f8c5a02d2d0, - FFFF5a02d3387f8c5a02d338, - FFFF5a02d3a07f8c5a02d3a0, - FFFF5a02d4087f8c5a02d408, - FFFF5a02d4707f8c5a02d470, - FFFF5a02d4d87f8c5a02d4d8, - FFFF5a02d5407f8c5a02d540, - FFFF5a02d5a87f8c5a02d5a8, - FFFF5a02d6107f8c5a02d610, - FFFF5a02d6787f8c5a02d678, - FFFF5a02d6e07f8c5a02d6e0, - FFFF5a02d7487f8c5a02d748, - FFFF5a02d7b07f8c5a02d7b0, - FFFF5a02d8187f8c5a02d818, - FFFF5a02d8807f8c5a02d880, - FFFF5a02d8e87f8c5a02d8e8, - FFFF5a02d9507f8c5a02d950, - FFFF5a02d9b87f8c5a02d9b8, - FFFF5a02da207f8c5a02da20, - FFFF5a02da887f8c5a02da88, - FFFF5a02daf07f8c5a02daf0, - FFFF5a02db587f8c5a02db58, + FFFF3c1930007ff03c193000, + FFFF3c1930687ff03c193068, + FFFF3c1930d07ff03c1930d0, + FFFF3c1931387ff03c193138, + FFFF3c1931a07ff03c1931a0, + FFFF3c1932087ff03c193208, + FFFF3c1932707ff03c193270, + FFFF3c1932d87ff03c1932d8, + FFFF3c1933407ff03c193340, + FFFF3c1933a87ff03c1933a8, + FFFF3c1934107ff03c193410, + FFFF3c1934787ff03c193478, + FFFF3c1934e07ff03c1934e0, + FFFF3c1935487ff03c193548, + FFFF3c1935b07ff03c1935b0, + FFFF3c1936187ff03c193618, + FFFF3c1936807ff03c193680, + FFFF3c1936e87ff03c1936e8, + FFFF3c1937507ff03c193750, + FFFF3c1937b87ff03c1937b8, + FFFF3c1938207ff03c193820, + FFFF3c1938887ff03c193888, + FFFF3c1938f07ff03c1938f0, + FFFF3c1939587ff03c193958, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2691,73 +2691,73 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelCloth */ - FFFF5a8244907f8c5a824490 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8244907f8c5a824490 /* Allocator.cpp */; }; - FFFF5a8244f87f8c5a8244f8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8244f87f8c5a8244f8 /* Factory.cpp */; }; - FFFF5a8245607f8c5a824560 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8245607f8c5a824560 /* PhaseConfig.cpp */; }; - FFFF5a8245c87f8c5a8245c8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8245c87f8c5a8245c8 /* SwCloth.cpp */; }; - FFFF5a8246307f8c5a824630 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8246307f8c5a824630 /* SwClothData.cpp */; }; - FFFF5a8246987f8c5a824698 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8246987f8c5a824698 /* SwCollision.cpp */; }; - FFFF5a8247007f8c5a824700 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8247007f8c5a824700 /* SwFabric.cpp */; }; - FFFF5a8247687f8c5a824768 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8247687f8c5a824768 /* SwFactory.cpp */; }; - FFFF5a8247d07f8c5a8247d0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8247d07f8c5a8247d0 /* SwInterCollision.cpp */; }; - FFFF5a8248387f8c5a824838 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8248387f8c5a824838 /* SwSelfCollision.cpp */; }; - FFFF5a8248a07f8c5a8248a0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8248a07f8c5a8248a0 /* SwSolver.cpp */; }; - FFFF5a8249087f8c5a824908 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8249087f8c5a824908 /* SwSolverKernel.cpp */; }; - FFFF5a8249707f8c5a824970 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8249707f8c5a824970 /* TripletScheduler.cpp */; }; + FFFF3b0466907ff03b046690 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b0466907ff03b046690 /* Allocator.cpp */; }; + FFFF3b0466f87ff03b0466f8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b0466f87ff03b0466f8 /* Factory.cpp */; }; + FFFF3b0467607ff03b046760 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b0467607ff03b046760 /* PhaseConfig.cpp */; }; + FFFF3b0467c87ff03b0467c8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b0467c87ff03b0467c8 /* SwCloth.cpp */; }; + FFFF3b0468307ff03b046830 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b0468307ff03b046830 /* SwClothData.cpp */; }; + FFFF3b0468987ff03b046898 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b0468987ff03b046898 /* SwCollision.cpp */; }; + FFFF3b0469007ff03b046900 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b0469007ff03b046900 /* SwFabric.cpp */; }; + FFFF3b0469687ff03b046968 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b0469687ff03b046968 /* SwFactory.cpp */; }; + FFFF3b0469d07ff03b0469d0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b0469d07ff03b0469d0 /* SwInterCollision.cpp */; }; + FFFF3b046a387ff03b046a38 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b046a387ff03b046a38 /* SwSelfCollision.cpp */; }; + FFFF3b046aa07ff03b046aa0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b046aa07ff03b046aa0 /* SwSolver.cpp */; }; + FFFF3b046b087ff03b046b08 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b046b087ff03b046b08 /* SwSolverKernel.cpp */; }; + FFFF3b046b707ff03b046b70 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b046b707ff03b046b70 /* TripletScheduler.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD59d4aa007f8c59d4aa00 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD59d5a8b07f8c59d5a8b0 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d5a9187f8c59d5a918 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d5a9807f8c59d5a980 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d5a9e87f8c59d5a9e8 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d5aa507f8c59d5aa50 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d5aab87f8c59d5aab8 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d5ab207f8c59d5ab20 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a823a007f8c5a823a00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a823a687f8c5a823a68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a823ad07f8c5a823ad0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a823b387f8c5a823b38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a823ba07f8c5a823ba0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a823c087f8c5a823c08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a823c707f8c5a823c70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a823cd87f8c5a823cd8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a823d407f8c5a823d40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a823da87f8c5a823da8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a823e107f8c5a823e10 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a823e787f8c5a823e78 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a823ee07f8c5a823ee0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a823f487f8c5a823f48 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a823fb07f8c5a823fb0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8240187f8c5a824018 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8240807f8c5a824080 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8240e87f8c5a8240e8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8241507f8c5a824150 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8241b87f8c5a8241b8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8242207f8c5a824220 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8242887f8c5a824288 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8242f07f8c5a8242f0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8243587f8c5a824358 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8243c07f8c5a8243c0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8244287f8c5a824428 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; - FFFD5a8244907f8c5a824490 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8244f87f8c5a8244f8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8245607f8c5a824560 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8245c87f8c5a8245c8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8246307f8c5a824630 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8246987f8c5a824698 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8247007f8c5a824700 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8247687f8c5a824768 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8247d07f8c5a8247d0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8248387f8c5a824838 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8248a07f8c5a8248a0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8249087f8c5a824908 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5a8249707f8c5a824970 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3bdf7df07ff03bdf7df0 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3bdfb3007ff03bdfb300 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bdfb3687ff03bdfb368 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bdfb3d07ff03bdfb3d0 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bdfb4387ff03bdfb438 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bdfb4a07ff03bdfb4a0 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bdfb5087ff03bdfb508 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bdfb5707ff03bdfb570 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b045c007ff03b045c00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b045c687ff03b045c68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b045cd07ff03b045cd0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b045d387ff03b045d38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b045da07ff03b045da0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b045e087ff03b045e08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b045e707ff03b045e70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b045ed87ff03b045ed8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b045f407ff03b045f40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b045fa87ff03b045fa8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0460107ff03b046010 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0460787ff03b046078 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0460e07ff03b0460e0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0461487ff03b046148 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0461b07ff03b0461b0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0462187ff03b046218 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0462807ff03b046280 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0462e87ff03b0462e8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0463507ff03b046350 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0463b87ff03b0463b8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0464207ff03b046420 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0464887ff03b046488 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0464f07ff03b0464f0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0465587ff03b046558 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0465c07ff03b0465c0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0466287ff03b046628 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b0466907ff03b046690 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b0466f87ff03b0466f8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b0467607ff03b046760 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b0467c87ff03b0467c8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b0468307ff03b046830 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b0468987ff03b046898 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b0469007ff03b046900 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b0469687ff03b046968 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b0469d07ff03b0469d0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b046a387ff03b046a38 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b046aa07ff03b046aa0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b046b087ff03b046b08 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b046b707ff03b046b70 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF259d4aa007f8c59d4aa00 /* Resources */ = { + FFF23bdf7df07ff03bdf7df0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2767,7 +2767,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC59d4aa007f8c59d4aa00 /* Frameworks */ = { + FFFC3bdf7df07ff03bdf7df0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2777,23 +2777,23 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF859d4aa007f8c59d4aa00 /* Sources */ = { + FFF83bdf7df07ff03bdf7df0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5a8244907f8c5a824490, - FFFF5a8244f87f8c5a8244f8, - FFFF5a8245607f8c5a824560, - FFFF5a8245c87f8c5a8245c8, - FFFF5a8246307f8c5a824630, - FFFF5a8246987f8c5a824698, - FFFF5a8247007f8c5a824700, - FFFF5a8247687f8c5a824768, - FFFF5a8247d07f8c5a8247d0, - FFFF5a8248387f8c5a824838, - FFFF5a8248a07f8c5a8248a0, - FFFF5a8249087f8c5a824908, - FFFF5a8249707f8c5a824970, + FFFF3b0466907ff03b046690, + FFFF3b0466f87ff03b0466f8, + FFFF3b0467607ff03b046760, + FFFF3b0467c87ff03b0467c8, + FFFF3b0468307ff03b046830, + FFFF3b0468987ff03b046898, + FFFF3b0469007ff03b046900, + FFFF3b0469687ff03b046968, + FFFF3b0469d07ff03b0469d0, + FFFF3b046a387ff03b046a38, + FFFF3b046aa07ff03b046aa0, + FFFF3b046b087ff03b046b08, + FFFF3b046b707ff03b046b70, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2805,79 +2805,79 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelParticles */ - FFFF5919cd587f8c5919cd58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919cd587f8c5919cd58 /* PtBatcher.cpp */; }; - FFFF5919cdc07f8c5919cdc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919cdc07f8c5919cdc0 /* PtBodyTransformVault.cpp */; }; - FFFF5919ce287f8c5919ce28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919ce287f8c5919ce28 /* PtCollision.cpp */; }; - FFFF5919ce907f8c5919ce90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919ce907f8c5919ce90 /* PtCollisionBox.cpp */; }; - FFFF5919cef87f8c5919cef8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919cef87f8c5919cef8 /* PtCollisionCapsule.cpp */; }; - FFFF5919cf607f8c5919cf60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919cf607f8c5919cf60 /* PtCollisionConvex.cpp */; }; - FFFF5919cfc87f8c5919cfc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919cfc87f8c5919cfc8 /* PtCollisionMesh.cpp */; }; - FFFF5919d0307f8c5919d030 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919d0307f8c5919d030 /* PtCollisionPlane.cpp */; }; - FFFF5919d0987f8c5919d098 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919d0987f8c5919d098 /* PtCollisionSphere.cpp */; }; - FFFF5919d1007f8c5919d100 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919d1007f8c5919d100 /* PtContextCpu.cpp */; }; - FFFF5919d1687f8c5919d168 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919d1687f8c5919d168 /* PtDynamics.cpp */; }; - FFFF5919d1d07f8c5919d1d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919d1d07f8c5919d1d0 /* PtParticleData.cpp */; }; - FFFF5919d2387f8c5919d238 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919d2387f8c5919d238 /* PtParticleShapeCpu.cpp */; }; - FFFF5919d2a07f8c5919d2a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919d2a07f8c5919d2a0 /* PtParticleSystemSimCpu.cpp */; }; - FFFF5919d3087f8c5919d308 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919d3087f8c5919d308 /* PtSpatialHash.cpp */; }; - FFFF5919d3707f8c5919d370 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5919d3707f8c5919d370 /* PtSpatialLocalHash.cpp */; }; + FFFF3c19ed587ff03c19ed58 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19ed587ff03c19ed58 /* PtBatcher.cpp */; }; + FFFF3c19edc07ff03c19edc0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19edc07ff03c19edc0 /* PtBodyTransformVault.cpp */; }; + FFFF3c19ee287ff03c19ee28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19ee287ff03c19ee28 /* PtCollision.cpp */; }; + FFFF3c19ee907ff03c19ee90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19ee907ff03c19ee90 /* PtCollisionBox.cpp */; }; + FFFF3c19eef87ff03c19eef8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19eef87ff03c19eef8 /* PtCollisionCapsule.cpp */; }; + FFFF3c19ef607ff03c19ef60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19ef607ff03c19ef60 /* PtCollisionConvex.cpp */; }; + FFFF3c19efc87ff03c19efc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19efc87ff03c19efc8 /* PtCollisionMesh.cpp */; }; + FFFF3c19f0307ff03c19f030 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19f0307ff03c19f030 /* PtCollisionPlane.cpp */; }; + FFFF3c19f0987ff03c19f098 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19f0987ff03c19f098 /* PtCollisionSphere.cpp */; }; + FFFF3c19f1007ff03c19f100 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19f1007ff03c19f100 /* PtContextCpu.cpp */; }; + FFFF3c19f1687ff03c19f168 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19f1687ff03c19f168 /* PtDynamics.cpp */; }; + FFFF3c19f1d07ff03c19f1d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19f1d07ff03c19f1d0 /* PtParticleData.cpp */; }; + FFFF3c19f2387ff03c19f238 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19f2387ff03c19f238 /* PtParticleShapeCpu.cpp */; }; + FFFF3c19f2a07ff03c19f2a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19f2a07ff03c19f2a0 /* PtParticleSystemSimCpu.cpp */; }; + FFFF3c19f3087ff03c19f308 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19f3087ff03c19f308 /* PtSpatialHash.cpp */; }; + FFFF3c19f3707ff03c19f370 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3c19f3707ff03c19f370 /* PtSpatialLocalHash.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5992d3c07f8c5992d3c0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD591968007f8c59196800 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; - FFFD591968687f8c59196868 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD591968d07f8c591968d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; - FFFD591969387f8c59196938 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; - FFFD591969a07f8c591969a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD59196a087f8c59196a08 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD59196a707f8c59196a70 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD59196ad87f8c59196ad8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD59196b407f8c59196b40 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD59196ba87f8c59196ba8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919c4007f8c5919c400 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919c4687f8c5919c468 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919c4d07f8c5919c4d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919c5387f8c5919c538 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919c5a07f8c5919c5a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919c6087f8c5919c608 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919c6707f8c5919c670 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919c6d87f8c5919c6d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919c7407f8c5919c740 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919c7a87f8c5919c7a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919c8107f8c5919c810 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919c8787f8c5919c878 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919c8e07f8c5919c8e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919c9487f8c5919c948 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919c9b07f8c5919c9b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919ca187f8c5919ca18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919ca807f8c5919ca80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919cae87f8c5919cae8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919cb507f8c5919cb50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919cbb87f8c5919cbb8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919cc207f8c5919cc20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919cc887f8c5919cc88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919ccf07f8c5919ccf0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; - FFFD5919cd587f8c5919cd58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5919cdc07f8c5919cdc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5919ce287f8c5919ce28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5919ce907f8c5919ce90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5919cef87f8c5919cef8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5919cf607f8c5919cf60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5919cfc87f8c5919cfc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5919d0307f8c5919d030 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5919d0987f8c5919d098 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5919d1007f8c5919d100 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5919d1687f8c5919d168 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5919d1d07f8c5919d1d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5919d2387f8c5919d238 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5919d2a07f8c5919d2a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5919d3087f8c5919d308 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD5919d3707f8c5919d370 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3ba23a707ff03ba23a70 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3c1920007ff03c192000 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1920687ff03c192068 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1920d07ff03c1920d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1921387ff03c192138 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1921a07ff03c1921a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1922087ff03c192208 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1922707ff03c192270 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1922d87ff03c1922d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1923407ff03c192340 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c1923a87ff03c1923a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19e4007ff03c19e400 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19e4687ff03c19e468 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19e4d07ff03c19e4d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19e5387ff03c19e538 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19e5a07ff03c19e5a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19e6087ff03c19e608 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19e6707ff03c19e670 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19e6d87ff03c19e6d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19e7407ff03c19e740 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19e7a87ff03c19e7a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19e8107ff03c19e810 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19e8787ff03c19e878 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19e8e07ff03c19e8e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19e9487ff03c19e948 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19e9b07ff03c19e9b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19ea187ff03c19ea18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19ea807ff03c19ea80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19eae87ff03c19eae8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19eb507ff03c19eb50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19ebb87ff03c19ebb8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19ec207ff03c19ec20 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19ec887ff03c19ec88 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19ecf07ff03c19ecf0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3c19ed587ff03c19ed58 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c19edc07ff03c19edc0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c19ee287ff03c19ee28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c19ee907ff03c19ee90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c19eef87ff03c19eef8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c19ef607ff03c19ef60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c19efc87ff03c19efc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c19f0307ff03c19f030 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c19f0987ff03c19f098 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c19f1007ff03c19f100 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c19f1687ff03c19f168 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c19f1d07ff03c19f1d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c19f2387ff03c19f238 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c19f2a07ff03c19f2a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c19f3087ff03c19f308 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3c19f3707ff03c19f370 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF25992d3c07f8c5992d3c0 /* Resources */ = { + FFF23ba23a707ff03ba23a70 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2887,7 +2887,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5992d3c07f8c5992d3c0 /* Frameworks */ = { + FFFC3ba23a707ff03ba23a70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2897,26 +2897,26 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85992d3c07f8c5992d3c0 /* Sources */ = { + FFF83ba23a707ff03ba23a70 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5919cd587f8c5919cd58, - FFFF5919cdc07f8c5919cdc0, - FFFF5919ce287f8c5919ce28, - FFFF5919ce907f8c5919ce90, - FFFF5919cef87f8c5919cef8, - FFFF5919cf607f8c5919cf60, - FFFF5919cfc87f8c5919cfc8, - FFFF5919d0307f8c5919d030, - FFFF5919d0987f8c5919d098, - FFFF5919d1007f8c5919d100, - FFFF5919d1687f8c5919d168, - FFFF5919d1d07f8c5919d1d0, - FFFF5919d2387f8c5919d238, - FFFF5919d2a07f8c5919d2a0, - FFFF5919d3087f8c5919d308, - FFFF5919d3707f8c5919d370, + FFFF3c19ed587ff03c19ed58, + FFFF3c19edc07ff03c19edc0, + FFFF3c19ee287ff03c19ee28, + FFFF3c19ee907ff03c19ee90, + FFFF3c19eef87ff03c19eef8, + FFFF3c19ef607ff03c19ef60, + FFFF3c19efc87ff03c19efc8, + FFFF3c19f0307ff03c19f030, + FFFF3c19f0987ff03c19f098, + FFFF3c19f1007ff03c19f100, + FFFF3c19f1687ff03c19f168, + FFFF3c19f1d07ff03c19f1d0, + FFFF3c19f2387ff03c19f238, + FFFF3c19f2a07ff03c19f2a0, + FFFF3c19f3087ff03c19f308, + FFFF3c19f3707ff03c19f370, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2928,22 +2928,22 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxTask */ - FFFF59d64d107f8c59d64d10 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD59d64d107f8c59d64d10 /* src/TaskManager.cpp */; }; + FFFF3bf32b807ff03bf32b80 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3bf32b807ff03bf32b80 /* src/TaskManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD59d66b807f8c59d66b80 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD59d6c8407f8c59d6c840 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d6c8a87f8c59d6c8a8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d6c9107f8c59d6c910 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d6c9787f8c59d6c978 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d6c9e07f8c59d6c9e0 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d6ca487f8c59d6ca48 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD59d64d107f8c59d64d10 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3bf5a4307ff03bf5a430 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3bf30c007ff03bf30c00 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf30c687ff03bf30c68 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf30cd07ff03bf30cd0 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf30d387ff03bf30d38 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf30da07ff03bf30da0 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf30e087ff03bf30e08 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3bf32b807ff03bf32b80 /* 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 */ - FFF259d66b807f8c59d66b80 /* Resources */ = { + FFF23bf5a4307ff03bf5a430 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2953,7 +2953,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC59d66b807f8c59d66b80 /* Frameworks */ = { + FFFC3bf5a4307ff03bf5a430 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2963,11 +2963,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF859d66b807f8c59d66b80 /* Sources */ = { + FFF83bf5a4307ff03bf5a430 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF59d64d107f8c59d64d10, + FFFF3bf32b807ff03bf32b80, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2979,17 +2979,17 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PsFastXml */ - FFFF5b817ef07f8c5b817ef0 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b817ef07f8c5b817ef0 /* PsFastXml.cpp */; }; + FFFF3b98b9a07ff03b98b9a0 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3b98b9a07ff03b98b9a0 /* PsFastXml.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD5b8199707f8c5b819970 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD5b817df07f8c5b817df0 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; - FFFD5b817ef07f8c5b817ef0 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3b98b2007ff03b98b200 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3b98b8a07ff03b98b8a0 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; + FFFD3b98b9a07ff03b98b9a0 /* 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 */ - FFF25b8199707f8c5b819970 /* Resources */ = { + FFF23b98b2007ff03b98b200 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2999,7 +2999,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC5b8199707f8c5b819970 /* Frameworks */ = { + FFFC3b98b2007ff03b98b200 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3009,11 +3009,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF85b8199707f8c5b819970 /* Sources */ = { + FFF83b98b2007ff03b98b200 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF5b817ef07f8c5b817ef0, + FFFF3b98b9a07ff03b98b9a0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3025,1969 +3025,1969 @@ /* End PBXTargetDependency section */ /* Begin PBXContainerItemProxy section */ - FFF55b81c8207f8c5b81c820 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53b9796607ff03b979660 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b81c8207f8c5b81c820 /* PhysX */; + remoteGlobalIDString = FFFA3b9796607ff03b979660 /* PhysX */; remoteInfo = "PhysX"; }; - FFF55b8241407f8c5b824140 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53b992b807ff03b992b80 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b8241407f8c5b824140 /* PhysXCharacterKinematic */; + remoteGlobalIDString = FFFA3b992b807ff03b992b80 /* PhysXCharacterKinematic */; remoteInfo = "PhysXCharacterKinematic"; }; - FFF55b8256907f8c5b825690 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53b993f207ff03b993f20 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b8256907f8c5b825690 /* PhysXVehicle */; + remoteGlobalIDString = FFFA3b993f207ff03b993f20 /* PhysXVehicle */; remoteInfo = "PhysXVehicle"; }; - FFF55b836b207f8c5b836b20 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53b9a54207ff03b9a5420 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b836b207f8c5b836b20 /* PhysXExtensions */; + remoteGlobalIDString = FFFA3b9a54207ff03b9a5420 /* PhysXExtensions */; remoteInfo = "PhysXExtensions"; }; - FFF55b847c107f8c5b847c10 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53b9b66107ff03b9b6610 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b847c107f8c5b847c10 /* SceneQuery */; + remoteGlobalIDString = FFFA3b9b66107ff03b9b6610 /* SceneQuery */; remoteInfo = "SceneQuery"; }; - FFF55b84c1707f8c5b84c170 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53b951b307ff03b951b30 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b84c1707f8c5b84c170 /* SimulationController */; + remoteGlobalIDString = FFFA3b951b307ff03b951b30 /* SimulationController */; remoteInfo = "SimulationController"; }; - FFF55b8507d07f8c5b8507d0 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53dbe48807ff03dbe4880 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b8507d07f8c5b8507d0 /* PhysXCooking */; + remoteGlobalIDString = FFFA3dbe48807ff03dbe4880 /* PhysXCooking */; remoteInfo = "PhysXCooking"; }; - FFF559c183f07f8c59c183f0 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53ba4add07ff03ba4add0 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA59c183f07f8c59c183f0 /* PhysXCommon */; + remoteGlobalIDString = FFFA3ba4add07ff03ba4add0 /* PhysXCommon */; remoteInfo = "PhysXCommon"; }; - FFF559c114307f8c59c11430 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53ba5cc607ff03ba5cc60 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA59c114307f8c59c11430 /* PxFoundation */; + remoteGlobalIDString = FFFA3ba5cc607ff03ba5cc60 /* PxFoundation */; remoteInfo = "PxFoundation"; }; - FFF559944d307f8c59944d30 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53b9d39307ff03b9d3930 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA59944d307f8c59944d30 /* PxPvdSDK */; + remoteGlobalIDString = FFFA3b9d39307ff03b9d3930 /* PxPvdSDK */; remoteInfo = "PxPvdSDK"; }; - FFF559d336a07f8c59d336a0 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53bf0b4507ff03bf0b450 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA59d336a07f8c59d336a0 /* LowLevel */; + remoteGlobalIDString = FFFA3bf0b4507ff03bf0b450 /* LowLevel */; remoteInfo = "LowLevel"; }; - FFF55b808e607f8c5b808e60 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53b971cd07ff03b971cd0 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b808e607f8c5b808e60 /* LowLevelAABB */; + remoteGlobalIDString = FFFA3b971cd07ff03b971cd0 /* LowLevelAABB */; remoteInfo = "LowLevelAABB"; }; - FFF559c249907f8c59c24990 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53ba330407ff03ba33040 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA59c249907f8c59c24990 /* LowLevelDynamics */; + remoteGlobalIDString = FFFA3ba330407ff03ba33040 /* LowLevelDynamics */; remoteInfo = "LowLevelDynamics"; }; - FFF559d4aa007f8c59d4aa00 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53bdf7df07ff03bdf7df0 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA59d4aa007f8c59d4aa00 /* LowLevelCloth */; + remoteGlobalIDString = FFFA3bdf7df07ff03bdf7df0 /* LowLevelCloth */; remoteInfo = "LowLevelCloth"; }; - FFF55992d3c07f8c5992d3c0 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53ba23a707ff03ba23a70 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5992d3c07f8c5992d3c0 /* LowLevelParticles */; + remoteGlobalIDString = FFFA3ba23a707ff03ba23a70 /* LowLevelParticles */; remoteInfo = "LowLevelParticles"; }; - FFF559d66b807f8c59d66b80 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53bf5a4307ff03bf5a430 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA59d66b807f8c59d66b80 /* PxTask */; + remoteGlobalIDString = FFFA3bf5a4307ff03bf5a430 /* PxTask */; remoteInfo = "PxTask"; }; - FFF55b8199707f8c5b819970 /* PBXContainerItemProxy */ = { - containerPortal = FFF958c7cd607f8c58c7cd60 /* Project object */; + FFF53b98b2007ff03b98b200 /* PBXContainerItemProxy */ = { + containerPortal = FFF93ac7ce107ff03ac7ce10 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA5b8199707f8c5b819970 /* PsFastXml */; + remoteGlobalIDString = FFFA3b98b2007ff03b98b200 /* PsFastXml */; remoteInfo = "PsFastXml"; }; /* End PBXContainerItemProxy section */ /* Begin PBXGroup section */ - FFFB58c7cdc87f8c58c7cdc8 /* PhysX */ = { + FFFB3ac7ce787ff03ac7ce78 /* PhysX */ = { isa = PBXGroup; children = ( - FFF058c7cd607f8c58c7cd60 /* Source */, - FFEE58c7cd607f8c58c7cd60 /* Products */, + FFF03ac7ce107ff03ac7ce10 /* Source */, + FFEE3ac7ce107ff03ac7ce10 /* Products */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFF058c7cd607f8c58c7cd60 /* Source */ = { + FFF03ac7ce107ff03ac7ce10 /* Source */ = { isa = PBXGroup; children = ( - FFFB5b81c8207f8c5b81c820, - FFFB5b8241407f8c5b824140, - FFFB5b8256907f8c5b825690, - FFFB5b836b207f8c5b836b20, - FFFB5b847c107f8c5b847c10, - FFFB5b84c1707f8c5b84c170, - FFFB5b8507d07f8c5b8507d0, - FFFB59c183f07f8c59c183f0, - FFFB59c114307f8c59c11430, - FFFB59944d307f8c59944d30, - FFFB59d336a07f8c59d336a0, - FFFB5b808e607f8c5b808e60, - FFFB59c249907f8c59c24990, - FFFB59d4aa007f8c59d4aa00, - FFFB5992d3c07f8c5992d3c0, - FFFB59d66b807f8c59d66b80, - FFFB5b8199707f8c5b819970, + FFFB3b9796607ff03b979660, + FFFB3b992b807ff03b992b80, + FFFB3b993f207ff03b993f20, + FFFB3b9a54207ff03b9a5420, + FFFB3b9b66107ff03b9b6610, + FFFB3b951b307ff03b951b30, + FFFB3dbe48807ff03dbe4880, + FFFB3ba4add07ff03ba4add0, + FFFB3ba5cc607ff03ba5cc60, + FFFB3b9d39307ff03b9d3930, + FFFB3bf0b4507ff03bf0b450, + FFFB3b971cd07ff03b971cd0, + FFFB3ba330407ff03ba33040, + FFFB3bdf7df07ff03bdf7df0, + FFFB3ba23a707ff03ba23a70, + FFFB3bf5a4307ff03bf5a430, + FFFB3b98b2007ff03b98b200, ); name = Source; sourceTree = "<group>"; }; - FFEE58c7cd607f8c58c7cd60 /* Products */ = { + FFEE3ac7ce107ff03ac7ce10 /* Products */ = { isa = PBXGroup; children = ( - FFFD5b81c8207f8c5b81c820, - FFFD5b8241407f8c5b824140, - FFFD5b8256907f8c5b825690, - FFFD5b836b207f8c5b836b20, - FFFD5b847c107f8c5b847c10, - FFFD5b84c1707f8c5b84c170, - FFFD5b8507d07f8c5b8507d0, - FFFD59c183f07f8c59c183f0, - FFFD59c114307f8c59c11430, - FFFD59944d307f8c59944d30, - FFFD59d336a07f8c59d336a0, - FFFD5b808e607f8c5b808e60, - FFFD59c249907f8c59c24990, - FFFD59d4aa007f8c59d4aa00, - FFFD5992d3c07f8c5992d3c0, - FFFD59d66b807f8c59d66b80, - FFFD5b8199707f8c5b819970, + FFFD3b9796607ff03b979660, + FFFD3b992b807ff03b992b80, + FFFD3b993f207ff03b993f20, + FFFD3b9a54207ff03b9a5420, + FFFD3b9b66107ff03b9b6610, + FFFD3b951b307ff03b951b30, + FFFD3dbe48807ff03dbe4880, + FFFD3ba4add07ff03ba4add0, + FFFD3ba5cc607ff03ba5cc60, + FFFD3b9d39307ff03b9d3930, + FFFD3bf0b4507ff03bf0b450, + FFFD3b971cd07ff03b971cd0, + FFFD3ba330407ff03ba33040, + FFFD3bdf7df07ff03bdf7df0, + FFFD3ba23a707ff03ba23a70, + FFFD3bf5a4307ff03bf5a430, + FFFD3b98b2007ff03b98b200, ); name = Products; sourceTree = "<group>"; }; - FFFB5b81c8207f8c5b81c820 /* PhysX */ = { + FFFB3b9796607ff03b979660 /* PhysX */ = { isa = PBXGroup; children = ( - FFFB5b82bf807f8c5b82bf80 /* src */, - FFFB5b82bfa87f8c5b82bfa8 /* include */, - FFFB5b82bfd07f8c5b82bfd0 /* metadata */, + FFFB3b99a8d07ff03b99a8d0 /* src */, + FFFB3b99a8f87ff03b99a8f8 /* include */, + FFFB3b99a9207ff03b99a920 /* metadata */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFFB5b82bf807f8c5b82bf80 /* src */ = { + FFFB3b99a8d07ff03b99a8d0 /* src */ = { isa = PBXGroup; children = ( - FFFD5b039a007f8c5b039a00 /* NpActor.h */, - FFFD5b039a687f8c5b039a68 /* NpActorTemplate.h */, - FFFD5b039ad07f8c5b039ad0 /* NpAggregate.h */, - FFFD5b039b387f8c5b039b38 /* NpArticulation.h */, - FFFD5b039ba07f8c5b039ba0 /* NpArticulationJoint.h */, - FFFD5b039c087f8c5b039c08 /* NpArticulationLink.h */, - FFFD5b039c707f8c5b039c70 /* NpBatchQuery.h */, - FFFD5b039cd87f8c5b039cd8 /* NpCast.h */, - FFFD5b039d407f8c5b039d40 /* NpConnector.h */, - FFFD5b039da87f8c5b039da8 /* NpConstraint.h */, - FFFD5b039e107f8c5b039e10 /* NpFactory.h */, - FFFD5b039e787f8c5b039e78 /* NpMaterial.h */, - FFFD5b039ee07f8c5b039ee0 /* NpMaterialManager.h */, - FFFD5b039f487f8c5b039f48 /* NpPhysics.h */, - FFFD5b039fb07f8c5b039fb0 /* NpPhysicsInsertionCallback.h */, - FFFD5b03a0187f8c5b03a018 /* NpPtrTableStorageManager.h */, - FFFD5b03a0807f8c5b03a080 /* NpPvdSceneQueryCollector.h */, - FFFD5b03a0e87f8c5b03a0e8 /* NpQueryShared.h */, - FFFD5b03a1507f8c5b03a150 /* NpReadCheck.h */, - FFFD5b03a1b87f8c5b03a1b8 /* NpRigidActorTemplate.h */, - FFFD5b03a2207f8c5b03a220 /* NpRigidActorTemplateInternal.h */, - FFFD5b03a2887f8c5b03a288 /* NpRigidBodyTemplate.h */, - FFFD5b03a2f07f8c5b03a2f0 /* NpRigidDynamic.h */, - FFFD5b03a3587f8c5b03a358 /* NpRigidStatic.h */, - FFFD5b03a3c07f8c5b03a3c0 /* NpScene.h */, - FFFD5b03a4287f8c5b03a428 /* NpSceneQueries.h */, - FFFD5b03a4907f8c5b03a490 /* NpShape.h */, - FFFD5b03a4f87f8c5b03a4f8 /* NpShapeManager.h */, - FFFD5b03a5607f8c5b03a560 /* NpSpatialIndex.h */, - FFFD5b03a5c87f8c5b03a5c8 /* NpVolumeCache.h */, - FFFD5b03a6307f8c5b03a630 /* NpWriteCheck.h */, - FFFD5b03a6987f8c5b03a698 /* PvdMetaDataBindingData.h */, - FFFD5b03a7007f8c5b03a700 /* PvdMetaDataPvdBinding.h */, - FFFD5b03a7687f8c5b03a768 /* PvdPhysicsClient.h */, - FFFD5b03a7d07f8c5b03a7d0 /* PvdTypeNames.h */, - FFFD5b03a8387f8c5b03a838 /* NpActor.cpp */, - FFFD5b03a8a07f8c5b03a8a0 /* NpAggregate.cpp */, - FFFD5b03a9087f8c5b03a908 /* NpArticulation.cpp */, - FFFD5b03a9707f8c5b03a970 /* NpArticulationJoint.cpp */, - FFFD5b03a9d87f8c5b03a9d8 /* NpArticulationLink.cpp */, - FFFD5b03aa407f8c5b03aa40 /* NpBatchQuery.cpp */, - FFFD5b03aaa87f8c5b03aaa8 /* NpConstraint.cpp */, - FFFD5b03ab107f8c5b03ab10 /* NpFactory.cpp */, - FFFD5b03ab787f8c5b03ab78 /* NpMaterial.cpp */, - FFFD5b03abe07f8c5b03abe0 /* NpMetaData.cpp */, - FFFD5b03ac487f8c5b03ac48 /* NpPhysics.cpp */, - FFFD5b03acb07f8c5b03acb0 /* NpPvdSceneQueryCollector.cpp */, - FFFD5b03ad187f8c5b03ad18 /* NpReadCheck.cpp */, - FFFD5b03ad807f8c5b03ad80 /* NpRigidDynamic.cpp */, - FFFD5b03ade87f8c5b03ade8 /* NpRigidStatic.cpp */, - FFFD5b03ae507f8c5b03ae50 /* NpScene.cpp */, - FFFD5b03aeb87f8c5b03aeb8 /* NpSceneQueries.cpp */, - FFFD5b03af207f8c5b03af20 /* NpSerializerAdapter.cpp */, - FFFD5b03af887f8c5b03af88 /* NpShape.cpp */, - FFFD5b03aff07f8c5b03aff0 /* NpShapeManager.cpp */, - FFFD5b03b0587f8c5b03b058 /* NpSpatialIndex.cpp */, - FFFD5b03b0c07f8c5b03b0c0 /* NpVolumeCache.cpp */, - FFFD5b03b1287f8c5b03b128 /* NpWriteCheck.cpp */, - FFFD5b03b1907f8c5b03b190 /* PvdMetaDataPvdBinding.cpp */, - FFFD5b03b1f87f8c5b03b1f8 /* PvdPhysicsClient.cpp */, - FFFD5b03b2607f8c5b03b260 /* particles/NpParticleBaseTemplate.h */, - FFFD5b03b2c87f8c5b03b2c8 /* particles/NpParticleFluid.h */, - FFFD5b03b3307f8c5b03b330 /* particles/NpParticleFluidReadData.h */, - FFFD5b03b3987f8c5b03b398 /* particles/NpParticleSystem.h */, - FFFD5b03b4007f8c5b03b400 /* particles/NpParticleFluid.cpp */, - FFFD5b03b4687f8c5b03b468 /* particles/NpParticleSystem.cpp */, - FFFD5b03b4d07f8c5b03b4d0 /* buffering/ScbActor.h */, - FFFD5b03b5387f8c5b03b538 /* buffering/ScbAggregate.h */, - FFFD5b03b5a07f8c5b03b5a0 /* buffering/ScbArticulation.h */, - FFFD5b03b6087f8c5b03b608 /* buffering/ScbArticulationJoint.h */, - FFFD5b03b6707f8c5b03b670 /* buffering/ScbBase.h */, - FFFD5b03b6d87f8c5b03b6d8 /* buffering/ScbBody.h */, - FFFD5b03b7407f8c5b03b740 /* buffering/ScbCloth.h */, - FFFD5b03b7a87f8c5b03b7a8 /* buffering/ScbConstraint.h */, - FFFD5b03b8107f8c5b03b810 /* buffering/ScbDefs.h */, - FFFD5b03b8787f8c5b03b878 /* buffering/ScbNpDeps.h */, - FFFD5b03b8e07f8c5b03b8e0 /* buffering/ScbParticleSystem.h */, - FFFD5b03b9487f8c5b03b948 /* buffering/ScbRigidObject.h */, - FFFD5b03b9b07f8c5b03b9b0 /* buffering/ScbRigidStatic.h */, - FFFD5b03ba187f8c5b03ba18 /* buffering/ScbScene.h */, - FFFD5b03ba807f8c5b03ba80 /* buffering/ScbSceneBuffer.h */, - FFFD5b03bae87f8c5b03bae8 /* buffering/ScbScenePvdClient.h */, - FFFD5b03bb507f8c5b03bb50 /* buffering/ScbShape.h */, - FFFD5b03bbb87f8c5b03bbb8 /* buffering/ScbType.h */, - FFFD5b03bc207f8c5b03bc20 /* buffering/ScbActor.cpp */, - FFFD5b03bc887f8c5b03bc88 /* buffering/ScbAggregate.cpp */, - FFFD5b03bcf07f8c5b03bcf0 /* buffering/ScbBase.cpp */, - FFFD5b03bd587f8c5b03bd58 /* buffering/ScbCloth.cpp */, - FFFD5b03bdc07f8c5b03bdc0 /* buffering/ScbMetaData.cpp */, - FFFD5b03be287f8c5b03be28 /* buffering/ScbParticleSystem.cpp */, - FFFD5b03be907f8c5b03be90 /* buffering/ScbScene.cpp */, - FFFD5b03bef87f8c5b03bef8 /* buffering/ScbScenePvdClient.cpp */, - FFFD5b03bf607f8c5b03bf60 /* buffering/ScbShape.cpp */, - FFFD5b03bfc87f8c5b03bfc8 /* cloth/NpCloth.h */, - FFFD5b03c0307f8c5b03c030 /* cloth/NpClothFabric.h */, - FFFD5b03c0987f8c5b03c098 /* cloth/NpClothParticleData.h */, - FFFD5b03c1007f8c5b03c100 /* cloth/NpCloth.cpp */, - FFFD5b03c1687f8c5b03c168 /* cloth/NpClothFabric.cpp */, - FFFD5b03c1d07f8c5b03c1d0 /* cloth/NpClothParticleData.cpp */, - FFFD5b03c2387f8c5b03c238 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, + FFFD3c837a007ff03c837a00 /* NpActor.h */, + FFFD3c837a687ff03c837a68 /* NpActorTemplate.h */, + FFFD3c837ad07ff03c837ad0 /* NpAggregate.h */, + FFFD3c837b387ff03c837b38 /* NpArticulation.h */, + FFFD3c837ba07ff03c837ba0 /* NpArticulationJoint.h */, + FFFD3c837c087ff03c837c08 /* NpArticulationLink.h */, + FFFD3c837c707ff03c837c70 /* NpBatchQuery.h */, + FFFD3c837cd87ff03c837cd8 /* NpCast.h */, + FFFD3c837d407ff03c837d40 /* NpConnector.h */, + FFFD3c837da87ff03c837da8 /* NpConstraint.h */, + FFFD3c837e107ff03c837e10 /* NpFactory.h */, + FFFD3c837e787ff03c837e78 /* NpMaterial.h */, + FFFD3c837ee07ff03c837ee0 /* NpMaterialManager.h */, + FFFD3c837f487ff03c837f48 /* NpPhysics.h */, + FFFD3c837fb07ff03c837fb0 /* NpPhysicsInsertionCallback.h */, + FFFD3c8380187ff03c838018 /* NpPtrTableStorageManager.h */, + FFFD3c8380807ff03c838080 /* NpPvdSceneQueryCollector.h */, + FFFD3c8380e87ff03c8380e8 /* NpQueryShared.h */, + FFFD3c8381507ff03c838150 /* NpReadCheck.h */, + FFFD3c8381b87ff03c8381b8 /* NpRigidActorTemplate.h */, + FFFD3c8382207ff03c838220 /* NpRigidActorTemplateInternal.h */, + FFFD3c8382887ff03c838288 /* NpRigidBodyTemplate.h */, + FFFD3c8382f07ff03c8382f0 /* NpRigidDynamic.h */, + FFFD3c8383587ff03c838358 /* NpRigidStatic.h */, + FFFD3c8383c07ff03c8383c0 /* NpScene.h */, + FFFD3c8384287ff03c838428 /* NpSceneQueries.h */, + FFFD3c8384907ff03c838490 /* NpShape.h */, + FFFD3c8384f87ff03c8384f8 /* NpShapeManager.h */, + FFFD3c8385607ff03c838560 /* NpSpatialIndex.h */, + FFFD3c8385c87ff03c8385c8 /* NpVolumeCache.h */, + FFFD3c8386307ff03c838630 /* NpWriteCheck.h */, + FFFD3c8386987ff03c838698 /* PvdMetaDataBindingData.h */, + FFFD3c8387007ff03c838700 /* PvdMetaDataPvdBinding.h */, + FFFD3c8387687ff03c838768 /* PvdPhysicsClient.h */, + FFFD3c8387d07ff03c8387d0 /* PvdTypeNames.h */, + FFFD3c8388387ff03c838838 /* NpActor.cpp */, + FFFD3c8388a07ff03c8388a0 /* NpAggregate.cpp */, + FFFD3c8389087ff03c838908 /* NpArticulation.cpp */, + FFFD3c8389707ff03c838970 /* NpArticulationJoint.cpp */, + FFFD3c8389d87ff03c8389d8 /* NpArticulationLink.cpp */, + FFFD3c838a407ff03c838a40 /* NpBatchQuery.cpp */, + FFFD3c838aa87ff03c838aa8 /* NpConstraint.cpp */, + FFFD3c838b107ff03c838b10 /* NpFactory.cpp */, + FFFD3c838b787ff03c838b78 /* NpMaterial.cpp */, + FFFD3c838be07ff03c838be0 /* NpMetaData.cpp */, + FFFD3c838c487ff03c838c48 /* NpPhysics.cpp */, + FFFD3c838cb07ff03c838cb0 /* NpPvdSceneQueryCollector.cpp */, + FFFD3c838d187ff03c838d18 /* NpReadCheck.cpp */, + FFFD3c838d807ff03c838d80 /* NpRigidDynamic.cpp */, + FFFD3c838de87ff03c838de8 /* NpRigidStatic.cpp */, + FFFD3c838e507ff03c838e50 /* NpScene.cpp */, + FFFD3c838eb87ff03c838eb8 /* NpSceneQueries.cpp */, + FFFD3c838f207ff03c838f20 /* NpSerializerAdapter.cpp */, + FFFD3c838f887ff03c838f88 /* NpShape.cpp */, + FFFD3c838ff07ff03c838ff0 /* NpShapeManager.cpp */, + FFFD3c8390587ff03c839058 /* NpSpatialIndex.cpp */, + FFFD3c8390c07ff03c8390c0 /* NpVolumeCache.cpp */, + FFFD3c8391287ff03c839128 /* NpWriteCheck.cpp */, + FFFD3c8391907ff03c839190 /* PvdMetaDataPvdBinding.cpp */, + FFFD3c8391f87ff03c8391f8 /* PvdPhysicsClient.cpp */, + FFFD3c8392607ff03c839260 /* particles/NpParticleBaseTemplate.h */, + FFFD3c8392c87ff03c8392c8 /* particles/NpParticleFluid.h */, + FFFD3c8393307ff03c839330 /* particles/NpParticleFluidReadData.h */, + FFFD3c8393987ff03c839398 /* particles/NpParticleSystem.h */, + FFFD3c8394007ff03c839400 /* particles/NpParticleFluid.cpp */, + FFFD3c8394687ff03c839468 /* particles/NpParticleSystem.cpp */, + FFFD3c8394d07ff03c8394d0 /* buffering/ScbActor.h */, + FFFD3c8395387ff03c839538 /* buffering/ScbAggregate.h */, + FFFD3c8395a07ff03c8395a0 /* buffering/ScbArticulation.h */, + FFFD3c8396087ff03c839608 /* buffering/ScbArticulationJoint.h */, + FFFD3c8396707ff03c839670 /* buffering/ScbBase.h */, + FFFD3c8396d87ff03c8396d8 /* buffering/ScbBody.h */, + FFFD3c8397407ff03c839740 /* buffering/ScbCloth.h */, + FFFD3c8397a87ff03c8397a8 /* buffering/ScbConstraint.h */, + FFFD3c8398107ff03c839810 /* buffering/ScbDefs.h */, + FFFD3c8398787ff03c839878 /* buffering/ScbNpDeps.h */, + FFFD3c8398e07ff03c8398e0 /* buffering/ScbParticleSystem.h */, + FFFD3c8399487ff03c839948 /* buffering/ScbRigidObject.h */, + FFFD3c8399b07ff03c8399b0 /* buffering/ScbRigidStatic.h */, + FFFD3c839a187ff03c839a18 /* buffering/ScbScene.h */, + FFFD3c839a807ff03c839a80 /* buffering/ScbSceneBuffer.h */, + FFFD3c839ae87ff03c839ae8 /* buffering/ScbScenePvdClient.h */, + FFFD3c839b507ff03c839b50 /* buffering/ScbShape.h */, + FFFD3c839bb87ff03c839bb8 /* buffering/ScbType.h */, + FFFD3c839c207ff03c839c20 /* buffering/ScbActor.cpp */, + FFFD3c839c887ff03c839c88 /* buffering/ScbAggregate.cpp */, + FFFD3c839cf07ff03c839cf0 /* buffering/ScbBase.cpp */, + FFFD3c839d587ff03c839d58 /* buffering/ScbCloth.cpp */, + FFFD3c839dc07ff03c839dc0 /* buffering/ScbMetaData.cpp */, + FFFD3c839e287ff03c839e28 /* buffering/ScbParticleSystem.cpp */, + FFFD3c839e907ff03c839e90 /* buffering/ScbScene.cpp */, + FFFD3c839ef87ff03c839ef8 /* buffering/ScbScenePvdClient.cpp */, + FFFD3c839f607ff03c839f60 /* buffering/ScbShape.cpp */, + FFFD3c839fc87ff03c839fc8 /* cloth/NpCloth.h */, + FFFD3c83a0307ff03c83a030 /* cloth/NpClothFabric.h */, + FFFD3c83a0987ff03c83a098 /* cloth/NpClothParticleData.h */, + FFFD3c83a1007ff03c83a100 /* cloth/NpCloth.cpp */, + FFFD3c83a1687ff03c83a168 /* cloth/NpClothFabric.cpp */, + FFFD3c83a1d07ff03c83a1d0 /* cloth/NpClothParticleData.cpp */, + FFFD3c83a2387ff03c83a238 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5b82bfa87f8c5b82bfa8 /* include */ = { + FFFB3b99a8f87ff03b99a8f8 /* include */ = { isa = PBXGroup; children = ( - FFFD5b0374007f8c5b037400 /* PxActor.h */, - FFFD5b0374687f8c5b037468 /* PxAggregate.h */, - FFFD5b0374d07f8c5b0374d0 /* PxArticulation.h */, - FFFD5b0375387f8c5b037538 /* PxArticulationJoint.h */, - FFFD5b0375a07f8c5b0375a0 /* PxArticulationLink.h */, - FFFD5b0376087f8c5b037608 /* PxBatchQuery.h */, - FFFD5b0376707f8c5b037670 /* PxBatchQueryDesc.h */, - FFFD5b0376d87f8c5b0376d8 /* PxBroadPhase.h */, - FFFD5b0377407f8c5b037740 /* PxClient.h */, - FFFD5b0377a87f8c5b0377a8 /* PxConstraint.h */, - FFFD5b0378107f8c5b037810 /* PxConstraintDesc.h */, - FFFD5b0378787f8c5b037878 /* PxContact.h */, - FFFD5b0378e07f8c5b0378e0 /* PxContactModifyCallback.h */, - FFFD5b0379487f8c5b037948 /* PxDeletionListener.h */, - FFFD5b0379b07f8c5b0379b0 /* PxFiltering.h */, - FFFD5b037a187f8c5b037a18 /* PxForceMode.h */, - FFFD5b037a807f8c5b037a80 /* PxImmediateMode.h */, - FFFD5b037ae87f8c5b037ae8 /* PxLockedData.h */, - FFFD5b037b507f8c5b037b50 /* PxMaterial.h */, - FFFD5b037bb87f8c5b037bb8 /* PxPhysXConfig.h */, - FFFD5b037c207f8c5b037c20 /* PxPhysics.h */, - FFFD5b037c887f8c5b037c88 /* PxPhysicsAPI.h */, - FFFD5b037cf07f8c5b037cf0 /* PxPhysicsSerialization.h */, - FFFD5b037d587f8c5b037d58 /* PxPhysicsVersion.h */, - FFFD5b037dc07f8c5b037dc0 /* PxPruningStructure.h */, - FFFD5b037e287f8c5b037e28 /* PxQueryFiltering.h */, - FFFD5b037e907f8c5b037e90 /* PxQueryReport.h */, - FFFD5b037ef87f8c5b037ef8 /* PxRigidActor.h */, - FFFD5b037f607f8c5b037f60 /* PxRigidBody.h */, - FFFD5b037fc87f8c5b037fc8 /* PxRigidDynamic.h */, - FFFD5b0380307f8c5b038030 /* PxRigidStatic.h */, - FFFD5b0380987f8c5b038098 /* PxScene.h */, - FFFD5b0381007f8c5b038100 /* PxSceneDesc.h */, - FFFD5b0381687f8c5b038168 /* PxSceneLock.h */, - FFFD5b0381d07f8c5b0381d0 /* PxShape.h */, - FFFD5b0382387f8c5b038238 /* PxSimulationEventCallback.h */, - FFFD5b0382a07f8c5b0382a0 /* PxSimulationStatistics.h */, - FFFD5b0383087f8c5b038308 /* PxSpatialIndex.h */, - FFFD5b0383707f8c5b038370 /* PxVisualizationParameter.h */, - FFFD5b0383d87f8c5b0383d8 /* PxVolumeCache.h */, - FFFD5b0384407f8c5b038440 /* particles/PxParticleBase.h */, - FFFD5b0384a87f8c5b0384a8 /* particles/PxParticleBaseFlag.h */, - FFFD5b0385107f8c5b038510 /* particles/PxParticleCreationData.h */, - FFFD5b0385787f8c5b038578 /* particles/PxParticleFlag.h */, - FFFD5b0385e07f8c5b0385e0 /* particles/PxParticleFluid.h */, - FFFD5b0386487f8c5b038648 /* particles/PxParticleFluidReadData.h */, - FFFD5b0386b07f8c5b0386b0 /* particles/PxParticleReadData.h */, - FFFD5b0387187f8c5b038718 /* particles/PxParticleSystem.h */, - FFFD5b0387807f8c5b038780 /* pvd/PxPvdSceneClient.h */, - FFFD5b0387e87f8c5b0387e8 /* cloth/PxCloth.h */, - FFFD5b0388507f8c5b038850 /* cloth/PxClothCollisionData.h */, - FFFD5b0388b87f8c5b0388b8 /* cloth/PxClothFabric.h */, - FFFD5b0389207f8c5b038920 /* cloth/PxClothParticleData.h */, - FFFD5b0389887f8c5b038988 /* cloth/PxClothTypes.h */, + FFFD3c83a4007ff03c83a400 /* PxActor.h */, + FFFD3c83a4687ff03c83a468 /* PxAggregate.h */, + FFFD3c83a4d07ff03c83a4d0 /* PxArticulation.h */, + FFFD3c83a5387ff03c83a538 /* PxArticulationJoint.h */, + FFFD3c83a5a07ff03c83a5a0 /* PxArticulationLink.h */, + FFFD3c83a6087ff03c83a608 /* PxBatchQuery.h */, + FFFD3c83a6707ff03c83a670 /* PxBatchQueryDesc.h */, + FFFD3c83a6d87ff03c83a6d8 /* PxBroadPhase.h */, + FFFD3c83a7407ff03c83a740 /* PxClient.h */, + FFFD3c83a7a87ff03c83a7a8 /* PxConstraint.h */, + FFFD3c83a8107ff03c83a810 /* PxConstraintDesc.h */, + FFFD3c83a8787ff03c83a878 /* PxContact.h */, + FFFD3c83a8e07ff03c83a8e0 /* PxContactModifyCallback.h */, + FFFD3c83a9487ff03c83a948 /* PxDeletionListener.h */, + FFFD3c83a9b07ff03c83a9b0 /* PxFiltering.h */, + FFFD3c83aa187ff03c83aa18 /* PxForceMode.h */, + FFFD3c83aa807ff03c83aa80 /* PxImmediateMode.h */, + FFFD3c83aae87ff03c83aae8 /* PxLockedData.h */, + FFFD3c83ab507ff03c83ab50 /* PxMaterial.h */, + FFFD3c83abb87ff03c83abb8 /* PxPhysXConfig.h */, + FFFD3c83ac207ff03c83ac20 /* PxPhysics.h */, + FFFD3c83ac887ff03c83ac88 /* PxPhysicsAPI.h */, + FFFD3c83acf07ff03c83acf0 /* PxPhysicsSerialization.h */, + FFFD3c83ad587ff03c83ad58 /* PxPhysicsVersion.h */, + FFFD3c83adc07ff03c83adc0 /* PxPruningStructure.h */, + FFFD3c83ae287ff03c83ae28 /* PxQueryFiltering.h */, + FFFD3c83ae907ff03c83ae90 /* PxQueryReport.h */, + FFFD3c83aef87ff03c83aef8 /* PxRigidActor.h */, + FFFD3c83af607ff03c83af60 /* PxRigidBody.h */, + FFFD3c83afc87ff03c83afc8 /* PxRigidDynamic.h */, + FFFD3c83b0307ff03c83b030 /* PxRigidStatic.h */, + FFFD3c83b0987ff03c83b098 /* PxScene.h */, + FFFD3c83b1007ff03c83b100 /* PxSceneDesc.h */, + FFFD3c83b1687ff03c83b168 /* PxSceneLock.h */, + FFFD3c83b1d07ff03c83b1d0 /* PxShape.h */, + FFFD3c83b2387ff03c83b238 /* PxSimulationEventCallback.h */, + FFFD3c83b2a07ff03c83b2a0 /* PxSimulationStatistics.h */, + FFFD3c83b3087ff03c83b308 /* PxSpatialIndex.h */, + FFFD3c83b3707ff03c83b370 /* PxVisualizationParameter.h */, + FFFD3c83b3d87ff03c83b3d8 /* PxVolumeCache.h */, + FFFD3c83b4407ff03c83b440 /* particles/PxParticleBase.h */, + FFFD3c83b4a87ff03c83b4a8 /* particles/PxParticleBaseFlag.h */, + FFFD3c83b5107ff03c83b510 /* particles/PxParticleCreationData.h */, + FFFD3c83b5787ff03c83b578 /* particles/PxParticleFlag.h */, + FFFD3c83b5e07ff03c83b5e0 /* particles/PxParticleFluid.h */, + FFFD3c83b6487ff03c83b648 /* particles/PxParticleFluidReadData.h */, + FFFD3c83b6b07ff03c83b6b0 /* particles/PxParticleReadData.h */, + FFFD3c83b7187ff03c83b718 /* particles/PxParticleSystem.h */, + FFFD3c83b7807ff03c83b780 /* pvd/PxPvdSceneClient.h */, + FFFD3c83b7e87ff03c83b7e8 /* cloth/PxCloth.h */, + FFFD3c83b8507ff03c83b850 /* cloth/PxClothCollisionData.h */, + FFFD3c83b8b87ff03c83b8b8 /* cloth/PxClothFabric.h */, + FFFD3c83b9207ff03c83b920 /* cloth/PxClothParticleData.h */, + FFFD3c83b9887ff03c83b988 /* cloth/PxClothTypes.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5b82bfd07f8c5b82bfd0 /* metadata */ = { + FFFB3b99a9207ff03b99a920 /* metadata */ = { isa = PBXGroup; children = ( - FFFD5b0364007f8c5b036400 /* core/include/PvdMetaDataDefineProperties.h */, - FFFD5b0364687f8c5b036468 /* core/include/PvdMetaDataExtensions.h */, - FFFD5b0364d07f8c5b0364d0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFD5b0365387f8c5b036538 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFD5b0365a07f8c5b0365a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFD5b0366087f8c5b036608 /* core/include/PxMetaDataCompare.h */, - FFFD5b0366707f8c5b036670 /* core/include/PxMetaDataCppPrefix.h */, - FFFD5b0366d87f8c5b0366d8 /* core/include/PxMetaDataObjects.h */, - FFFD5b0367407f8c5b036740 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFD5b0367a87f8c5b0367a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, - FFFD5b0368107f8c5b036810 /* core/src/PxMetaDataObjects.cpp */, + FFFD3c8326007ff03c832600 /* core/include/PvdMetaDataDefineProperties.h */, + FFFD3c8326687ff03c832668 /* core/include/PvdMetaDataExtensions.h */, + FFFD3c8326d07ff03c8326d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFD3c8327387ff03c832738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFD3c8327a07ff03c8327a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFD3c8328087ff03c832808 /* core/include/PxMetaDataCompare.h */, + FFFD3c8328707ff03c832870 /* core/include/PxMetaDataCppPrefix.h */, + FFFD3c8328d87ff03c8328d8 /* core/include/PxMetaDataObjects.h */, + FFFD3c8329407ff03c832940 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFD3c8329a87ff03c8329a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, + FFFD3c832a107ff03c832a10 /* core/src/PxMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB5b8241407f8c5b824140 /* PhysXCharacterKinematic */ = { + FFFB3b992b807ff03b992b80 /* PhysXCharacterKinematic */ = { isa = PBXGroup; children = ( - FFFB5b82b2a07f8c5b82b2a0 /* include */, - FFFB5b82b2c87f8c5b82b2c8 /* src */, + FFFB3b999b607ff03b999b60 /* include */, + FFFB3b999b887ff03b999b88 /* src */, ); name = "PhysXCharacterKinematic"; sourceTree = "<group>"; }; - FFFB5b82b2a07f8c5b82b2a0 /* include */ = { + FFFB3b999b607ff03b999b60 /* include */ = { isa = PBXGroup; children = ( - FFFD5b82b2f07f8c5b82b2f0 /* PxBoxController.h */, - FFFD5b82b3587f8c5b82b358 /* PxCapsuleController.h */, - FFFD5b82b3c07f8c5b82b3c0 /* PxCharacter.h */, - FFFD5b82b4287f8c5b82b428 /* PxController.h */, - FFFD5b82b4907f8c5b82b490 /* PxControllerBehavior.h */, - FFFD5b82b4f87f8c5b82b4f8 /* PxControllerManager.h */, - FFFD5b82b5607f8c5b82b560 /* PxControllerObstacles.h */, - FFFD5b82b5c87f8c5b82b5c8 /* PxExtended.h */, + FFFD3b999bb07ff03b999bb0 /* PxBoxController.h */, + FFFD3b999c187ff03b999c18 /* PxCapsuleController.h */, + FFFD3b999c807ff03b999c80 /* PxCharacter.h */, + FFFD3b999ce87ff03b999ce8 /* PxController.h */, + FFFD3b999d507ff03b999d50 /* PxControllerBehavior.h */, + FFFD3b999db87ff03b999db8 /* PxControllerManager.h */, + FFFD3b999e207ff03b999e20 /* PxControllerObstacles.h */, + FFFD3b999e887ff03b999e88 /* PxExtended.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5b82b2c87f8c5b82b2c8 /* src */ = { + FFFB3b999b887ff03b999b88 /* src */ = { isa = PBXGroup; children = ( - FFFD5b033a007f8c5b033a00 /* CctBoxController.h */, - FFFD5b033a687f8c5b033a68 /* CctCapsuleController.h */, - FFFD5b033ad07f8c5b033ad0 /* CctCharacterController.h */, - FFFD5b033b387f8c5b033b38 /* CctCharacterControllerManager.h */, - FFFD5b033ba07f8c5b033ba0 /* CctController.h */, - FFFD5b033c087f8c5b033c08 /* CctInternalStructs.h */, - FFFD5b033c707f8c5b033c70 /* CctObstacleContext.h */, - FFFD5b033cd87f8c5b033cd8 /* CctSweptBox.h */, - FFFD5b033d407f8c5b033d40 /* CctSweptCapsule.h */, - FFFD5b033da87f8c5b033da8 /* CctSweptVolume.h */, - FFFD5b033e107f8c5b033e10 /* CctUtils.h */, - FFFD5b033e787f8c5b033e78 /* CctBoxController.cpp */, - FFFD5b033ee07f8c5b033ee0 /* CctCapsuleController.cpp */, - FFFD5b033f487f8c5b033f48 /* CctCharacterController.cpp */, - FFFD5b033fb07f8c5b033fb0 /* CctCharacterControllerCallbacks.cpp */, - FFFD5b0340187f8c5b034018 /* CctCharacterControllerManager.cpp */, - FFFD5b0340807f8c5b034080 /* CctController.cpp */, - FFFD5b0340e87f8c5b0340e8 /* CctObstacleContext.cpp */, - FFFD5b0341507f8c5b034150 /* CctSweptBox.cpp */, - FFFD5b0341b87f8c5b0341b8 /* CctSweptCapsule.cpp */, - FFFD5b0342207f8c5b034220 /* CctSweptVolume.cpp */, + FFFD3c83ba007ff03c83ba00 /* CctBoxController.h */, + FFFD3c83ba687ff03c83ba68 /* CctCapsuleController.h */, + FFFD3c83bad07ff03c83bad0 /* CctCharacterController.h */, + FFFD3c83bb387ff03c83bb38 /* CctCharacterControllerManager.h */, + FFFD3c83bba07ff03c83bba0 /* CctController.h */, + FFFD3c83bc087ff03c83bc08 /* CctInternalStructs.h */, + FFFD3c83bc707ff03c83bc70 /* CctObstacleContext.h */, + FFFD3c83bcd87ff03c83bcd8 /* CctSweptBox.h */, + FFFD3c83bd407ff03c83bd40 /* CctSweptCapsule.h */, + FFFD3c83bda87ff03c83bda8 /* CctSweptVolume.h */, + FFFD3c83be107ff03c83be10 /* CctUtils.h */, + FFFD3c83be787ff03c83be78 /* CctBoxController.cpp */, + FFFD3c83bee07ff03c83bee0 /* CctCapsuleController.cpp */, + FFFD3c83bf487ff03c83bf48 /* CctCharacterController.cpp */, + FFFD3c83bfb07ff03c83bfb0 /* CctCharacterControllerCallbacks.cpp */, + FFFD3c83c0187ff03c83c018 /* CctCharacterControllerManager.cpp */, + FFFD3c83c0807ff03c83c080 /* CctController.cpp */, + FFFD3c83c0e87ff03c83c0e8 /* CctObstacleContext.cpp */, + FFFD3c83c1507ff03c83c150 /* CctSweptBox.cpp */, + FFFD3c83c1b87ff03c83c1b8 /* CctSweptCapsule.cpp */, + FFFD3c83c2207ff03c83c220 /* CctSweptVolume.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5b8256907f8c5b825690 /* PhysXVehicle */ = { + FFFB3b993f207ff03b993f20 /* PhysXVehicle */ = { isa = PBXGroup; children = ( - FFFB5b835c807f8c5b835c80 /* include */, - FFFB5b835ca87f8c5b835ca8 /* src */, - FFFB5b835cd07f8c5b835cd0 /* metadata */, + FFFB3b9a2fa07ff03b9a2fa0 /* include */, + FFFB3b9a2fc87ff03b9a2fc8 /* src */, + FFFB3b9a2ff07ff03b9a2ff0 /* metadata */, ); name = "PhysXVehicle"; sourceTree = "<group>"; }; - FFFB5b835c807f8c5b835c80 /* include */ = { + FFFB3b9a2fa07ff03b9a2fa0 /* include */ = { isa = PBXGroup; children = ( - FFFD5b0358007f8c5b035800 /* PxVehicleComponents.h */, - FFFD5b0358687f8c5b035868 /* PxVehicleDrive.h */, - FFFD5b0358d07f8c5b0358d0 /* PxVehicleDrive4W.h */, - FFFD5b0359387f8c5b035938 /* PxVehicleDriveNW.h */, - FFFD5b0359a07f8c5b0359a0 /* PxVehicleDriveTank.h */, - FFFD5b035a087f8c5b035a08 /* PxVehicleNoDrive.h */, - FFFD5b035a707f8c5b035a70 /* PxVehicleSDK.h */, - FFFD5b035ad87f8c5b035ad8 /* PxVehicleShaders.h */, - FFFD5b035b407f8c5b035b40 /* PxVehicleTireFriction.h */, - FFFD5b035ba87f8c5b035ba8 /* PxVehicleUpdate.h */, - FFFD5b035c107f8c5b035c10 /* PxVehicleUtil.h */, - FFFD5b035c787f8c5b035c78 /* PxVehicleUtilControl.h */, - FFFD5b035ce07f8c5b035ce0 /* PxVehicleUtilSetup.h */, - FFFD5b035d487f8c5b035d48 /* PxVehicleUtilTelemetry.h */, - FFFD5b035db07f8c5b035db0 /* PxVehicleWheels.h */, + FFFD3c83e0007ff03c83e000 /* PxVehicleComponents.h */, + FFFD3c83e0687ff03c83e068 /* PxVehicleDrive.h */, + FFFD3c83e0d07ff03c83e0d0 /* PxVehicleDrive4W.h */, + FFFD3c83e1387ff03c83e138 /* PxVehicleDriveNW.h */, + FFFD3c83e1a07ff03c83e1a0 /* PxVehicleDriveTank.h */, + FFFD3c83e2087ff03c83e208 /* PxVehicleNoDrive.h */, + FFFD3c83e2707ff03c83e270 /* PxVehicleSDK.h */, + FFFD3c83e2d87ff03c83e2d8 /* PxVehicleShaders.h */, + FFFD3c83e3407ff03c83e340 /* PxVehicleTireFriction.h */, + FFFD3c83e3a87ff03c83e3a8 /* PxVehicleUpdate.h */, + FFFD3c83e4107ff03c83e410 /* PxVehicleUtil.h */, + FFFD3c83e4787ff03c83e478 /* PxVehicleUtilControl.h */, + FFFD3c83e4e07ff03c83e4e0 /* PxVehicleUtilSetup.h */, + FFFD3c83e5487ff03c83e548 /* PxVehicleUtilTelemetry.h */, + FFFD3c83e5b07ff03c83e5b0 /* PxVehicleWheels.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5b835ca87f8c5b835ca8 /* src */ = { + FFFB3b9a2fc87ff03b9a2fc8 /* src */ = { isa = PBXGroup; children = ( - FFFD5b03ea007f8c5b03ea00 /* PxVehicleDefaults.h */, - FFFD5b03ea687f8c5b03ea68 /* PxVehicleLinearMath.h */, - FFFD5b03ead07f8c5b03ead0 /* PxVehicleSerialization.h */, - FFFD5b03eb387f8c5b03eb38 /* PxVehicleSuspLimitConstraintShader.h */, - FFFD5b03eba07f8c5b03eba0 /* PxVehicleSuspWheelTire4.h */, - FFFD5b03ec087f8c5b03ec08 /* PxVehicleComponents.cpp */, - FFFD5b03ec707f8c5b03ec70 /* PxVehicleDrive.cpp */, - FFFD5b03ecd87f8c5b03ecd8 /* PxVehicleDrive4W.cpp */, - FFFD5b03ed407f8c5b03ed40 /* PxVehicleDriveNW.cpp */, - FFFD5b03eda87f8c5b03eda8 /* PxVehicleDriveTank.cpp */, - FFFD5b03ee107f8c5b03ee10 /* PxVehicleMetaData.cpp */, - FFFD5b03ee787f8c5b03ee78 /* PxVehicleNoDrive.cpp */, - FFFD5b03eee07f8c5b03eee0 /* PxVehicleSDK.cpp */, - FFFD5b03ef487f8c5b03ef48 /* PxVehicleSerialization.cpp */, - FFFD5b03efb07f8c5b03efb0 /* PxVehicleSuspWheelTire4.cpp */, - FFFD5b03f0187f8c5b03f018 /* PxVehicleTireFriction.cpp */, - FFFD5b03f0807f8c5b03f080 /* PxVehicleUpdate.cpp */, - FFFD5b03f0e87f8c5b03f0e8 /* PxVehicleWheels.cpp */, - FFFD5b03f1507f8c5b03f150 /* VehicleUtilControl.cpp */, - FFFD5b03f1b87f8c5b03f1b8 /* VehicleUtilSetup.cpp */, - FFFD5b03f2207f8c5b03f220 /* VehicleUtilTelemetry.cpp */, + FFFD3c83fe007ff03c83fe00 /* PxVehicleDefaults.h */, + FFFD3c83fe687ff03c83fe68 /* PxVehicleLinearMath.h */, + FFFD3c83fed07ff03c83fed0 /* PxVehicleSerialization.h */, + FFFD3c83ff387ff03c83ff38 /* PxVehicleSuspLimitConstraintShader.h */, + FFFD3c83ffa07ff03c83ffa0 /* PxVehicleSuspWheelTire4.h */, + FFFD3c8400087ff03c840008 /* PxVehicleComponents.cpp */, + FFFD3c8400707ff03c840070 /* PxVehicleDrive.cpp */, + FFFD3c8400d87ff03c8400d8 /* PxVehicleDrive4W.cpp */, + FFFD3c8401407ff03c840140 /* PxVehicleDriveNW.cpp */, + FFFD3c8401a87ff03c8401a8 /* PxVehicleDriveTank.cpp */, + FFFD3c8402107ff03c840210 /* PxVehicleMetaData.cpp */, + FFFD3c8402787ff03c840278 /* PxVehicleNoDrive.cpp */, + FFFD3c8402e07ff03c8402e0 /* PxVehicleSDK.cpp */, + FFFD3c8403487ff03c840348 /* PxVehicleSerialization.cpp */, + FFFD3c8403b07ff03c8403b0 /* PxVehicleSuspWheelTire4.cpp */, + FFFD3c8404187ff03c840418 /* PxVehicleTireFriction.cpp */, + FFFD3c8404807ff03c840480 /* PxVehicleUpdate.cpp */, + FFFD3c8404e87ff03c8404e8 /* PxVehicleWheels.cpp */, + FFFD3c8405507ff03c840550 /* VehicleUtilControl.cpp */, + FFFD3c8405b87ff03c8405b8 /* VehicleUtilSetup.cpp */, + FFFD3c8406207ff03c840620 /* VehicleUtilTelemetry.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5b835cd07f8c5b835cd0 /* metadata */ = { + FFFB3b9a2ff07ff03b9a2ff0 /* metadata */ = { isa = PBXGroup; children = ( - FFFD5b836f007f8c5b836f00 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, - FFFD5b836f687f8c5b836f68 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, - FFFD5b836fd07f8c5b836fd0 /* include/PxVehicleMetaDataObjects.h */, - FFFD5b8370387f8c5b837038 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, - FFFD5b8370a07f8c5b8370a0 /* src/PxVehicleMetaDataObjects.cpp */, + FFFD3b9a57d07ff03b9a57d0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, + FFFD3b9a58387ff03b9a5838 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, + FFFD3b9a58a07ff03b9a58a0 /* include/PxVehicleMetaDataObjects.h */, + FFFD3b9a59087ff03b9a5908 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, + FFFD3b9a59707ff03b9a5970 /* src/PxVehicleMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB5b836b207f8c5b836b20 /* PhysXExtensions */ = { + FFFB3b9a54207ff03b9a5420 /* PhysXExtensions */ = { isa = PBXGroup; children = ( - FFFB5b8391407f8c5b839140 /* include */, - FFFB5b8391687f8c5b839168 /* src */, - FFFB5b8391907f8c5b839190 /* serialization */, - FFFB5b8391b87f8c5b8391b8 /* metadata */, + FFFB3b9ac9d07ff03b9ac9d0 /* include */, + FFFB3b9ac9f87ff03b9ac9f8 /* src */, + FFFB3b9aca207ff03b9aca20 /* serialization */, + FFFB3b9aca487ff03b9aca48 /* metadata */, ); name = "PhysXExtensions"; sourceTree = "<group>"; }; - FFFB5b8391407f8c5b839140 /* include */ = { + FFFB3b9ac9d07ff03b9ac9d0 /* include */ = { isa = PBXGroup; children = ( - FFFD5b0422007f8c5b042200 /* PxBinaryConverter.h */, - FFFD5b0422687f8c5b042268 /* PxBroadPhaseExt.h */, - FFFD5b0422d07f8c5b0422d0 /* PxClothFabricCooker.h */, - FFFD5b0423387f8c5b042338 /* PxClothMeshDesc.h */, - FFFD5b0423a07f8c5b0423a0 /* PxClothMeshQuadifier.h */, - FFFD5b0424087f8c5b042408 /* PxClothTetherCooker.h */, - FFFD5b0424707f8c5b042470 /* PxCollectionExt.h */, - FFFD5b0424d87f8c5b0424d8 /* PxConstraintExt.h */, - FFFD5b0425407f8c5b042540 /* PxConvexMeshExt.h */, - FFFD5b0425a87f8c5b0425a8 /* PxD6Joint.h */, - FFFD5b0426107f8c5b042610 /* PxDefaultAllocator.h */, - FFFD5b0426787f8c5b042678 /* PxDefaultCpuDispatcher.h */, - FFFD5b0426e07f8c5b0426e0 /* PxDefaultErrorCallback.h */, - FFFD5b0427487f8c5b042748 /* PxDefaultSimulationFilterShader.h */, - FFFD5b0427b07f8c5b0427b0 /* PxDefaultStreams.h */, - FFFD5b0428187f8c5b042818 /* PxDistanceJoint.h */, - FFFD5b0428807f8c5b042880 /* PxExtensionsAPI.h */, - FFFD5b0428e87f8c5b0428e8 /* PxFixedJoint.h */, - FFFD5b0429507f8c5b042950 /* PxJoint.h */, - FFFD5b0429b87f8c5b0429b8 /* PxJointLimit.h */, - FFFD5b042a207f8c5b042a20 /* PxMassProperties.h */, - FFFD5b042a887f8c5b042a88 /* PxParticleExt.h */, - FFFD5b042af07f8c5b042af0 /* PxPrismaticJoint.h */, - FFFD5b042b587f8c5b042b58 /* PxRaycastCCD.h */, - FFFD5b042bc07f8c5b042bc0 /* PxRepXSerializer.h */, - FFFD5b042c287f8c5b042c28 /* PxRepXSimpleType.h */, - FFFD5b042c907f8c5b042c90 /* PxRevoluteJoint.h */, - FFFD5b042cf87f8c5b042cf8 /* PxRigidActorExt.h */, - FFFD5b042d607f8c5b042d60 /* PxRigidBodyExt.h */, - FFFD5b042dc87f8c5b042dc8 /* PxSceneQueryExt.h */, - FFFD5b042e307f8c5b042e30 /* PxSerialization.h */, - FFFD5b042e987f8c5b042e98 /* PxShapeExt.h */, - FFFD5b042f007f8c5b042f00 /* PxSimpleFactory.h */, - FFFD5b042f687f8c5b042f68 /* PxSmoothNormals.h */, - FFFD5b042fd07f8c5b042fd0 /* PxSphericalJoint.h */, - FFFD5b0430387f8c5b043038 /* PxStringTableExt.h */, - FFFD5b0430a07f8c5b0430a0 /* PxTriangleMeshExt.h */, + FFFD3c8436007ff03c843600 /* PxBinaryConverter.h */, + FFFD3c8436687ff03c843668 /* PxBroadPhaseExt.h */, + FFFD3c8436d07ff03c8436d0 /* PxClothFabricCooker.h */, + FFFD3c8437387ff03c843738 /* PxClothMeshDesc.h */, + FFFD3c8437a07ff03c8437a0 /* PxClothMeshQuadifier.h */, + FFFD3c8438087ff03c843808 /* PxClothTetherCooker.h */, + FFFD3c8438707ff03c843870 /* PxCollectionExt.h */, + FFFD3c8438d87ff03c8438d8 /* PxConstraintExt.h */, + FFFD3c8439407ff03c843940 /* PxConvexMeshExt.h */, + FFFD3c8439a87ff03c8439a8 /* PxD6Joint.h */, + FFFD3c843a107ff03c843a10 /* PxDefaultAllocator.h */, + FFFD3c843a787ff03c843a78 /* PxDefaultCpuDispatcher.h */, + FFFD3c843ae07ff03c843ae0 /* PxDefaultErrorCallback.h */, + FFFD3c843b487ff03c843b48 /* PxDefaultSimulationFilterShader.h */, + FFFD3c843bb07ff03c843bb0 /* PxDefaultStreams.h */, + FFFD3c843c187ff03c843c18 /* PxDistanceJoint.h */, + FFFD3c843c807ff03c843c80 /* PxExtensionsAPI.h */, + FFFD3c843ce87ff03c843ce8 /* PxFixedJoint.h */, + FFFD3c843d507ff03c843d50 /* PxJoint.h */, + FFFD3c843db87ff03c843db8 /* PxJointLimit.h */, + FFFD3c843e207ff03c843e20 /* PxMassProperties.h */, + FFFD3c843e887ff03c843e88 /* PxParticleExt.h */, + FFFD3c843ef07ff03c843ef0 /* PxPrismaticJoint.h */, + FFFD3c843f587ff03c843f58 /* PxRaycastCCD.h */, + FFFD3c843fc07ff03c843fc0 /* PxRepXSerializer.h */, + FFFD3c8440287ff03c844028 /* PxRepXSimpleType.h */, + FFFD3c8440907ff03c844090 /* PxRevoluteJoint.h */, + FFFD3c8440f87ff03c8440f8 /* PxRigidActorExt.h */, + FFFD3c8441607ff03c844160 /* PxRigidBodyExt.h */, + FFFD3c8441c87ff03c8441c8 /* PxSceneQueryExt.h */, + FFFD3c8442307ff03c844230 /* PxSerialization.h */, + FFFD3c8442987ff03c844298 /* PxShapeExt.h */, + FFFD3c8443007ff03c844300 /* PxSimpleFactory.h */, + FFFD3c8443687ff03c844368 /* PxSmoothNormals.h */, + FFFD3c8443d07ff03c8443d0 /* PxSphericalJoint.h */, + FFFD3c8444387ff03c844438 /* PxStringTableExt.h */, + FFFD3c8444a07ff03c8444a0 /* PxTriangleMeshExt.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5b8391687f8c5b839168 /* src */ = { + FFFB3b9ac9f87ff03b9ac9f8 /* src */ = { isa = PBXGroup; children = ( - FFFD5b040c007f8c5b040c00 /* ExtConstraintHelper.h */, - FFFD5b040c687f8c5b040c68 /* ExtCpuWorkerThread.h */, - FFFD5b040cd07f8c5b040cd0 /* ExtD6Joint.h */, - FFFD5b040d387f8c5b040d38 /* ExtDefaultCpuDispatcher.h */, - FFFD5b040da07f8c5b040da0 /* ExtDistanceJoint.h */, - FFFD5b040e087f8c5b040e08 /* ExtFixedJoint.h */, - FFFD5b040e707f8c5b040e70 /* ExtInertiaTensor.h */, - FFFD5b040ed87f8c5b040ed8 /* ExtJoint.h */, - FFFD5b040f407f8c5b040f40 /* ExtJointMetaDataExtensions.h */, - FFFD5b040fa87f8c5b040fa8 /* ExtPlatform.h */, - FFFD5b0410107f8c5b041010 /* ExtPrismaticJoint.h */, - FFFD5b0410787f8c5b041078 /* ExtPvd.h */, - FFFD5b0410e07f8c5b0410e0 /* ExtRevoluteJoint.h */, - FFFD5b0411487f8c5b041148 /* ExtSerialization.h */, - FFFD5b0411b07f8c5b0411b0 /* ExtSharedQueueEntryPool.h */, - FFFD5b0412187f8c5b041218 /* ExtSphericalJoint.h */, - FFFD5b0412807f8c5b041280 /* ExtTaskQueueHelper.h */, - FFFD5b0412e87f8c5b0412e8 /* ExtBroadPhase.cpp */, - FFFD5b0413507f8c5b041350 /* ExtClothFabricCooker.cpp */, - FFFD5b0413b87f8c5b0413b8 /* ExtClothGeodesicTetherCooker.cpp */, - FFFD5b0414207f8c5b041420 /* ExtClothMeshQuadifier.cpp */, - FFFD5b0414887f8c5b041488 /* ExtClothSimpleTetherCooker.cpp */, - FFFD5b0414f07f8c5b0414f0 /* ExtCollection.cpp */, - FFFD5b0415587f8c5b041558 /* ExtConvexMeshExt.cpp */, - FFFD5b0415c07f8c5b0415c0 /* ExtCpuWorkerThread.cpp */, - FFFD5b0416287f8c5b041628 /* ExtD6Joint.cpp */, - FFFD5b0416907f8c5b041690 /* ExtD6JointSolverPrep.cpp */, - FFFD5b0416f87f8c5b0416f8 /* ExtDefaultCpuDispatcher.cpp */, - FFFD5b0417607f8c5b041760 /* ExtDefaultErrorCallback.cpp */, - FFFD5b0417c87f8c5b0417c8 /* ExtDefaultSimulationFilterShader.cpp */, - FFFD5b0418307f8c5b041830 /* ExtDefaultStreams.cpp */, - FFFD5b0418987f8c5b041898 /* ExtDistanceJoint.cpp */, - FFFD5b0419007f8c5b041900 /* ExtDistanceJointSolverPrep.cpp */, - FFFD5b0419687f8c5b041968 /* ExtExtensions.cpp */, - FFFD5b0419d07f8c5b0419d0 /* ExtFixedJoint.cpp */, - FFFD5b041a387f8c5b041a38 /* ExtFixedJointSolverPrep.cpp */, - FFFD5b041aa07f8c5b041aa0 /* ExtJoint.cpp */, - FFFD5b041b087f8c5b041b08 /* ExtMetaData.cpp */, - FFFD5b041b707f8c5b041b70 /* ExtParticleExt.cpp */, - FFFD5b041bd87f8c5b041bd8 /* ExtPrismaticJoint.cpp */, - FFFD5b041c407f8c5b041c40 /* ExtPrismaticJointSolverPrep.cpp */, - FFFD5b041ca87f8c5b041ca8 /* ExtPvd.cpp */, - FFFD5b041d107f8c5b041d10 /* ExtPxStringTable.cpp */, - FFFD5b041d787f8c5b041d78 /* ExtRaycastCCD.cpp */, - FFFD5b041de07f8c5b041de0 /* ExtRevoluteJoint.cpp */, - FFFD5b041e487f8c5b041e48 /* ExtRevoluteJointSolverPrep.cpp */, - FFFD5b041eb07f8c5b041eb0 /* ExtRigidBodyExt.cpp */, - FFFD5b041f187f8c5b041f18 /* ExtSceneQueryExt.cpp */, - FFFD5b041f807f8c5b041f80 /* ExtSimpleFactory.cpp */, - FFFD5b041fe87f8c5b041fe8 /* ExtSmoothNormals.cpp */, - FFFD5b0420507f8c5b042050 /* ExtSphericalJoint.cpp */, - FFFD5b0420b87f8c5b0420b8 /* ExtSphericalJointSolverPrep.cpp */, - FFFD5b0421207f8c5b042120 /* ExtTriangleMeshExt.cpp */, + FFFD3c8420007ff03c842000 /* ExtConstraintHelper.h */, + FFFD3c8420687ff03c842068 /* ExtCpuWorkerThread.h */, + FFFD3c8420d07ff03c8420d0 /* ExtD6Joint.h */, + FFFD3c8421387ff03c842138 /* ExtDefaultCpuDispatcher.h */, + FFFD3c8421a07ff03c8421a0 /* ExtDistanceJoint.h */, + FFFD3c8422087ff03c842208 /* ExtFixedJoint.h */, + FFFD3c8422707ff03c842270 /* ExtInertiaTensor.h */, + FFFD3c8422d87ff03c8422d8 /* ExtJoint.h */, + FFFD3c8423407ff03c842340 /* ExtJointMetaDataExtensions.h */, + FFFD3c8423a87ff03c8423a8 /* ExtPlatform.h */, + FFFD3c8424107ff03c842410 /* ExtPrismaticJoint.h */, + FFFD3c8424787ff03c842478 /* ExtPvd.h */, + FFFD3c8424e07ff03c8424e0 /* ExtRevoluteJoint.h */, + FFFD3c8425487ff03c842548 /* ExtSerialization.h */, + FFFD3c8425b07ff03c8425b0 /* ExtSharedQueueEntryPool.h */, + FFFD3c8426187ff03c842618 /* ExtSphericalJoint.h */, + FFFD3c8426807ff03c842680 /* ExtTaskQueueHelper.h */, + FFFD3c8426e87ff03c8426e8 /* ExtBroadPhase.cpp */, + FFFD3c8427507ff03c842750 /* ExtClothFabricCooker.cpp */, + FFFD3c8427b87ff03c8427b8 /* ExtClothGeodesicTetherCooker.cpp */, + FFFD3c8428207ff03c842820 /* ExtClothMeshQuadifier.cpp */, + FFFD3c8428887ff03c842888 /* ExtClothSimpleTetherCooker.cpp */, + FFFD3c8428f07ff03c8428f0 /* ExtCollection.cpp */, + FFFD3c8429587ff03c842958 /* ExtConvexMeshExt.cpp */, + FFFD3c8429c07ff03c8429c0 /* ExtCpuWorkerThread.cpp */, + FFFD3c842a287ff03c842a28 /* ExtD6Joint.cpp */, + FFFD3c842a907ff03c842a90 /* ExtD6JointSolverPrep.cpp */, + FFFD3c842af87ff03c842af8 /* ExtDefaultCpuDispatcher.cpp */, + FFFD3c842b607ff03c842b60 /* ExtDefaultErrorCallback.cpp */, + FFFD3c842bc87ff03c842bc8 /* ExtDefaultSimulationFilterShader.cpp */, + FFFD3c842c307ff03c842c30 /* ExtDefaultStreams.cpp */, + FFFD3c842c987ff03c842c98 /* ExtDistanceJoint.cpp */, + FFFD3c842d007ff03c842d00 /* ExtDistanceJointSolverPrep.cpp */, + FFFD3c842d687ff03c842d68 /* ExtExtensions.cpp */, + FFFD3c842dd07ff03c842dd0 /* ExtFixedJoint.cpp */, + FFFD3c842e387ff03c842e38 /* ExtFixedJointSolverPrep.cpp */, + FFFD3c842ea07ff03c842ea0 /* ExtJoint.cpp */, + FFFD3c842f087ff03c842f08 /* ExtMetaData.cpp */, + FFFD3c842f707ff03c842f70 /* ExtParticleExt.cpp */, + FFFD3c842fd87ff03c842fd8 /* ExtPrismaticJoint.cpp */, + FFFD3c8430407ff03c843040 /* ExtPrismaticJointSolverPrep.cpp */, + FFFD3c8430a87ff03c8430a8 /* ExtPvd.cpp */, + FFFD3c8431107ff03c843110 /* ExtPxStringTable.cpp */, + FFFD3c8431787ff03c843178 /* ExtRaycastCCD.cpp */, + FFFD3c8431e07ff03c8431e0 /* ExtRevoluteJoint.cpp */, + FFFD3c8432487ff03c843248 /* ExtRevoluteJointSolverPrep.cpp */, + FFFD3c8432b07ff03c8432b0 /* ExtRigidBodyExt.cpp */, + FFFD3c8433187ff03c843318 /* ExtSceneQueryExt.cpp */, + FFFD3c8433807ff03c843380 /* ExtSimpleFactory.cpp */, + FFFD3c8433e87ff03c8433e8 /* ExtSmoothNormals.cpp */, + FFFD3c8434507ff03c843450 /* ExtSphericalJoint.cpp */, + FFFD3c8434b87ff03c8434b8 /* ExtSphericalJointSolverPrep.cpp */, + FFFD3c8435207ff03c843520 /* ExtTriangleMeshExt.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5b8391907f8c5b839190 /* serialization */ = { + FFFB3b9aca207ff03b9aca20 /* serialization */ = { isa = PBXGroup; children = ( - FFFD5b0456007f8c5b045600 /* SnSerialUtils.h */, - FFFD5b0456687f8c5b045668 /* SnSerializationRegistry.h */, - FFFD5b0456d07f8c5b0456d0 /* SnSerialUtils.cpp */, - FFFD5b0457387f8c5b045738 /* SnSerialization.cpp */, - FFFD5b0457a07f8c5b0457a0 /* SnSerializationRegistry.cpp */, - FFFD5b0458087f8c5b045808 /* Binary/SnConvX.h */, - FFFD5b0458707f8c5b045870 /* Binary/SnConvX_Align.h */, - FFFD5b0458d87f8c5b0458d8 /* Binary/SnConvX_Common.h */, - FFFD5b0459407f8c5b045940 /* Binary/SnConvX_MetaData.h */, - FFFD5b0459a87f8c5b0459a8 /* Binary/SnConvX_Output.h */, - FFFD5b045a107f8c5b045a10 /* Binary/SnConvX_Union.h */, - FFFD5b045a787f8c5b045a78 /* Binary/SnSerializationContext.h */, - FFFD5b045ae07f8c5b045ae0 /* Binary/SnBinaryDeserialization.cpp */, - FFFD5b045b487f8c5b045b48 /* Binary/SnBinarySerialization.cpp */, - FFFD5b045bb07f8c5b045bb0 /* Binary/SnConvX.cpp */, - FFFD5b045c187f8c5b045c18 /* Binary/SnConvX_Align.cpp */, - FFFD5b045c807f8c5b045c80 /* Binary/SnConvX_Convert.cpp */, - FFFD5b045ce87f8c5b045ce8 /* Binary/SnConvX_Error.cpp */, - FFFD5b045d507f8c5b045d50 /* Binary/SnConvX_MetaData.cpp */, - FFFD5b045db87f8c5b045db8 /* Binary/SnConvX_Output.cpp */, - FFFD5b045e207f8c5b045e20 /* Binary/SnConvX_Union.cpp */, - FFFD5b045e887f8c5b045e88 /* Binary/SnSerializationContext.cpp */, - FFFD5b045ef07f8c5b045ef0 /* Xml/SnJointRepXSerializer.h */, - FFFD5b045f587f8c5b045f58 /* Xml/SnPxStreamOperators.h */, - FFFD5b045fc07f8c5b045fc0 /* Xml/SnRepX1_0Defaults.h */, - FFFD5b0460287f8c5b046028 /* Xml/SnRepX3_1Defaults.h */, - FFFD5b0460907f8c5b046090 /* Xml/SnRepX3_2Defaults.h */, - FFFD5b0460f87f8c5b0460f8 /* Xml/SnRepXCollection.h */, - FFFD5b0461607f8c5b046160 /* Xml/SnRepXCoreSerializer.h */, - FFFD5b0461c87f8c5b0461c8 /* Xml/SnRepXSerializerImpl.h */, - FFFD5b0462307f8c5b046230 /* Xml/SnRepXUpgrader.h */, - FFFD5b0462987f8c5b046298 /* Xml/SnSimpleXmlWriter.h */, - FFFD5b0463007f8c5b046300 /* Xml/SnXmlDeserializer.h */, - FFFD5b0463687f8c5b046368 /* Xml/SnXmlImpl.h */, - FFFD5b0463d07f8c5b0463d0 /* Xml/SnXmlMemoryAllocator.h */, - FFFD5b0464387f8c5b046438 /* Xml/SnXmlMemoryPool.h */, - FFFD5b0464a07f8c5b0464a0 /* Xml/SnXmlMemoryPoolStreams.h */, - FFFD5b0465087f8c5b046508 /* Xml/SnXmlReader.h */, - FFFD5b0465707f8c5b046570 /* Xml/SnXmlSerializer.h */, - FFFD5b0465d87f8c5b0465d8 /* Xml/SnXmlSimpleXmlWriter.h */, - FFFD5b0466407f8c5b046640 /* Xml/SnXmlStringToType.h */, - FFFD5b0466a87f8c5b0466a8 /* Xml/SnXmlVisitorReader.h */, - FFFD5b0467107f8c5b046710 /* Xml/SnXmlVisitorWriter.h */, - FFFD5b0467787f8c5b046778 /* Xml/SnXmlWriter.h */, - FFFD5b0467e07f8c5b0467e0 /* Xml/SnJointRepXSerializer.cpp */, - FFFD5b0468487f8c5b046848 /* Xml/SnRepXCoreSerializer.cpp */, - FFFD5b0468b07f8c5b0468b0 /* Xml/SnRepXUpgrader.cpp */, - FFFD5b0469187f8c5b046918 /* Xml/SnXmlSerialization.cpp */, - FFFD5b0469807f8c5b046980 /* File/SnFile.h */, + FFFD3c845c007ff03c845c00 /* SnSerialUtils.h */, + FFFD3c845c687ff03c845c68 /* SnSerializationRegistry.h */, + FFFD3c845cd07ff03c845cd0 /* SnSerialUtils.cpp */, + FFFD3c845d387ff03c845d38 /* SnSerialization.cpp */, + FFFD3c845da07ff03c845da0 /* SnSerializationRegistry.cpp */, + FFFD3c845e087ff03c845e08 /* Binary/SnConvX.h */, + FFFD3c845e707ff03c845e70 /* Binary/SnConvX_Align.h */, + FFFD3c845ed87ff03c845ed8 /* Binary/SnConvX_Common.h */, + FFFD3c845f407ff03c845f40 /* Binary/SnConvX_MetaData.h */, + FFFD3c845fa87ff03c845fa8 /* Binary/SnConvX_Output.h */, + FFFD3c8460107ff03c846010 /* Binary/SnConvX_Union.h */, + FFFD3c8460787ff03c846078 /* Binary/SnSerializationContext.h */, + FFFD3c8460e07ff03c8460e0 /* Binary/SnBinaryDeserialization.cpp */, + FFFD3c8461487ff03c846148 /* Binary/SnBinarySerialization.cpp */, + FFFD3c8461b07ff03c8461b0 /* Binary/SnConvX.cpp */, + FFFD3c8462187ff03c846218 /* Binary/SnConvX_Align.cpp */, + FFFD3c8462807ff03c846280 /* Binary/SnConvX_Convert.cpp */, + FFFD3c8462e87ff03c8462e8 /* Binary/SnConvX_Error.cpp */, + FFFD3c8463507ff03c846350 /* Binary/SnConvX_MetaData.cpp */, + FFFD3c8463b87ff03c8463b8 /* Binary/SnConvX_Output.cpp */, + FFFD3c8464207ff03c846420 /* Binary/SnConvX_Union.cpp */, + FFFD3c8464887ff03c846488 /* Binary/SnSerializationContext.cpp */, + FFFD3c8464f07ff03c8464f0 /* Xml/SnJointRepXSerializer.h */, + FFFD3c8465587ff03c846558 /* Xml/SnPxStreamOperators.h */, + FFFD3c8465c07ff03c8465c0 /* Xml/SnRepX1_0Defaults.h */, + FFFD3c8466287ff03c846628 /* Xml/SnRepX3_1Defaults.h */, + FFFD3c8466907ff03c846690 /* Xml/SnRepX3_2Defaults.h */, + FFFD3c8466f87ff03c8466f8 /* Xml/SnRepXCollection.h */, + FFFD3c8467607ff03c846760 /* Xml/SnRepXCoreSerializer.h */, + FFFD3c8467c87ff03c8467c8 /* Xml/SnRepXSerializerImpl.h */, + FFFD3c8468307ff03c846830 /* Xml/SnRepXUpgrader.h */, + FFFD3c8468987ff03c846898 /* Xml/SnSimpleXmlWriter.h */, + FFFD3c8469007ff03c846900 /* Xml/SnXmlDeserializer.h */, + FFFD3c8469687ff03c846968 /* Xml/SnXmlImpl.h */, + FFFD3c8469d07ff03c8469d0 /* Xml/SnXmlMemoryAllocator.h */, + FFFD3c846a387ff03c846a38 /* Xml/SnXmlMemoryPool.h */, + FFFD3c846aa07ff03c846aa0 /* Xml/SnXmlMemoryPoolStreams.h */, + FFFD3c846b087ff03c846b08 /* Xml/SnXmlReader.h */, + FFFD3c846b707ff03c846b70 /* Xml/SnXmlSerializer.h */, + FFFD3c846bd87ff03c846bd8 /* Xml/SnXmlSimpleXmlWriter.h */, + FFFD3c846c407ff03c846c40 /* Xml/SnXmlStringToType.h */, + FFFD3c846ca87ff03c846ca8 /* Xml/SnXmlVisitorReader.h */, + FFFD3c846d107ff03c846d10 /* Xml/SnXmlVisitorWriter.h */, + FFFD3c846d787ff03c846d78 /* Xml/SnXmlWriter.h */, + FFFD3c846de07ff03c846de0 /* Xml/SnJointRepXSerializer.cpp */, + FFFD3c846e487ff03c846e48 /* Xml/SnRepXCoreSerializer.cpp */, + FFFD3c846eb07ff03c846eb0 /* Xml/SnRepXUpgrader.cpp */, + FFFD3c846f187ff03c846f18 /* Xml/SnXmlSerialization.cpp */, + FFFD3c846f807ff03c846f80 /* File/SnFile.h */, ); name = "serialization"; sourceTree = SOURCE_ROOT; }; - FFFB5b8391b87f8c5b8391b8 /* metadata */ = { + FFFB3b9aca487ff03b9aca48 /* metadata */ = { isa = PBXGroup; children = ( - FFFD5b0432007f8c5b043200 /* core/include/PvdMetaDataDefineProperties.h */, - FFFD5b0432687f8c5b043268 /* core/include/PvdMetaDataExtensions.h */, - FFFD5b0432d07f8c5b0432d0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFD5b0433387f8c5b043338 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFD5b0433a07f8c5b0433a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFD5b0434087f8c5b043408 /* core/include/PxMetaDataCompare.h */, - FFFD5b0434707f8c5b043470 /* core/include/PxMetaDataCppPrefix.h */, - FFFD5b0434d87f8c5b0434d8 /* core/include/PxMetaDataObjects.h */, - FFFD5b0435407f8c5b043540 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFD5b0435a87f8c5b0435a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, - FFFD5b0436107f8c5b043610 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, - FFFD5b0436787f8c5b043678 /* extensions/include/PxExtensionMetaDataObjects.h */, - FFFD5b0436e07f8c5b0436e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, + FFFD3c8446007ff03c844600 /* core/include/PvdMetaDataDefineProperties.h */, + FFFD3c8446687ff03c844668 /* core/include/PvdMetaDataExtensions.h */, + FFFD3c8446d07ff03c8446d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFD3c8447387ff03c844738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFD3c8447a07ff03c8447a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFD3c8448087ff03c844808 /* core/include/PxMetaDataCompare.h */, + FFFD3c8448707ff03c844870 /* core/include/PxMetaDataCppPrefix.h */, + FFFD3c8448d87ff03c8448d8 /* core/include/PxMetaDataObjects.h */, + FFFD3c8449407ff03c844940 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFD3c8449a87ff03c8449a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, + FFFD3c844a107ff03c844a10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, + FFFD3c844a787ff03c844a78 /* extensions/include/PxExtensionMetaDataObjects.h */, + FFFD3c844ae07ff03c844ae0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB5b847c107f8c5b847c10 /* SceneQuery */ = { + FFFB3b9b66107ff03b9b6610 /* SceneQuery */ = { isa = PBXGroup; children = ( - FFFB5b849b407f8c5b849b40 /* src */, - FFFB5b849b687f8c5b849b68 /* include */, + FFFB3b9b85807ff03b9b8580 /* src */, + FFFB3b9b85a87ff03b9b85a8 /* include */, ); name = "SceneQuery"; sourceTree = "<group>"; }; - FFFB5b849b407f8c5b849b40 /* src */ = { + FFFB3b9b85807ff03b9b8580 /* src */ = { isa = PBXGroup; children = ( - FFFD5b0496007f8c5b049600 /* SqAABBPruner.cpp */, - FFFD5b0496687f8c5b049668 /* SqAABBTree.cpp */, - FFFD5b0496d07f8c5b0496d0 /* SqAABBTreeUpdateMap.cpp */, - FFFD5b0497387f8c5b049738 /* SqBounds.cpp */, - FFFD5b0497a07f8c5b0497a0 /* SqBucketPruner.cpp */, - FFFD5b0498087f8c5b049808 /* SqExtendedBucketPruner.cpp */, - FFFD5b0498707f8c5b049870 /* SqMetaData.cpp */, - FFFD5b0498d87f8c5b0498d8 /* SqPruningPool.cpp */, - FFFD5b0499407f8c5b049940 /* SqPruningStructure.cpp */, - FFFD5b0499a87f8c5b0499a8 /* SqSceneQueryManager.cpp */, - FFFD5b049a107f8c5b049a10 /* SqAABBPruner.h */, - FFFD5b049a787f8c5b049a78 /* SqAABBTree.h */, - FFFD5b049ae07f8c5b049ae0 /* SqAABBTreeQuery.h */, - FFFD5b049b487f8c5b049b48 /* SqAABBTreeUpdateMap.h */, - FFFD5b049bb07f8c5b049bb0 /* SqBounds.h */, - FFFD5b049c187f8c5b049c18 /* SqBucketPruner.h */, - FFFD5b049c807f8c5b049c80 /* SqExtendedBucketPruner.h */, - FFFD5b049ce87f8c5b049ce8 /* SqPrunerTestsSIMD.h */, - FFFD5b049d507f8c5b049d50 /* SqPruningPool.h */, - FFFD5b049db87f8c5b049db8 /* SqTypedef.h */, + FFFD3c84ac007ff03c84ac00 /* SqAABBPruner.cpp */, + FFFD3c84ac687ff03c84ac68 /* SqAABBTree.cpp */, + FFFD3c84acd07ff03c84acd0 /* SqAABBTreeUpdateMap.cpp */, + FFFD3c84ad387ff03c84ad38 /* SqBounds.cpp */, + FFFD3c84ada07ff03c84ada0 /* SqBucketPruner.cpp */, + FFFD3c84ae087ff03c84ae08 /* SqExtendedBucketPruner.cpp */, + FFFD3c84ae707ff03c84ae70 /* SqMetaData.cpp */, + FFFD3c84aed87ff03c84aed8 /* SqPruningPool.cpp */, + FFFD3c84af407ff03c84af40 /* SqPruningStructure.cpp */, + FFFD3c84afa87ff03c84afa8 /* SqSceneQueryManager.cpp */, + FFFD3c84b0107ff03c84b010 /* SqAABBPruner.h */, + FFFD3c84b0787ff03c84b078 /* SqAABBTree.h */, + FFFD3c84b0e07ff03c84b0e0 /* SqAABBTreeQuery.h */, + FFFD3c84b1487ff03c84b148 /* SqAABBTreeUpdateMap.h */, + FFFD3c84b1b07ff03c84b1b0 /* SqBounds.h */, + FFFD3c84b2187ff03c84b218 /* SqBucketPruner.h */, + FFFD3c84b2807ff03c84b280 /* SqExtendedBucketPruner.h */, + FFFD3c84b2e87ff03c84b2e8 /* SqPrunerTestsSIMD.h */, + FFFD3c84b3507ff03c84b350 /* SqPruningPool.h */, + FFFD3c84b3b87ff03c84b3b8 /* SqTypedef.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5b849b687f8c5b849b68 /* include */ = { + FFFB3b9b85a87ff03b9b85a8 /* include */ = { isa = PBXGroup; children = ( - FFFD5b84beb07f8c5b84beb0 /* SqPruner.h */, - FFFD5b84bf187f8c5b84bf18 /* SqPrunerMergeData.h */, - FFFD5b84bf807f8c5b84bf80 /* SqPruningStructure.h */, - FFFD5b84bfe87f8c5b84bfe8 /* SqSceneQueryManager.h */, + FFFD3b95a0a07ff03b95a0a0 /* SqPruner.h */, + FFFD3b95a1087ff03b95a108 /* SqPrunerMergeData.h */, + FFFD3b95a1707ff03b95a170 /* SqPruningStructure.h */, + FFFD3b95a1d87ff03b95a1d8 /* SqSceneQueryManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5b84c1707f8c5b84c170 /* SimulationController */ = { + FFFB3b951b307ff03b951b30 /* SimulationController */ = { isa = PBXGroup; children = ( - FFFB5b8503907f8c5b850390 /* include */, - FFFB5b8503b87f8c5b8503b8 /* src */, + FFFB3de03fa07ff03de03fa0 /* include */, + FFFB3de03fc87ff03de03fc8 /* src */, ); name = "SimulationController"; sourceTree = "<group>"; }; - FFFB5b8503907f8c5b850390 /* include */ = { + FFFB3de03fa07ff03de03fa0 /* include */ = { isa = PBXGroup; children = ( - FFFD5b04c0007f8c5b04c000 /* ScActorCore.h */, - FFFD5b04c0687f8c5b04c068 /* ScArticulationCore.h */, - FFFD5b04c0d07f8c5b04c0d0 /* ScArticulationJointCore.h */, - FFFD5b04c1387f8c5b04c138 /* ScBodyCore.h */, - FFFD5b04c1a07f8c5b04c1a0 /* ScClothCore.h */, - FFFD5b04c2087f8c5b04c208 /* ScClothFabricCore.h */, - FFFD5b04c2707f8c5b04c270 /* ScConstraintCore.h */, - FFFD5b04c2d87f8c5b04c2d8 /* ScIterators.h */, - FFFD5b04c3407f8c5b04c340 /* ScMaterialCore.h */, - FFFD5b04c3a87f8c5b04c3a8 /* ScParticleSystemCore.h */, - FFFD5b04c4107f8c5b04c410 /* ScPhysics.h */, - FFFD5b04c4787f8c5b04c478 /* ScRigidCore.h */, - FFFD5b04c4e07f8c5b04c4e0 /* ScScene.h */, - FFFD5b04c5487f8c5b04c548 /* ScShapeCore.h */, - FFFD5b04c5b07f8c5b04c5b0 /* ScStaticCore.h */, + FFFD3c84d6007ff03c84d600 /* ScActorCore.h */, + FFFD3c84d6687ff03c84d668 /* ScArticulationCore.h */, + FFFD3c84d6d07ff03c84d6d0 /* ScArticulationJointCore.h */, + FFFD3c84d7387ff03c84d738 /* ScBodyCore.h */, + FFFD3c84d7a07ff03c84d7a0 /* ScClothCore.h */, + FFFD3c84d8087ff03c84d808 /* ScClothFabricCore.h */, + FFFD3c84d8707ff03c84d870 /* ScConstraintCore.h */, + FFFD3c84d8d87ff03c84d8d8 /* ScIterators.h */, + FFFD3c84d9407ff03c84d940 /* ScMaterialCore.h */, + FFFD3c84d9a87ff03c84d9a8 /* ScParticleSystemCore.h */, + FFFD3c84da107ff03c84da10 /* ScPhysics.h */, + FFFD3c84da787ff03c84da78 /* ScRigidCore.h */, + FFFD3c84dae07ff03c84dae0 /* ScScene.h */, + FFFD3c84db487ff03c84db48 /* ScShapeCore.h */, + FFFD3c84dbb07ff03c84dbb0 /* ScStaticCore.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5b8503b87f8c5b8503b8 /* src */ = { + FFFB3de03fc87ff03de03fc8 /* src */ = { isa = PBXGroup; children = ( - FFFD5b04f2007f8c5b04f200 /* ScActorElementPair.h */, - FFFD5b04f2687f8c5b04f268 /* ScActorInteraction.h */, - FFFD5b04f2d07f8c5b04f2d0 /* ScActorPair.h */, - FFFD5b04f3387f8c5b04f338 /* ScActorSim.h */, - FFFD5b04f3a07f8c5b04f3a0 /* ScArticulationJointSim.h */, - FFFD5b04f4087f8c5b04f408 /* ScArticulationSim.h */, - FFFD5b04f4707f8c5b04f470 /* ScBodySim.h */, - FFFD5b04f4d87f8c5b04f4d8 /* ScClient.h */, - FFFD5b04f5407f8c5b04f540 /* ScConstraintGroupNode.h */, - FFFD5b04f5a87f8c5b04f5a8 /* ScConstraintInteraction.h */, - FFFD5b04f6107f8c5b04f610 /* ScConstraintProjectionManager.h */, - FFFD5b04f6787f8c5b04f678 /* ScConstraintProjectionTree.h */, - FFFD5b04f6e07f8c5b04f6e0 /* ScConstraintSim.h */, - FFFD5b04f7487f8c5b04f748 /* ScContactReportBuffer.h */, - FFFD5b04f7b07f8c5b04f7b0 /* ScContactStream.h */, - FFFD5b04f8187f8c5b04f818 /* ScElementInteractionMarker.h */, - FFFD5b04f8807f8c5b04f880 /* ScElementSim.h */, - FFFD5b04f8e87f8c5b04f8e8 /* ScElementSimInteraction.h */, - FFFD5b04f9507f8c5b04f950 /* ScInteraction.h */, - FFFD5b04f9b87f8c5b04f9b8 /* ScInteractionFlags.h */, - FFFD5b04fa207f8c5b04fa20 /* ScNPhaseCore.h */, - FFFD5b04fa887f8c5b04fa88 /* ScObjectIDTracker.h */, - FFFD5b04faf07f8c5b04faf0 /* ScRbElementInteraction.h */, - FFFD5b04fb587f8c5b04fb58 /* ScRigidSim.h */, - FFFD5b04fbc07f8c5b04fbc0 /* ScShapeInteraction.h */, - FFFD5b04fc287f8c5b04fc28 /* ScShapeIterator.h */, - FFFD5b04fc907f8c5b04fc90 /* ScShapeSim.h */, - FFFD5b04fcf87f8c5b04fcf8 /* ScSimStateData.h */, - FFFD5b04fd607f8c5b04fd60 /* ScSimStats.h */, - FFFD5b04fdc87f8c5b04fdc8 /* ScSimulationController.h */, - FFFD5b04fe307f8c5b04fe30 /* ScSqBoundsManager.h */, - FFFD5b04fe987f8c5b04fe98 /* ScStaticSim.h */, - FFFD5b04ff007f8c5b04ff00 /* ScTriggerInteraction.h */, - FFFD5b04ff687f8c5b04ff68 /* ScTriggerPairs.h */, - FFFD5b04ffd07f8c5b04ffd0 /* ScActorCore.cpp */, - FFFD5b0500387f8c5b050038 /* ScActorSim.cpp */, - FFFD5b0500a07f8c5b0500a0 /* ScArticulationCore.cpp */, - FFFD5b0501087f8c5b050108 /* ScArticulationJointCore.cpp */, - FFFD5b0501707f8c5b050170 /* ScArticulationJointSim.cpp */, - FFFD5b0501d87f8c5b0501d8 /* ScArticulationSim.cpp */, - FFFD5b0502407f8c5b050240 /* ScBodyCore.cpp */, - FFFD5b0502a87f8c5b0502a8 /* ScBodyCoreKinematic.cpp */, - FFFD5b0503107f8c5b050310 /* ScBodySim.cpp */, - FFFD5b0503787f8c5b050378 /* ScConstraintCore.cpp */, - FFFD5b0503e07f8c5b0503e0 /* ScConstraintGroupNode.cpp */, - FFFD5b0504487f8c5b050448 /* ScConstraintInteraction.cpp */, - FFFD5b0504b07f8c5b0504b0 /* ScConstraintProjectionManager.cpp */, - FFFD5b0505187f8c5b050518 /* ScConstraintProjectionTree.cpp */, - FFFD5b0505807f8c5b050580 /* ScConstraintSim.cpp */, - FFFD5b0505e87f8c5b0505e8 /* ScElementInteractionMarker.cpp */, - FFFD5b0506507f8c5b050650 /* ScElementSim.cpp */, - FFFD5b0506b87f8c5b0506b8 /* ScInteraction.cpp */, - FFFD5b0507207f8c5b050720 /* ScIterators.cpp */, - FFFD5b0507887f8c5b050788 /* ScMaterialCore.cpp */, - FFFD5b0507f07f8c5b0507f0 /* ScMetaData.cpp */, - FFFD5b0508587f8c5b050858 /* ScNPhaseCore.cpp */, - FFFD5b0508c07f8c5b0508c0 /* ScPhysics.cpp */, - FFFD5b0509287f8c5b050928 /* ScRigidCore.cpp */, - FFFD5b0509907f8c5b050990 /* ScRigidSim.cpp */, - FFFD5b0509f87f8c5b0509f8 /* ScScene.cpp */, - FFFD5b050a607f8c5b050a60 /* ScShapeCore.cpp */, - FFFD5b050ac87f8c5b050ac8 /* ScShapeInteraction.cpp */, - FFFD5b050b307f8c5b050b30 /* ScShapeSim.cpp */, - FFFD5b050b987f8c5b050b98 /* ScSimStats.cpp */, - FFFD5b050c007f8c5b050c00 /* ScSimulationController.cpp */, - FFFD5b050c687f8c5b050c68 /* ScSqBoundsManager.cpp */, - FFFD5b050cd07f8c5b050cd0 /* ScStaticCore.cpp */, - FFFD5b050d387f8c5b050d38 /* ScStaticSim.cpp */, - FFFD5b050da07f8c5b050da0 /* ScTriggerInteraction.cpp */, - FFFD5b050e087f8c5b050e08 /* particles/ScParticleBodyInteraction.h */, - FFFD5b050e707f8c5b050e70 /* particles/ScParticlePacketShape.h */, - FFFD5b050ed87f8c5b050ed8 /* particles/ScParticleSystemSim.h */, - FFFD5b050f407f8c5b050f40 /* particles/ScParticleBodyInteraction.cpp */, - FFFD5b050fa87f8c5b050fa8 /* particles/ScParticlePacketShape.cpp */, - FFFD5b0510107f8c5b051010 /* particles/ScParticleSystemCore.cpp */, - FFFD5b0510787f8c5b051078 /* particles/ScParticleSystemSim.cpp */, - FFFD5b0510e07f8c5b0510e0 /* cloth/ScClothShape.h */, - FFFD5b0511487f8c5b051148 /* cloth/ScClothSim.h */, - FFFD5b0511b07f8c5b0511b0 /* cloth/ScClothCore.cpp */, - FFFD5b0512187f8c5b051218 /* cloth/ScClothFabricCore.cpp */, - FFFD5b0512807f8c5b051280 /* cloth/ScClothShape.cpp */, - FFFD5b0512e87f8c5b0512e8 /* cloth/ScClothSim.cpp */, + FFFD3c1bdc007ff03c1bdc00 /* ScActorElementPair.h */, + FFFD3c1bdc687ff03c1bdc68 /* ScActorInteraction.h */, + FFFD3c1bdcd07ff03c1bdcd0 /* ScActorPair.h */, + FFFD3c1bdd387ff03c1bdd38 /* ScActorSim.h */, + FFFD3c1bdda07ff03c1bdda0 /* ScArticulationJointSim.h */, + FFFD3c1bde087ff03c1bde08 /* ScArticulationSim.h */, + FFFD3c1bde707ff03c1bde70 /* ScBodySim.h */, + FFFD3c1bded87ff03c1bded8 /* ScClient.h */, + FFFD3c1bdf407ff03c1bdf40 /* ScConstraintGroupNode.h */, + FFFD3c1bdfa87ff03c1bdfa8 /* ScConstraintInteraction.h */, + FFFD3c1be0107ff03c1be010 /* ScConstraintProjectionManager.h */, + FFFD3c1be0787ff03c1be078 /* ScConstraintProjectionTree.h */, + FFFD3c1be0e07ff03c1be0e0 /* ScConstraintSim.h */, + FFFD3c1be1487ff03c1be148 /* ScContactReportBuffer.h */, + FFFD3c1be1b07ff03c1be1b0 /* ScContactStream.h */, + FFFD3c1be2187ff03c1be218 /* ScElementInteractionMarker.h */, + FFFD3c1be2807ff03c1be280 /* ScElementSim.h */, + FFFD3c1be2e87ff03c1be2e8 /* ScElementSimInteraction.h */, + FFFD3c1be3507ff03c1be350 /* ScInteraction.h */, + FFFD3c1be3b87ff03c1be3b8 /* ScInteractionFlags.h */, + FFFD3c1be4207ff03c1be420 /* ScNPhaseCore.h */, + FFFD3c1be4887ff03c1be488 /* ScObjectIDTracker.h */, + FFFD3c1be4f07ff03c1be4f0 /* ScRbElementInteraction.h */, + FFFD3c1be5587ff03c1be558 /* ScRigidSim.h */, + FFFD3c1be5c07ff03c1be5c0 /* ScShapeInteraction.h */, + FFFD3c1be6287ff03c1be628 /* ScShapeIterator.h */, + FFFD3c1be6907ff03c1be690 /* ScShapeSim.h */, + FFFD3c1be6f87ff03c1be6f8 /* ScSimStateData.h */, + FFFD3c1be7607ff03c1be760 /* ScSimStats.h */, + FFFD3c1be7c87ff03c1be7c8 /* ScSimulationController.h */, + FFFD3c1be8307ff03c1be830 /* ScSqBoundsManager.h */, + FFFD3c1be8987ff03c1be898 /* ScStaticSim.h */, + FFFD3c1be9007ff03c1be900 /* ScTriggerInteraction.h */, + FFFD3c1be9687ff03c1be968 /* ScTriggerPairs.h */, + FFFD3c1be9d07ff03c1be9d0 /* ScActorCore.cpp */, + FFFD3c1bea387ff03c1bea38 /* ScActorSim.cpp */, + FFFD3c1beaa07ff03c1beaa0 /* ScArticulationCore.cpp */, + FFFD3c1beb087ff03c1beb08 /* ScArticulationJointCore.cpp */, + FFFD3c1beb707ff03c1beb70 /* ScArticulationJointSim.cpp */, + FFFD3c1bebd87ff03c1bebd8 /* ScArticulationSim.cpp */, + FFFD3c1bec407ff03c1bec40 /* ScBodyCore.cpp */, + FFFD3c1beca87ff03c1beca8 /* ScBodyCoreKinematic.cpp */, + FFFD3c1bed107ff03c1bed10 /* ScBodySim.cpp */, + FFFD3c1bed787ff03c1bed78 /* ScConstraintCore.cpp */, + FFFD3c1bede07ff03c1bede0 /* ScConstraintGroupNode.cpp */, + FFFD3c1bee487ff03c1bee48 /* ScConstraintInteraction.cpp */, + FFFD3c1beeb07ff03c1beeb0 /* ScConstraintProjectionManager.cpp */, + FFFD3c1bef187ff03c1bef18 /* ScConstraintProjectionTree.cpp */, + FFFD3c1bef807ff03c1bef80 /* ScConstraintSim.cpp */, + FFFD3c1befe87ff03c1befe8 /* ScElementInteractionMarker.cpp */, + FFFD3c1bf0507ff03c1bf050 /* ScElementSim.cpp */, + FFFD3c1bf0b87ff03c1bf0b8 /* ScInteraction.cpp */, + FFFD3c1bf1207ff03c1bf120 /* ScIterators.cpp */, + FFFD3c1bf1887ff03c1bf188 /* ScMaterialCore.cpp */, + FFFD3c1bf1f07ff03c1bf1f0 /* ScMetaData.cpp */, + FFFD3c1bf2587ff03c1bf258 /* ScNPhaseCore.cpp */, + FFFD3c1bf2c07ff03c1bf2c0 /* ScPhysics.cpp */, + FFFD3c1bf3287ff03c1bf328 /* ScRigidCore.cpp */, + FFFD3c1bf3907ff03c1bf390 /* ScRigidSim.cpp */, + FFFD3c1bf3f87ff03c1bf3f8 /* ScScene.cpp */, + FFFD3c1bf4607ff03c1bf460 /* ScShapeCore.cpp */, + FFFD3c1bf4c87ff03c1bf4c8 /* ScShapeInteraction.cpp */, + FFFD3c1bf5307ff03c1bf530 /* ScShapeSim.cpp */, + FFFD3c1bf5987ff03c1bf598 /* ScSimStats.cpp */, + FFFD3c1bf6007ff03c1bf600 /* ScSimulationController.cpp */, + FFFD3c1bf6687ff03c1bf668 /* ScSqBoundsManager.cpp */, + FFFD3c1bf6d07ff03c1bf6d0 /* ScStaticCore.cpp */, + FFFD3c1bf7387ff03c1bf738 /* ScStaticSim.cpp */, + FFFD3c1bf7a07ff03c1bf7a0 /* ScTriggerInteraction.cpp */, + FFFD3c1bf8087ff03c1bf808 /* particles/ScParticleBodyInteraction.h */, + FFFD3c1bf8707ff03c1bf870 /* particles/ScParticlePacketShape.h */, + FFFD3c1bf8d87ff03c1bf8d8 /* particles/ScParticleSystemSim.h */, + FFFD3c1bf9407ff03c1bf940 /* particles/ScParticleBodyInteraction.cpp */, + FFFD3c1bf9a87ff03c1bf9a8 /* particles/ScParticlePacketShape.cpp */, + FFFD3c1bfa107ff03c1bfa10 /* particles/ScParticleSystemCore.cpp */, + FFFD3c1bfa787ff03c1bfa78 /* particles/ScParticleSystemSim.cpp */, + FFFD3c1bfae07ff03c1bfae0 /* cloth/ScClothShape.h */, + FFFD3c1bfb487ff03c1bfb48 /* cloth/ScClothSim.h */, + FFFD3c1bfbb07ff03c1bfbb0 /* cloth/ScClothCore.cpp */, + FFFD3c1bfc187ff03c1bfc18 /* cloth/ScClothFabricCore.cpp */, + FFFD3c1bfc807ff03c1bfc80 /* cloth/ScClothShape.cpp */, + FFFD3c1bfce87ff03c1bfce8 /* cloth/ScClothSim.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5b8507d07f8c5b8507d0 /* PhysXCooking */ = { + FFFB3dbe48807ff03dbe4880 /* PhysXCooking */ = { isa = PBXGroup; children = ( - FFFB5b854c507f8c5b854c50 /* include */, - FFFB5b854c787f8c5b854c78 /* src */, + FFFB3dbe70307ff03dbe7030 /* include */, + FFFB3dbe70587ff03dbe7058 /* src */, ); name = "PhysXCooking"; sourceTree = "<group>"; }; - FFFB5b854c507f8c5b854c50 /* include */ = { + FFFB3dbe70307ff03dbe7030 /* include */ = { isa = PBXGroup; children = ( - FFFD5b85aa807f8c5b85aa80 /* PxBVH33MidphaseDesc.h */, - FFFD5b85aae87f8c5b85aae8 /* PxBVH34MidphaseDesc.h */, - FFFD5b85ab507f8c5b85ab50 /* PxConvexMeshDesc.h */, - FFFD5b85abb87f8c5b85abb8 /* PxCooking.h */, - FFFD5b85ac207f8c5b85ac20 /* PxMidphaseDesc.h */, - FFFD5b85ac887f8c5b85ac88 /* PxTriangleMeshDesc.h */, - FFFD5b85acf07f8c5b85acf0 /* Pxc.h */, + FFFD3dbe76e07ff03dbe76e0 /* PxBVH33MidphaseDesc.h */, + FFFD3dbe77487ff03dbe7748 /* PxBVH34MidphaseDesc.h */, + FFFD3dbe77b07ff03dbe77b0 /* PxConvexMeshDesc.h */, + FFFD3dbe78187ff03dbe7818 /* PxCooking.h */, + FFFD3dbe78807ff03dbe7880 /* PxMidphaseDesc.h */, + FFFD3dbe78e87ff03dbe78e8 /* PxTriangleMeshDesc.h */, + FFFD3dbe79507ff03dbe7950 /* Pxc.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5b854c787f8c5b854c78 /* src */ = { + FFFB3dbe70587ff03dbe7058 /* src */ = { isa = PBXGroup; children = ( - FFFD5b0534007f8c5b053400 /* Adjacencies.cpp */, - FFFD5b0534687f8c5b053468 /* Cooking.cpp */, - FFFD5b0534d07f8c5b0534d0 /* CookingUtils.cpp */, - FFFD5b0535387f8c5b053538 /* EdgeList.cpp */, - FFFD5b0535a07f8c5b0535a0 /* MeshCleaner.cpp */, - FFFD5b0536087f8c5b053608 /* Quantizer.cpp */, - FFFD5b0536707f8c5b053670 /* Adjacencies.h */, - FFFD5b0536d87f8c5b0536d8 /* Cooking.h */, - FFFD5b0537407f8c5b053740 /* CookingUtils.h */, - FFFD5b0537a87f8c5b0537a8 /* EdgeList.h */, - FFFD5b0538107f8c5b053810 /* MeshCleaner.h */, - FFFD5b0538787f8c5b053878 /* Quantizer.h */, - FFFD5b0538e07f8c5b0538e0 /* mesh/GrbTriangleMeshCooking.cpp */, - FFFD5b0539487f8c5b053948 /* mesh/HeightFieldCooking.cpp */, - FFFD5b0539b07f8c5b0539b0 /* mesh/RTreeCooking.cpp */, - FFFD5b053a187f8c5b053a18 /* mesh/TriangleMeshBuilder.cpp */, - FFFD5b053a807f8c5b053a80 /* mesh/GrbTriangleMeshCooking.h */, - FFFD5b053ae87f8c5b053ae8 /* mesh/HeightFieldCooking.h */, - FFFD5b053b507f8c5b053b50 /* mesh/QuickSelect.h */, - FFFD5b053bb87f8c5b053bb8 /* mesh/RTreeCooking.h */, - FFFD5b053c207f8c5b053c20 /* mesh/TriangleMeshBuilder.h */, - FFFD5b053c887f8c5b053c88 /* convex/BigConvexDataBuilder.cpp */, - FFFD5b053cf07f8c5b053cf0 /* convex/ConvexHullBuilder.cpp */, - FFFD5b053d587f8c5b053d58 /* convex/ConvexHullLib.cpp */, - FFFD5b053dc07f8c5b053dc0 /* convex/ConvexHullUtils.cpp */, - FFFD5b053e287f8c5b053e28 /* convex/ConvexMeshBuilder.cpp */, - FFFD5b053e907f8c5b053e90 /* convex/ConvexPolygonsBuilder.cpp */, - FFFD5b053ef87f8c5b053ef8 /* convex/InflationConvexHullLib.cpp */, - FFFD5b053f607f8c5b053f60 /* convex/QuickHullConvexHullLib.cpp */, - FFFD5b053fc87f8c5b053fc8 /* convex/VolumeIntegration.cpp */, - FFFD5b0540307f8c5b054030 /* convex/BigConvexDataBuilder.h */, - FFFD5b0540987f8c5b054098 /* convex/ConvexHullBuilder.h */, - FFFD5b0541007f8c5b054100 /* convex/ConvexHullLib.h */, - FFFD5b0541687f8c5b054168 /* convex/ConvexHullUtils.h */, - FFFD5b0541d07f8c5b0541d0 /* convex/ConvexMeshBuilder.h */, - FFFD5b0542387f8c5b054238 /* convex/ConvexPolygonsBuilder.h */, - FFFD5b0542a07f8c5b0542a0 /* convex/InflationConvexHullLib.h */, - FFFD5b0543087f8c5b054308 /* convex/QuickHullConvexHullLib.h */, - FFFD5b0543707f8c5b054370 /* convex/VolumeIntegration.h */, + FFFD3c1c5e007ff03c1c5e00 /* Adjacencies.cpp */, + FFFD3c1c5e687ff03c1c5e68 /* Cooking.cpp */, + FFFD3c1c5ed07ff03c1c5ed0 /* CookingUtils.cpp */, + FFFD3c1c5f387ff03c1c5f38 /* EdgeList.cpp */, + FFFD3c1c5fa07ff03c1c5fa0 /* MeshCleaner.cpp */, + FFFD3c1c60087ff03c1c6008 /* Quantizer.cpp */, + FFFD3c1c60707ff03c1c6070 /* Adjacencies.h */, + FFFD3c1c60d87ff03c1c60d8 /* Cooking.h */, + FFFD3c1c61407ff03c1c6140 /* CookingUtils.h */, + FFFD3c1c61a87ff03c1c61a8 /* EdgeList.h */, + FFFD3c1c62107ff03c1c6210 /* MeshCleaner.h */, + FFFD3c1c62787ff03c1c6278 /* Quantizer.h */, + FFFD3c1c62e07ff03c1c62e0 /* mesh/GrbTriangleMeshCooking.cpp */, + FFFD3c1c63487ff03c1c6348 /* mesh/HeightFieldCooking.cpp */, + FFFD3c1c63b07ff03c1c63b0 /* mesh/RTreeCooking.cpp */, + FFFD3c1c64187ff03c1c6418 /* mesh/TriangleMeshBuilder.cpp */, + FFFD3c1c64807ff03c1c6480 /* mesh/GrbTriangleMeshCooking.h */, + FFFD3c1c64e87ff03c1c64e8 /* mesh/HeightFieldCooking.h */, + FFFD3c1c65507ff03c1c6550 /* mesh/QuickSelect.h */, + FFFD3c1c65b87ff03c1c65b8 /* mesh/RTreeCooking.h */, + FFFD3c1c66207ff03c1c6620 /* mesh/TriangleMeshBuilder.h */, + FFFD3c1c66887ff03c1c6688 /* convex/BigConvexDataBuilder.cpp */, + FFFD3c1c66f07ff03c1c66f0 /* convex/ConvexHullBuilder.cpp */, + FFFD3c1c67587ff03c1c6758 /* convex/ConvexHullLib.cpp */, + FFFD3c1c67c07ff03c1c67c0 /* convex/ConvexHullUtils.cpp */, + FFFD3c1c68287ff03c1c6828 /* convex/ConvexMeshBuilder.cpp */, + FFFD3c1c68907ff03c1c6890 /* convex/ConvexPolygonsBuilder.cpp */, + FFFD3c1c68f87ff03c1c68f8 /* convex/InflationConvexHullLib.cpp */, + FFFD3c1c69607ff03c1c6960 /* convex/QuickHullConvexHullLib.cpp */, + FFFD3c1c69c87ff03c1c69c8 /* convex/VolumeIntegration.cpp */, + FFFD3c1c6a307ff03c1c6a30 /* convex/BigConvexDataBuilder.h */, + FFFD3c1c6a987ff03c1c6a98 /* convex/ConvexHullBuilder.h */, + FFFD3c1c6b007ff03c1c6b00 /* convex/ConvexHullLib.h */, + FFFD3c1c6b687ff03c1c6b68 /* convex/ConvexHullUtils.h */, + FFFD3c1c6bd07ff03c1c6bd0 /* convex/ConvexMeshBuilder.h */, + FFFD3c1c6c387ff03c1c6c38 /* convex/ConvexPolygonsBuilder.h */, + FFFD3c1c6ca07ff03c1c6ca0 /* convex/InflationConvexHullLib.h */, + FFFD3c1c6d087ff03c1c6d08 /* convex/QuickHullConvexHullLib.h */, + FFFD3c1c6d707ff03c1c6d70 /* convex/VolumeIntegration.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB59c183f07f8c59c183f0 /* PhysXCommon */ = { + FFFB3ba4add07ff03ba4add0 /* PhysXCommon */ = { isa = PBXGroup; children = ( - FFFB59c1aa607f8c59c1aa60 /* include */, - FFFB59c1aa887f8c59c1aa88 /* common */, - FFFB59c1aab07f8c59c1aab0 /* geomutils */, + FFFB3ba4f2607ff03ba4f260 /* include */, + FFFB3ba4f2887ff03ba4f288 /* common */, + FFFB3ba4f2b07ff03ba4f2b0 /* geomutils */, ); name = "PhysXCommon"; sourceTree = "<group>"; }; - FFFB59c1aa607f8c59c1aa60 /* include */ = { + FFFB3ba4f2607ff03ba4f260 /* include */ = { isa = PBXGroup; children = ( - FFFD5a80ec007f8c5a80ec00 /* common/PxBase.h */, - FFFD5a80ec687f8c5a80ec68 /* common/PxCollection.h */, - FFFD5a80ecd07f8c5a80ecd0 /* common/PxCoreUtilityTypes.h */, - FFFD5a80ed387f8c5a80ed38 /* common/PxMetaData.h */, - FFFD5a80eda07f8c5a80eda0 /* common/PxMetaDataFlags.h */, - FFFD5a80ee087f8c5a80ee08 /* common/PxPhysXCommonConfig.h */, - FFFD5a80ee707f8c5a80ee70 /* common/PxPhysicsInsertionCallback.h */, - FFFD5a80eed87f8c5a80eed8 /* common/PxRenderBuffer.h */, - FFFD5a80ef407f8c5a80ef40 /* common/PxSerialFramework.h */, - FFFD5a80efa87f8c5a80efa8 /* common/PxSerializer.h */, - FFFD5a80f0107f8c5a80f010 /* common/PxStringTable.h */, - FFFD5a80f0787f8c5a80f078 /* common/PxTolerancesScale.h */, - FFFD5a80f0e07f8c5a80f0e0 /* common/PxTypeInfo.h */, - FFFD5a80f1487f8c5a80f148 /* geometry/PxBoxGeometry.h */, - FFFD5a80f1b07f8c5a80f1b0 /* geometry/PxCapsuleGeometry.h */, - FFFD5a80f2187f8c5a80f218 /* geometry/PxConvexMesh.h */, - FFFD5a80f2807f8c5a80f280 /* geometry/PxConvexMeshGeometry.h */, - FFFD5a80f2e87f8c5a80f2e8 /* geometry/PxGeometry.h */, - FFFD5a80f3507f8c5a80f350 /* geometry/PxGeometryHelpers.h */, - FFFD5a80f3b87f8c5a80f3b8 /* geometry/PxGeometryQuery.h */, - FFFD5a80f4207f8c5a80f420 /* geometry/PxHeightField.h */, - FFFD5a80f4887f8c5a80f488 /* geometry/PxHeightFieldDesc.h */, - FFFD5a80f4f07f8c5a80f4f0 /* geometry/PxHeightFieldFlag.h */, - FFFD5a80f5587f8c5a80f558 /* geometry/PxHeightFieldGeometry.h */, - FFFD5a80f5c07f8c5a80f5c0 /* geometry/PxHeightFieldSample.h */, - FFFD5a80f6287f8c5a80f628 /* geometry/PxMeshQuery.h */, - FFFD5a80f6907f8c5a80f690 /* geometry/PxMeshScale.h */, - FFFD5a80f6f87f8c5a80f6f8 /* geometry/PxPlaneGeometry.h */, - FFFD5a80f7607f8c5a80f760 /* geometry/PxSimpleTriangleMesh.h */, - FFFD5a80f7c87f8c5a80f7c8 /* geometry/PxSphereGeometry.h */, - FFFD5a80f8307f8c5a80f830 /* geometry/PxTriangle.h */, - FFFD5a80f8987f8c5a80f898 /* geometry/PxTriangleMesh.h */, - FFFD5a80f9007f8c5a80f900 /* geometry/PxTriangleMeshGeometry.h */, + FFFD3c80ec007ff03c80ec00 /* common/PxBase.h */, + FFFD3c80ec687ff03c80ec68 /* common/PxCollection.h */, + FFFD3c80ecd07ff03c80ecd0 /* common/PxCoreUtilityTypes.h */, + FFFD3c80ed387ff03c80ed38 /* common/PxMetaData.h */, + FFFD3c80eda07ff03c80eda0 /* common/PxMetaDataFlags.h */, + FFFD3c80ee087ff03c80ee08 /* common/PxPhysXCommonConfig.h */, + FFFD3c80ee707ff03c80ee70 /* common/PxPhysicsInsertionCallback.h */, + FFFD3c80eed87ff03c80eed8 /* common/PxRenderBuffer.h */, + FFFD3c80ef407ff03c80ef40 /* common/PxSerialFramework.h */, + FFFD3c80efa87ff03c80efa8 /* common/PxSerializer.h */, + FFFD3c80f0107ff03c80f010 /* common/PxStringTable.h */, + FFFD3c80f0787ff03c80f078 /* common/PxTolerancesScale.h */, + FFFD3c80f0e07ff03c80f0e0 /* common/PxTypeInfo.h */, + FFFD3c80f1487ff03c80f148 /* geometry/PxBoxGeometry.h */, + FFFD3c80f1b07ff03c80f1b0 /* geometry/PxCapsuleGeometry.h */, + FFFD3c80f2187ff03c80f218 /* geometry/PxConvexMesh.h */, + FFFD3c80f2807ff03c80f280 /* geometry/PxConvexMeshGeometry.h */, + FFFD3c80f2e87ff03c80f2e8 /* geometry/PxGeometry.h */, + FFFD3c80f3507ff03c80f350 /* geometry/PxGeometryHelpers.h */, + FFFD3c80f3b87ff03c80f3b8 /* geometry/PxGeometryQuery.h */, + FFFD3c80f4207ff03c80f420 /* geometry/PxHeightField.h */, + FFFD3c80f4887ff03c80f488 /* geometry/PxHeightFieldDesc.h */, + FFFD3c80f4f07ff03c80f4f0 /* geometry/PxHeightFieldFlag.h */, + FFFD3c80f5587ff03c80f558 /* geometry/PxHeightFieldGeometry.h */, + FFFD3c80f5c07ff03c80f5c0 /* geometry/PxHeightFieldSample.h */, + FFFD3c80f6287ff03c80f628 /* geometry/PxMeshQuery.h */, + FFFD3c80f6907ff03c80f690 /* geometry/PxMeshScale.h */, + FFFD3c80f6f87ff03c80f6f8 /* geometry/PxPlaneGeometry.h */, + FFFD3c80f7607ff03c80f760 /* geometry/PxSimpleTriangleMesh.h */, + FFFD3c80f7c87ff03c80f7c8 /* geometry/PxSphereGeometry.h */, + FFFD3c80f8307ff03c80f830 /* geometry/PxTriangle.h */, + FFFD3c80f8987ff03c80f898 /* geometry/PxTriangleMesh.h */, + FFFD3c80f9007ff03c80f900 /* geometry/PxTriangleMeshGeometry.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB59c1aa887f8c59c1aa88 /* common */ = { + FFFB3ba4f2887ff03ba4f288 /* common */ = { isa = PBXGroup; children = ( - FFFD5a023e007f8c5a023e00 /* src/CmBoxPruning.cpp */, - FFFD5a023e687f8c5a023e68 /* src/CmCollection.cpp */, - FFFD5a023ed07f8c5a023ed0 /* src/CmMathUtils.cpp */, - FFFD5a023f387f8c5a023f38 /* src/CmPtrTable.cpp */, - FFFD5a023fa07f8c5a023fa0 /* src/CmRadixSort.cpp */, - FFFD5a0240087f8c5a024008 /* src/CmRadixSortBuffered.cpp */, - FFFD5a0240707f8c5a024070 /* src/CmRenderOutput.cpp */, - FFFD5a0240d87f8c5a0240d8 /* src/CmVisualization.cpp */, - FFFD5a0241407f8c5a024140 /* src/CmBitMap.h */, - FFFD5a0241a87f8c5a0241a8 /* src/CmBoxPruning.h */, - FFFD5a0242107f8c5a024210 /* src/CmCollection.h */, - FFFD5a0242787f8c5a024278 /* src/CmConeLimitHelper.h */, - FFFD5a0242e07f8c5a0242e0 /* src/CmFlushPool.h */, - FFFD5a0243487f8c5a024348 /* src/CmIDPool.h */, - FFFD5a0243b07f8c5a0243b0 /* src/CmIO.h */, - FFFD5a0244187f8c5a024418 /* src/CmMatrix34.h */, - FFFD5a0244807f8c5a024480 /* src/CmPhysXCommon.h */, - FFFD5a0244e87f8c5a0244e8 /* src/CmPool.h */, - FFFD5a0245507f8c5a024550 /* src/CmPreallocatingPool.h */, - FFFD5a0245b87f8c5a0245b8 /* src/CmPriorityQueue.h */, - FFFD5a0246207f8c5a024620 /* src/CmPtrTable.h */, - FFFD5a0246887f8c5a024688 /* src/CmQueue.h */, - FFFD5a0246f07f8c5a0246f0 /* src/CmRadixSort.h */, - FFFD5a0247587f8c5a024758 /* src/CmRadixSortBuffered.h */, - FFFD5a0247c07f8c5a0247c0 /* src/CmReaderWriterLock.h */, - FFFD5a0248287f8c5a024828 /* src/CmRefCountable.h */, - FFFD5a0248907f8c5a024890 /* src/CmRenderBuffer.h */, - FFFD5a0248f87f8c5a0248f8 /* src/CmRenderOutput.h */, - FFFD5a0249607f8c5a024960 /* src/CmScaling.h */, - FFFD5a0249c87f8c5a0249c8 /* src/CmSpatialVector.h */, - FFFD5a024a307f8c5a024a30 /* src/CmTask.h */, - FFFD5a024a987f8c5a024a98 /* src/CmTaskPool.h */, - FFFD5a024b007f8c5a024b00 /* src/CmTmpMem.h */, - FFFD5a024b687f8c5a024b68 /* src/CmTransformUtils.h */, - FFFD5a024bd07f8c5a024bd0 /* src/CmUtils.h */, - FFFD5a024c387f8c5a024c38 /* src/CmVisualization.h */, + FFFD3c183c007ff03c183c00 /* src/CmBoxPruning.cpp */, + FFFD3c183c687ff03c183c68 /* src/CmCollection.cpp */, + FFFD3c183cd07ff03c183cd0 /* src/CmMathUtils.cpp */, + FFFD3c183d387ff03c183d38 /* src/CmPtrTable.cpp */, + FFFD3c183da07ff03c183da0 /* src/CmRadixSort.cpp */, + FFFD3c183e087ff03c183e08 /* src/CmRadixSortBuffered.cpp */, + FFFD3c183e707ff03c183e70 /* src/CmRenderOutput.cpp */, + FFFD3c183ed87ff03c183ed8 /* src/CmVisualization.cpp */, + FFFD3c183f407ff03c183f40 /* src/CmBitMap.h */, + FFFD3c183fa87ff03c183fa8 /* src/CmBoxPruning.h */, + FFFD3c1840107ff03c184010 /* src/CmCollection.h */, + FFFD3c1840787ff03c184078 /* src/CmConeLimitHelper.h */, + FFFD3c1840e07ff03c1840e0 /* src/CmFlushPool.h */, + FFFD3c1841487ff03c184148 /* src/CmIDPool.h */, + FFFD3c1841b07ff03c1841b0 /* src/CmIO.h */, + FFFD3c1842187ff03c184218 /* src/CmMatrix34.h */, + FFFD3c1842807ff03c184280 /* src/CmPhysXCommon.h */, + FFFD3c1842e87ff03c1842e8 /* src/CmPool.h */, + FFFD3c1843507ff03c184350 /* src/CmPreallocatingPool.h */, + FFFD3c1843b87ff03c1843b8 /* src/CmPriorityQueue.h */, + FFFD3c1844207ff03c184420 /* src/CmPtrTable.h */, + FFFD3c1844887ff03c184488 /* src/CmQueue.h */, + FFFD3c1844f07ff03c1844f0 /* src/CmRadixSort.h */, + FFFD3c1845587ff03c184558 /* src/CmRadixSortBuffered.h */, + FFFD3c1845c07ff03c1845c0 /* src/CmReaderWriterLock.h */, + FFFD3c1846287ff03c184628 /* src/CmRefCountable.h */, + FFFD3c1846907ff03c184690 /* src/CmRenderBuffer.h */, + FFFD3c1846f87ff03c1846f8 /* src/CmRenderOutput.h */, + FFFD3c1847607ff03c184760 /* src/CmScaling.h */, + FFFD3c1847c87ff03c1847c8 /* src/CmSpatialVector.h */, + FFFD3c1848307ff03c184830 /* src/CmTask.h */, + FFFD3c1848987ff03c184898 /* src/CmTaskPool.h */, + FFFD3c1849007ff03c184900 /* src/CmTmpMem.h */, + FFFD3c1849687ff03c184968 /* src/CmTransformUtils.h */, + FFFD3c1849d07ff03c1849d0 /* src/CmUtils.h */, + FFFD3c184a387ff03c184a38 /* src/CmVisualization.h */, ); name = "common"; sourceTree = SOURCE_ROOT; }; - FFFB59c1aab07f8c59c1aab0 /* geomutils */ = { + FFFB3ba4f2b07ff03ba4f2b0 /* geomutils */ = { isa = PBXGroup; children = ( - FFFD5a8010007f8c5a801000 /* headers/GuAxes.h */, - FFFD5a8010687f8c5a801068 /* headers/GuBox.h */, - FFFD5a8010d07f8c5a8010d0 /* headers/GuDistanceSegmentBox.h */, - FFFD5a8011387f8c5a801138 /* headers/GuDistanceSegmentSegment.h */, - FFFD5a8011a07f8c5a8011a0 /* headers/GuIntersectionBoxBox.h */, - FFFD5a8012087f8c5a801208 /* headers/GuIntersectionTriangleBox.h */, - FFFD5a8012707f8c5a801270 /* headers/GuRaycastTests.h */, - FFFD5a8012d87f8c5a8012d8 /* headers/GuSIMDHelpers.h */, - FFFD5a8013407f8c5a801340 /* headers/GuSegment.h */, - FFFD5a8013a87f8c5a8013a8 /* ../../Include/GeomUtils */, - FFFD5a8014107f8c5a801410 /* src/GuBounds.h */, - FFFD5a8014787f8c5a801478 /* src/GuCapsule.h */, - FFFD5a8014e07f8c5a8014e0 /* src/GuCenterExtents.h */, - FFFD5a8015487f8c5a801548 /* src/GuGeometryUnion.h */, - FFFD5a8015b07f8c5a8015b0 /* src/GuInternal.h */, - FFFD5a8016187f8c5a801618 /* src/GuMTD.h */, - FFFD5a8016807f8c5a801680 /* src/GuMeshFactory.h */, - FFFD5a8016e87f8c5a8016e8 /* src/GuOverlapTests.h */, - FFFD5a8017507f8c5a801750 /* src/GuSerialize.h */, - FFFD5a8017b87f8c5a8017b8 /* src/GuSphere.h */, - FFFD5a8018207f8c5a801820 /* src/GuSweepMTD.h */, - FFFD5a8018887f8c5a801888 /* src/GuSweepSharedTests.h */, - FFFD5a8018f07f8c5a8018f0 /* src/GuSweepTests.h */, - FFFD5a8019587f8c5a801958 /* src/contact/GuContactMethodImpl.h */, - FFFD5a8019c07f8c5a8019c0 /* src/contact/GuContactPolygonPolygon.h */, - FFFD5a801a287f8c5a801a28 /* src/contact/GuFeatureCode.h */, - FFFD5a801a907f8c5a801a90 /* src/contact/GuLegacyTraceLineCallback.h */, - FFFD5a801af87f8c5a801af8 /* src/common/GuBarycentricCoordinates.h */, - FFFD5a801b607f8c5a801b60 /* src/common/GuBoxConversion.h */, - FFFD5a801bc87f8c5a801bc8 /* src/common/GuEdgeCache.h */, - FFFD5a801c307f8c5a801c30 /* src/common/GuEdgeListData.h */, - FFFD5a801c987f8c5a801c98 /* src/common/GuSeparatingAxes.h */, - FFFD5a801d007f8c5a801d00 /* src/convex/GuBigConvexData.h */, - FFFD5a801d687f8c5a801d68 /* src/convex/GuBigConvexData2.h */, - FFFD5a801dd07f8c5a801dd0 /* src/convex/GuConvexEdgeFlags.h */, - FFFD5a801e387f8c5a801e38 /* src/convex/GuConvexHelper.h */, - FFFD5a801ea07f8c5a801ea0 /* src/convex/GuConvexMesh.h */, - FFFD5a801f087f8c5a801f08 /* src/convex/GuConvexMeshData.h */, - FFFD5a801f707f8c5a801f70 /* src/convex/GuConvexSupportTable.h */, - FFFD5a801fd87f8c5a801fd8 /* src/convex/GuConvexUtilsInternal.h */, - FFFD5a8020407f8c5a802040 /* src/convex/GuCubeIndex.h */, - FFFD5a8020a87f8c5a8020a8 /* src/convex/GuHillClimbing.h */, - FFFD5a8021107f8c5a802110 /* src/convex/GuShapeConvex.h */, - FFFD5a8021787f8c5a802178 /* src/distance/GuDistancePointBox.h */, - FFFD5a8021e07f8c5a8021e0 /* src/distance/GuDistancePointSegment.h */, - FFFD5a8022487f8c5a802248 /* src/distance/GuDistancePointTriangle.h */, - FFFD5a8022b07f8c5a8022b0 /* src/distance/GuDistancePointTriangleSIMD.h */, - FFFD5a8023187f8c5a802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, - FFFD5a8023807f8c5a802380 /* src/distance/GuDistanceSegmentTriangle.h */, - FFFD5a8023e87f8c5a8023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, - FFFD5a8024507f8c5a802450 /* src/sweep/GuSweepBoxBox.h */, - FFFD5a8024b87f8c5a8024b8 /* src/sweep/GuSweepBoxSphere.h */, - FFFD5a8025207f8c5a802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, - FFFD5a8025887f8c5a802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */, - FFFD5a8025f07f8c5a8025f0 /* src/sweep/GuSweepCapsuleBox.h */, - FFFD5a8026587f8c5a802658 /* src/sweep/GuSweepCapsuleCapsule.h */, - FFFD5a8026c07f8c5a8026c0 /* src/sweep/GuSweepCapsuleTriangle.h */, - FFFD5a8027287f8c5a802728 /* src/sweep/GuSweepSphereCapsule.h */, - FFFD5a8027907f8c5a802790 /* src/sweep/GuSweepSphereSphere.h */, - FFFD5a8027f87f8c5a8027f8 /* src/sweep/GuSweepSphereTriangle.h */, - FFFD5a8028607f8c5a802860 /* src/sweep/GuSweepTriangleUtils.h */, - FFFD5a8028c87f8c5a8028c8 /* src/gjk/GuEPA.h */, - FFFD5a8029307f8c5a802930 /* src/gjk/GuEPAFacet.h */, - FFFD5a8029987f8c5a802998 /* src/gjk/GuGJK.h */, - FFFD5a802a007f8c5a802a00 /* src/gjk/GuGJKPenetration.h */, - FFFD5a802a687f8c5a802a68 /* src/gjk/GuGJKRaycast.h */, - FFFD5a802ad07f8c5a802ad0 /* src/gjk/GuGJKSimplex.h */, - FFFD5a802b387f8c5a802b38 /* src/gjk/GuGJKTest.h */, - FFFD5a802ba07f8c5a802ba0 /* src/gjk/GuGJKType.h */, - FFFD5a802c087f8c5a802c08 /* src/gjk/GuGJKUtil.h */, - FFFD5a802c707f8c5a802c70 /* src/gjk/GuVecBox.h */, - FFFD5a802cd87f8c5a802cd8 /* src/gjk/GuVecCapsule.h */, - FFFD5a802d407f8c5a802d40 /* src/gjk/GuVecConvex.h */, - FFFD5a802da87f8c5a802da8 /* src/gjk/GuVecConvexHull.h */, - FFFD5a802e107f8c5a802e10 /* src/gjk/GuVecConvexHullNoScale.h */, - FFFD5a802e787f8c5a802e78 /* src/gjk/GuVecPlane.h */, - FFFD5a802ee07f8c5a802ee0 /* src/gjk/GuVecShrunkBox.h */, - FFFD5a802f487f8c5a802f48 /* src/gjk/GuVecShrunkConvexHull.h */, - FFFD5a802fb07f8c5a802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, - FFFD5a8030187f8c5a803018 /* src/gjk/GuVecSphere.h */, - FFFD5a8030807f8c5a803080 /* src/gjk/GuVecTriangle.h */, - FFFD5a8030e87f8c5a8030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, - FFFD5a8031507f8c5a803150 /* src/intersection/GuIntersectionEdgeEdge.h */, - FFFD5a8031b87f8c5a8031b8 /* src/intersection/GuIntersectionRay.h */, - FFFD5a8032207f8c5a803220 /* src/intersection/GuIntersectionRayBox.h */, - FFFD5a8032887f8c5a803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */, - FFFD5a8032f07f8c5a8032f0 /* src/intersection/GuIntersectionRayCapsule.h */, - FFFD5a8033587f8c5a803358 /* src/intersection/GuIntersectionRayPlane.h */, - FFFD5a8033c07f8c5a8033c0 /* src/intersection/GuIntersectionRaySphere.h */, - FFFD5a8034287f8c5a803428 /* src/intersection/GuIntersectionRayTriangle.h */, - FFFD5a8034907f8c5a803490 /* src/intersection/GuIntersectionSphereBox.h */, - FFFD5a8034f87f8c5a8034f8 /* src/mesh/GuBV32.h */, - FFFD5a8035607f8c5a803560 /* src/mesh/GuBV32Build.h */, - FFFD5a8035c87f8c5a8035c8 /* src/mesh/GuBV4.h */, - FFFD5a8036307f8c5a803630 /* src/mesh/GuBV4Build.h */, - FFFD5a8036987f8c5a803698 /* src/mesh/GuBV4Settings.h */, - FFFD5a8037007f8c5a803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, - FFFD5a8037687f8c5a803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, - FFFD5a8037d07f8c5a8037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, - FFFD5a8038387f8c5a803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */, - FFFD5a8038a07f8c5a8038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, - FFFD5a8039087f8c5a803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, - FFFD5a8039707f8c5a803970 /* src/mesh/GuBV4_Common.h */, - FFFD5a8039d87f8c5a8039d8 /* src/mesh/GuBV4_Internal.h */, - FFFD5a803a407f8c5a803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, - FFFD5a803aa87f8c5a803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, - FFFD5a803b107f8c5a803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, - FFFD5a803b787f8c5a803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, - FFFD5a803be07f8c5a803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, - FFFD5a803c487f8c5a803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, - FFFD5a803cb07f8c5a803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, - FFFD5a803d187f8c5a803d18 /* src/mesh/GuBV4_Slabs.h */, - FFFD5a803d807f8c5a803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, - FFFD5a803de87f8c5a803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, - FFFD5a803e507f8c5a803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, - FFFD5a803eb87f8c5a803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, - FFFD5a803f207f8c5a803f20 /* src/mesh/GuBVConstants.h */, - FFFD5a803f887f8c5a803f88 /* src/mesh/GuMeshData.h */, - FFFD5a803ff07f8c5a803ff0 /* src/mesh/GuMidphaseInterface.h */, - FFFD5a8040587f8c5a804058 /* src/mesh/GuRTree.h */, - FFFD5a8040c07f8c5a8040c0 /* src/mesh/GuSweepConvexTri.h */, - FFFD5a8041287f8c5a804128 /* src/mesh/GuSweepMesh.h */, - FFFD5a8041907f8c5a804190 /* src/mesh/GuTriangle32.h */, - FFFD5a8041f87f8c5a8041f8 /* src/mesh/GuTriangleCache.h */, - FFFD5a8042607f8c5a804260 /* src/mesh/GuTriangleMesh.h */, - FFFD5a8042c87f8c5a8042c8 /* src/mesh/GuTriangleMeshBV4.h */, - FFFD5a8043307f8c5a804330 /* src/mesh/GuTriangleMeshRTree.h */, - FFFD5a8043987f8c5a804398 /* src/mesh/GuTriangleVertexPointers.h */, - FFFD5a8044007f8c5a804400 /* src/hf/GuEntityReport.h */, - FFFD5a8044687f8c5a804468 /* src/hf/GuHeightField.h */, - FFFD5a8044d07f8c5a8044d0 /* src/hf/GuHeightFieldData.h */, - FFFD5a8045387f8c5a804538 /* src/hf/GuHeightFieldUtil.h */, - FFFD5a8045a07f8c5a8045a0 /* src/pcm/GuPCMContactConvexCommon.h */, - FFFD5a8046087f8c5a804608 /* src/pcm/GuPCMContactGen.h */, - FFFD5a8046707f8c5a804670 /* src/pcm/GuPCMContactGenUtil.h */, - FFFD5a8046d87f8c5a8046d8 /* src/pcm/GuPCMContactMeshCallback.h */, - FFFD5a8047407f8c5a804740 /* src/pcm/GuPCMShapeConvex.h */, - FFFD5a8047a87f8c5a8047a8 /* src/pcm/GuPCMTriangleContactGen.h */, - FFFD5a8048107f8c5a804810 /* src/pcm/GuPersistentContactManifold.h */, - FFFD5a8048787f8c5a804878 /* src/ccd/GuCCDSweepConvexMesh.h */, - FFFD5a8048e07f8c5a8048e0 /* src/GuBounds.cpp */, - FFFD5a8049487f8c5a804948 /* src/GuBox.cpp */, - FFFD5a8049b07f8c5a8049b0 /* src/GuCCTSweepTests.cpp */, - FFFD5a804a187f8c5a804a18 /* src/GuCapsule.cpp */, - FFFD5a804a807f8c5a804a80 /* src/GuGeometryQuery.cpp */, - FFFD5a804ae87f8c5a804ae8 /* src/GuGeometryUnion.cpp */, - FFFD5a804b507f8c5a804b50 /* src/GuInternal.cpp */, - FFFD5a804bb87f8c5a804bb8 /* src/GuMTD.cpp */, - FFFD5a804c207f8c5a804c20 /* src/GuMeshFactory.cpp */, - FFFD5a804c887f8c5a804c88 /* src/GuMetaData.cpp */, - FFFD5a804cf07f8c5a804cf0 /* src/GuOverlapTests.cpp */, - FFFD5a804d587f8c5a804d58 /* src/GuRaycastTests.cpp */, - FFFD5a804dc07f8c5a804dc0 /* src/GuSerialize.cpp */, - FFFD5a804e287f8c5a804e28 /* src/GuSweepMTD.cpp */, - FFFD5a804e907f8c5a804e90 /* src/GuSweepSharedTests.cpp */, - FFFD5a804ef87f8c5a804ef8 /* src/GuSweepTests.cpp */, - FFFD5a804f607f8c5a804f60 /* src/contact/GuContactBoxBox.cpp */, - FFFD5a804fc87f8c5a804fc8 /* src/contact/GuContactCapsuleBox.cpp */, - FFFD5a8050307f8c5a805030 /* src/contact/GuContactCapsuleCapsule.cpp */, - FFFD5a8050987f8c5a805098 /* src/contact/GuContactCapsuleConvex.cpp */, - FFFD5a8051007f8c5a805100 /* src/contact/GuContactCapsuleMesh.cpp */, - FFFD5a8051687f8c5a805168 /* src/contact/GuContactConvexConvex.cpp */, - FFFD5a8051d07f8c5a8051d0 /* src/contact/GuContactConvexMesh.cpp */, - FFFD5a8052387f8c5a805238 /* src/contact/GuContactPlaneBox.cpp */, - FFFD5a8052a07f8c5a8052a0 /* src/contact/GuContactPlaneCapsule.cpp */, - FFFD5a8053087f8c5a805308 /* src/contact/GuContactPlaneConvex.cpp */, - FFFD5a8053707f8c5a805370 /* src/contact/GuContactPolygonPolygon.cpp */, - FFFD5a8053d87f8c5a8053d8 /* src/contact/GuContactSphereBox.cpp */, - FFFD5a8054407f8c5a805440 /* src/contact/GuContactSphereCapsule.cpp */, - FFFD5a8054a87f8c5a8054a8 /* src/contact/GuContactSphereMesh.cpp */, - FFFD5a8055107f8c5a805510 /* src/contact/GuContactSpherePlane.cpp */, - FFFD5a8055787f8c5a805578 /* src/contact/GuContactSphereSphere.cpp */, - FFFD5a8055e07f8c5a8055e0 /* src/contact/GuFeatureCode.cpp */, - FFFD5a8056487f8c5a805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */, - FFFD5a8056b07f8c5a8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, - FFFD5a8057187f8c5a805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */, - FFFD5a8057807f8c5a805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */, - FFFD5a8057e87f8c5a8057e8 /* src/common/GuBarycentricCoordinates.cpp */, - FFFD5a8058507f8c5a805850 /* src/common/GuSeparatingAxes.cpp */, - FFFD5a8058b87f8c5a8058b8 /* src/convex/GuBigConvexData.cpp */, - FFFD5a8059207f8c5a805920 /* src/convex/GuConvexHelper.cpp */, - FFFD5a8059887f8c5a805988 /* src/convex/GuConvexMesh.cpp */, - FFFD5a8059f07f8c5a8059f0 /* src/convex/GuConvexSupportTable.cpp */, - FFFD5a805a587f8c5a805a58 /* src/convex/GuConvexUtilsInternal.cpp */, - FFFD5a805ac07f8c5a805ac0 /* src/convex/GuHillClimbing.cpp */, - FFFD5a805b287f8c5a805b28 /* src/convex/GuShapeConvex.cpp */, - FFFD5a805b907f8c5a805b90 /* src/distance/GuDistancePointBox.cpp */, - FFFD5a805bf87f8c5a805bf8 /* src/distance/GuDistancePointTriangle.cpp */, - FFFD5a805c607f8c5a805c60 /* src/distance/GuDistanceSegmentBox.cpp */, - FFFD5a805cc87f8c5a805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */, - FFFD5a805d307f8c5a805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */, - FFFD5a805d987f8c5a805d98 /* src/sweep/GuSweepBoxBox.cpp */, - FFFD5a805e007f8c5a805e00 /* src/sweep/GuSweepBoxSphere.cpp */, - FFFD5a805e687f8c5a805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, - FFFD5a805ed07f8c5a805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, - FFFD5a805f387f8c5a805f38 /* src/sweep/GuSweepCapsuleBox.cpp */, - FFFD5a805fa07f8c5a805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, - FFFD5a8060087f8c5a806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */, - FFFD5a8060707f8c5a806070 /* src/sweep/GuSweepSphereCapsule.cpp */, - FFFD5a8060d87f8c5a8060d8 /* src/sweep/GuSweepSphereSphere.cpp */, - FFFD5a8061407f8c5a806140 /* src/sweep/GuSweepSphereTriangle.cpp */, - FFFD5a8061a87f8c5a8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */, - FFFD5a8062107f8c5a806210 /* src/gjk/GuEPA.cpp */, - FFFD5a8062787f8c5a806278 /* src/gjk/GuGJKSimplex.cpp */, - FFFD5a8062e07f8c5a8062e0 /* src/gjk/GuGJKTest.cpp */, - FFFD5a8063487f8c5a806348 /* src/intersection/GuIntersectionBoxBox.cpp */, - FFFD5a8063b07f8c5a8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, - FFFD5a8064187f8c5a806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */, - FFFD5a8064807f8c5a806480 /* src/intersection/GuIntersectionRayBox.cpp */, - FFFD5a8064e87f8c5a8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, - FFFD5a8065507f8c5a806550 /* src/intersection/GuIntersectionRaySphere.cpp */, - FFFD5a8065b87f8c5a8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */, - FFFD5a8066207f8c5a806620 /* src/intersection/GuIntersectionTriangleBox.cpp */, - FFFD5a8066887f8c5a806688 /* src/mesh/GuBV32.cpp */, - FFFD5a8066f07f8c5a8066f0 /* src/mesh/GuBV32Build.cpp */, - FFFD5a8067587f8c5a806758 /* src/mesh/GuBV4.cpp */, - FFFD5a8067c07f8c5a8067c0 /* src/mesh/GuBV4Build.cpp */, - FFFD5a8068287f8c5a806828 /* src/mesh/GuBV4_AABBSweep.cpp */, - FFFD5a8068907f8c5a806890 /* src/mesh/GuBV4_BoxOverlap.cpp */, - FFFD5a8068f87f8c5a8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, - FFFD5a8069607f8c5a806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, - FFFD5a8069c87f8c5a8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */, - FFFD5a806a307f8c5a806a30 /* src/mesh/GuBV4_Raycast.cpp */, - FFFD5a806a987f8c5a806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */, - FFFD5a806b007f8c5a806b00 /* src/mesh/GuBV4_SphereSweep.cpp */, - FFFD5a806b687f8c5a806b68 /* src/mesh/GuMeshQuery.cpp */, - FFFD5a806bd07f8c5a806bd0 /* src/mesh/GuMidphaseBV4.cpp */, - FFFD5a806c387f8c5a806c38 /* src/mesh/GuMidphaseRTree.cpp */, - FFFD5a806ca07f8c5a806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */, - FFFD5a806d087f8c5a806d08 /* src/mesh/GuRTree.cpp */, - FFFD5a806d707f8c5a806d70 /* src/mesh/GuRTreeQueries.cpp */, - FFFD5a806dd87f8c5a806dd8 /* src/mesh/GuSweepsMesh.cpp */, - FFFD5a806e407f8c5a806e40 /* src/mesh/GuTriangleMesh.cpp */, - FFFD5a806ea87f8c5a806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */, - FFFD5a806f107f8c5a806f10 /* src/mesh/GuTriangleMeshRTree.cpp */, - FFFD5a806f787f8c5a806f78 /* src/hf/GuHeightField.cpp */, - FFFD5a806fe07f8c5a806fe0 /* src/hf/GuHeightFieldUtil.cpp */, - FFFD5a8070487f8c5a807048 /* src/hf/GuOverlapTestsHF.cpp */, - FFFD5a8070b07f8c5a8070b0 /* src/hf/GuSweepsHF.cpp */, - FFFD5a8071187f8c5a807118 /* src/pcm/GuPCMContactBoxBox.cpp */, - FFFD5a8071807f8c5a807180 /* src/pcm/GuPCMContactBoxConvex.cpp */, - FFFD5a8071e87f8c5a8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, - FFFD5a8072507f8c5a807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, - FFFD5a8072b87f8c5a8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, - FFFD5a8073207f8c5a807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, - FFFD5a8073887f8c5a807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, - FFFD5a8073f07f8c5a8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, - FFFD5a8074587f8c5a807458 /* src/pcm/GuPCMContactConvexConvex.cpp */, - FFFD5a8074c07f8c5a8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, - FFFD5a8075287f8c5a807528 /* src/pcm/GuPCMContactConvexMesh.cpp */, - FFFD5a8075907f8c5a807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, - FFFD5a8075f87f8c5a8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, - FFFD5a8076607f8c5a807660 /* src/pcm/GuPCMContactPlaneBox.cpp */, - FFFD5a8076c87f8c5a8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, - FFFD5a8077307f8c5a807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */, - FFFD5a8077987f8c5a807798 /* src/pcm/GuPCMContactSphereBox.cpp */, - FFFD5a8078007f8c5a807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */, - FFFD5a8078687f8c5a807868 /* src/pcm/GuPCMContactSphereConvex.cpp */, - FFFD5a8078d07f8c5a8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, - FFFD5a8079387f8c5a807938 /* src/pcm/GuPCMContactSphereMesh.cpp */, - FFFD5a8079a07f8c5a8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, - FFFD5a807a087f8c5a807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */, - FFFD5a807a707f8c5a807a70 /* src/pcm/GuPCMShapeConvex.cpp */, - FFFD5a807ad87f8c5a807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */, - FFFD5a807b407f8c5a807b40 /* src/pcm/GuPersistentContactManifold.cpp */, - FFFD5a807ba87f8c5a807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, - FFFD5a807c107f8c5a807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */, + FFFD3c8010007ff03c801000 /* headers/GuAxes.h */, + FFFD3c8010687ff03c801068 /* headers/GuBox.h */, + FFFD3c8010d07ff03c8010d0 /* headers/GuDistanceSegmentBox.h */, + FFFD3c8011387ff03c801138 /* headers/GuDistanceSegmentSegment.h */, + FFFD3c8011a07ff03c8011a0 /* headers/GuIntersectionBoxBox.h */, + FFFD3c8012087ff03c801208 /* headers/GuIntersectionTriangleBox.h */, + FFFD3c8012707ff03c801270 /* headers/GuRaycastTests.h */, + FFFD3c8012d87ff03c8012d8 /* headers/GuSIMDHelpers.h */, + FFFD3c8013407ff03c801340 /* headers/GuSegment.h */, + FFFD3c8013a87ff03c8013a8 /* ../../Include/GeomUtils */, + FFFD3c8014107ff03c801410 /* src/GuBounds.h */, + FFFD3c8014787ff03c801478 /* src/GuCapsule.h */, + FFFD3c8014e07ff03c8014e0 /* src/GuCenterExtents.h */, + FFFD3c8015487ff03c801548 /* src/GuGeometryUnion.h */, + FFFD3c8015b07ff03c8015b0 /* src/GuInternal.h */, + FFFD3c8016187ff03c801618 /* src/GuMTD.h */, + FFFD3c8016807ff03c801680 /* src/GuMeshFactory.h */, + FFFD3c8016e87ff03c8016e8 /* src/GuOverlapTests.h */, + FFFD3c8017507ff03c801750 /* src/GuSerialize.h */, + FFFD3c8017b87ff03c8017b8 /* src/GuSphere.h */, + FFFD3c8018207ff03c801820 /* src/GuSweepMTD.h */, + FFFD3c8018887ff03c801888 /* src/GuSweepSharedTests.h */, + FFFD3c8018f07ff03c8018f0 /* src/GuSweepTests.h */, + FFFD3c8019587ff03c801958 /* src/contact/GuContactMethodImpl.h */, + FFFD3c8019c07ff03c8019c0 /* src/contact/GuContactPolygonPolygon.h */, + FFFD3c801a287ff03c801a28 /* src/contact/GuFeatureCode.h */, + FFFD3c801a907ff03c801a90 /* src/contact/GuLegacyTraceLineCallback.h */, + FFFD3c801af87ff03c801af8 /* src/common/GuBarycentricCoordinates.h */, + FFFD3c801b607ff03c801b60 /* src/common/GuBoxConversion.h */, + FFFD3c801bc87ff03c801bc8 /* src/common/GuEdgeCache.h */, + FFFD3c801c307ff03c801c30 /* src/common/GuEdgeListData.h */, + FFFD3c801c987ff03c801c98 /* src/common/GuSeparatingAxes.h */, + FFFD3c801d007ff03c801d00 /* src/convex/GuBigConvexData.h */, + FFFD3c801d687ff03c801d68 /* src/convex/GuBigConvexData2.h */, + FFFD3c801dd07ff03c801dd0 /* src/convex/GuConvexEdgeFlags.h */, + FFFD3c801e387ff03c801e38 /* src/convex/GuConvexHelper.h */, + FFFD3c801ea07ff03c801ea0 /* src/convex/GuConvexMesh.h */, + FFFD3c801f087ff03c801f08 /* src/convex/GuConvexMeshData.h */, + FFFD3c801f707ff03c801f70 /* src/convex/GuConvexSupportTable.h */, + FFFD3c801fd87ff03c801fd8 /* src/convex/GuConvexUtilsInternal.h */, + FFFD3c8020407ff03c802040 /* src/convex/GuCubeIndex.h */, + FFFD3c8020a87ff03c8020a8 /* src/convex/GuHillClimbing.h */, + FFFD3c8021107ff03c802110 /* src/convex/GuShapeConvex.h */, + FFFD3c8021787ff03c802178 /* src/distance/GuDistancePointBox.h */, + FFFD3c8021e07ff03c8021e0 /* src/distance/GuDistancePointSegment.h */, + FFFD3c8022487ff03c802248 /* src/distance/GuDistancePointTriangle.h */, + FFFD3c8022b07ff03c8022b0 /* src/distance/GuDistancePointTriangleSIMD.h */, + FFFD3c8023187ff03c802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, + FFFD3c8023807ff03c802380 /* src/distance/GuDistanceSegmentTriangle.h */, + FFFD3c8023e87ff03c8023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, + FFFD3c8024507ff03c802450 /* src/sweep/GuSweepBoxBox.h */, + FFFD3c8024b87ff03c8024b8 /* src/sweep/GuSweepBoxSphere.h */, + FFFD3c8025207ff03c802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, + FFFD3c8025887ff03c802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */, + FFFD3c8025f07ff03c8025f0 /* src/sweep/GuSweepCapsuleBox.h */, + FFFD3c8026587ff03c802658 /* src/sweep/GuSweepCapsuleCapsule.h */, + FFFD3c8026c07ff03c8026c0 /* src/sweep/GuSweepCapsuleTriangle.h */, + FFFD3c8027287ff03c802728 /* src/sweep/GuSweepSphereCapsule.h */, + FFFD3c8027907ff03c802790 /* src/sweep/GuSweepSphereSphere.h */, + FFFD3c8027f87ff03c8027f8 /* src/sweep/GuSweepSphereTriangle.h */, + FFFD3c8028607ff03c802860 /* src/sweep/GuSweepTriangleUtils.h */, + FFFD3c8028c87ff03c8028c8 /* src/gjk/GuEPA.h */, + FFFD3c8029307ff03c802930 /* src/gjk/GuEPAFacet.h */, + FFFD3c8029987ff03c802998 /* src/gjk/GuGJK.h */, + FFFD3c802a007ff03c802a00 /* src/gjk/GuGJKPenetration.h */, + FFFD3c802a687ff03c802a68 /* src/gjk/GuGJKRaycast.h */, + FFFD3c802ad07ff03c802ad0 /* src/gjk/GuGJKSimplex.h */, + FFFD3c802b387ff03c802b38 /* src/gjk/GuGJKTest.h */, + FFFD3c802ba07ff03c802ba0 /* src/gjk/GuGJKType.h */, + FFFD3c802c087ff03c802c08 /* src/gjk/GuGJKUtil.h */, + FFFD3c802c707ff03c802c70 /* src/gjk/GuVecBox.h */, + FFFD3c802cd87ff03c802cd8 /* src/gjk/GuVecCapsule.h */, + FFFD3c802d407ff03c802d40 /* src/gjk/GuVecConvex.h */, + FFFD3c802da87ff03c802da8 /* src/gjk/GuVecConvexHull.h */, + FFFD3c802e107ff03c802e10 /* src/gjk/GuVecConvexHullNoScale.h */, + FFFD3c802e787ff03c802e78 /* src/gjk/GuVecPlane.h */, + FFFD3c802ee07ff03c802ee0 /* src/gjk/GuVecShrunkBox.h */, + FFFD3c802f487ff03c802f48 /* src/gjk/GuVecShrunkConvexHull.h */, + FFFD3c802fb07ff03c802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, + FFFD3c8030187ff03c803018 /* src/gjk/GuVecSphere.h */, + FFFD3c8030807ff03c803080 /* src/gjk/GuVecTriangle.h */, + FFFD3c8030e87ff03c8030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, + FFFD3c8031507ff03c803150 /* src/intersection/GuIntersectionEdgeEdge.h */, + FFFD3c8031b87ff03c8031b8 /* src/intersection/GuIntersectionRay.h */, + FFFD3c8032207ff03c803220 /* src/intersection/GuIntersectionRayBox.h */, + FFFD3c8032887ff03c803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */, + FFFD3c8032f07ff03c8032f0 /* src/intersection/GuIntersectionRayCapsule.h */, + FFFD3c8033587ff03c803358 /* src/intersection/GuIntersectionRayPlane.h */, + FFFD3c8033c07ff03c8033c0 /* src/intersection/GuIntersectionRaySphere.h */, + FFFD3c8034287ff03c803428 /* src/intersection/GuIntersectionRayTriangle.h */, + FFFD3c8034907ff03c803490 /* src/intersection/GuIntersectionSphereBox.h */, + FFFD3c8034f87ff03c8034f8 /* src/mesh/GuBV32.h */, + FFFD3c8035607ff03c803560 /* src/mesh/GuBV32Build.h */, + FFFD3c8035c87ff03c8035c8 /* src/mesh/GuBV4.h */, + FFFD3c8036307ff03c803630 /* src/mesh/GuBV4Build.h */, + FFFD3c8036987ff03c803698 /* src/mesh/GuBV4Settings.h */, + FFFD3c8037007ff03c803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, + FFFD3c8037687ff03c803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, + FFFD3c8037d07ff03c8037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, + FFFD3c8038387ff03c803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */, + FFFD3c8038a07ff03c8038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, + FFFD3c8039087ff03c803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, + FFFD3c8039707ff03c803970 /* src/mesh/GuBV4_Common.h */, + FFFD3c8039d87ff03c8039d8 /* src/mesh/GuBV4_Internal.h */, + FFFD3c803a407ff03c803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, + FFFD3c803aa87ff03c803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, + FFFD3c803b107ff03c803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, + FFFD3c803b787ff03c803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, + FFFD3c803be07ff03c803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, + FFFD3c803c487ff03c803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, + FFFD3c803cb07ff03c803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, + FFFD3c803d187ff03c803d18 /* src/mesh/GuBV4_Slabs.h */, + FFFD3c803d807ff03c803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, + FFFD3c803de87ff03c803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, + FFFD3c803e507ff03c803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, + FFFD3c803eb87ff03c803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, + FFFD3c803f207ff03c803f20 /* src/mesh/GuBVConstants.h */, + FFFD3c803f887ff03c803f88 /* src/mesh/GuMeshData.h */, + FFFD3c803ff07ff03c803ff0 /* src/mesh/GuMidphaseInterface.h */, + FFFD3c8040587ff03c804058 /* src/mesh/GuRTree.h */, + FFFD3c8040c07ff03c8040c0 /* src/mesh/GuSweepConvexTri.h */, + FFFD3c8041287ff03c804128 /* src/mesh/GuSweepMesh.h */, + FFFD3c8041907ff03c804190 /* src/mesh/GuTriangle32.h */, + FFFD3c8041f87ff03c8041f8 /* src/mesh/GuTriangleCache.h */, + FFFD3c8042607ff03c804260 /* src/mesh/GuTriangleMesh.h */, + FFFD3c8042c87ff03c8042c8 /* src/mesh/GuTriangleMeshBV4.h */, + FFFD3c8043307ff03c804330 /* src/mesh/GuTriangleMeshRTree.h */, + FFFD3c8043987ff03c804398 /* src/mesh/GuTriangleVertexPointers.h */, + FFFD3c8044007ff03c804400 /* src/hf/GuEntityReport.h */, + FFFD3c8044687ff03c804468 /* src/hf/GuHeightField.h */, + FFFD3c8044d07ff03c8044d0 /* src/hf/GuHeightFieldData.h */, + FFFD3c8045387ff03c804538 /* src/hf/GuHeightFieldUtil.h */, + FFFD3c8045a07ff03c8045a0 /* src/pcm/GuPCMContactConvexCommon.h */, + FFFD3c8046087ff03c804608 /* src/pcm/GuPCMContactGen.h */, + FFFD3c8046707ff03c804670 /* src/pcm/GuPCMContactGenUtil.h */, + FFFD3c8046d87ff03c8046d8 /* src/pcm/GuPCMContactMeshCallback.h */, + FFFD3c8047407ff03c804740 /* src/pcm/GuPCMShapeConvex.h */, + FFFD3c8047a87ff03c8047a8 /* src/pcm/GuPCMTriangleContactGen.h */, + FFFD3c8048107ff03c804810 /* src/pcm/GuPersistentContactManifold.h */, + FFFD3c8048787ff03c804878 /* src/ccd/GuCCDSweepConvexMesh.h */, + FFFD3c8048e07ff03c8048e0 /* src/GuBounds.cpp */, + FFFD3c8049487ff03c804948 /* src/GuBox.cpp */, + FFFD3c8049b07ff03c8049b0 /* src/GuCCTSweepTests.cpp */, + FFFD3c804a187ff03c804a18 /* src/GuCapsule.cpp */, + FFFD3c804a807ff03c804a80 /* src/GuGeometryQuery.cpp */, + FFFD3c804ae87ff03c804ae8 /* src/GuGeometryUnion.cpp */, + FFFD3c804b507ff03c804b50 /* src/GuInternal.cpp */, + FFFD3c804bb87ff03c804bb8 /* src/GuMTD.cpp */, + FFFD3c804c207ff03c804c20 /* src/GuMeshFactory.cpp */, + FFFD3c804c887ff03c804c88 /* src/GuMetaData.cpp */, + FFFD3c804cf07ff03c804cf0 /* src/GuOverlapTests.cpp */, + FFFD3c804d587ff03c804d58 /* src/GuRaycastTests.cpp */, + FFFD3c804dc07ff03c804dc0 /* src/GuSerialize.cpp */, + FFFD3c804e287ff03c804e28 /* src/GuSweepMTD.cpp */, + FFFD3c804e907ff03c804e90 /* src/GuSweepSharedTests.cpp */, + FFFD3c804ef87ff03c804ef8 /* src/GuSweepTests.cpp */, + FFFD3c804f607ff03c804f60 /* src/contact/GuContactBoxBox.cpp */, + FFFD3c804fc87ff03c804fc8 /* src/contact/GuContactCapsuleBox.cpp */, + FFFD3c8050307ff03c805030 /* src/contact/GuContactCapsuleCapsule.cpp */, + FFFD3c8050987ff03c805098 /* src/contact/GuContactCapsuleConvex.cpp */, + FFFD3c8051007ff03c805100 /* src/contact/GuContactCapsuleMesh.cpp */, + FFFD3c8051687ff03c805168 /* src/contact/GuContactConvexConvex.cpp */, + FFFD3c8051d07ff03c8051d0 /* src/contact/GuContactConvexMesh.cpp */, + FFFD3c8052387ff03c805238 /* src/contact/GuContactPlaneBox.cpp */, + FFFD3c8052a07ff03c8052a0 /* src/contact/GuContactPlaneCapsule.cpp */, + FFFD3c8053087ff03c805308 /* src/contact/GuContactPlaneConvex.cpp */, + FFFD3c8053707ff03c805370 /* src/contact/GuContactPolygonPolygon.cpp */, + FFFD3c8053d87ff03c8053d8 /* src/contact/GuContactSphereBox.cpp */, + FFFD3c8054407ff03c805440 /* src/contact/GuContactSphereCapsule.cpp */, + FFFD3c8054a87ff03c8054a8 /* src/contact/GuContactSphereMesh.cpp */, + FFFD3c8055107ff03c805510 /* src/contact/GuContactSpherePlane.cpp */, + FFFD3c8055787ff03c805578 /* src/contact/GuContactSphereSphere.cpp */, + FFFD3c8055e07ff03c8055e0 /* src/contact/GuFeatureCode.cpp */, + FFFD3c8056487ff03c805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */, + FFFD3c8056b07ff03c8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, + FFFD3c8057187ff03c805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */, + FFFD3c8057807ff03c805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */, + FFFD3c8057e87ff03c8057e8 /* src/common/GuBarycentricCoordinates.cpp */, + FFFD3c8058507ff03c805850 /* src/common/GuSeparatingAxes.cpp */, + FFFD3c8058b87ff03c8058b8 /* src/convex/GuBigConvexData.cpp */, + FFFD3c8059207ff03c805920 /* src/convex/GuConvexHelper.cpp */, + FFFD3c8059887ff03c805988 /* src/convex/GuConvexMesh.cpp */, + FFFD3c8059f07ff03c8059f0 /* src/convex/GuConvexSupportTable.cpp */, + FFFD3c805a587ff03c805a58 /* src/convex/GuConvexUtilsInternal.cpp */, + FFFD3c805ac07ff03c805ac0 /* src/convex/GuHillClimbing.cpp */, + FFFD3c805b287ff03c805b28 /* src/convex/GuShapeConvex.cpp */, + FFFD3c805b907ff03c805b90 /* src/distance/GuDistancePointBox.cpp */, + FFFD3c805bf87ff03c805bf8 /* src/distance/GuDistancePointTriangle.cpp */, + FFFD3c805c607ff03c805c60 /* src/distance/GuDistanceSegmentBox.cpp */, + FFFD3c805cc87ff03c805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */, + FFFD3c805d307ff03c805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */, + FFFD3c805d987ff03c805d98 /* src/sweep/GuSweepBoxBox.cpp */, + FFFD3c805e007ff03c805e00 /* src/sweep/GuSweepBoxSphere.cpp */, + FFFD3c805e687ff03c805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, + FFFD3c805ed07ff03c805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, + FFFD3c805f387ff03c805f38 /* src/sweep/GuSweepCapsuleBox.cpp */, + FFFD3c805fa07ff03c805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, + FFFD3c8060087ff03c806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */, + FFFD3c8060707ff03c806070 /* src/sweep/GuSweepSphereCapsule.cpp */, + FFFD3c8060d87ff03c8060d8 /* src/sweep/GuSweepSphereSphere.cpp */, + FFFD3c8061407ff03c806140 /* src/sweep/GuSweepSphereTriangle.cpp */, + FFFD3c8061a87ff03c8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */, + FFFD3c8062107ff03c806210 /* src/gjk/GuEPA.cpp */, + FFFD3c8062787ff03c806278 /* src/gjk/GuGJKSimplex.cpp */, + FFFD3c8062e07ff03c8062e0 /* src/gjk/GuGJKTest.cpp */, + FFFD3c8063487ff03c806348 /* src/intersection/GuIntersectionBoxBox.cpp */, + FFFD3c8063b07ff03c8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, + FFFD3c8064187ff03c806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */, + FFFD3c8064807ff03c806480 /* src/intersection/GuIntersectionRayBox.cpp */, + FFFD3c8064e87ff03c8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, + FFFD3c8065507ff03c806550 /* src/intersection/GuIntersectionRaySphere.cpp */, + FFFD3c8065b87ff03c8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */, + FFFD3c8066207ff03c806620 /* src/intersection/GuIntersectionTriangleBox.cpp */, + FFFD3c8066887ff03c806688 /* src/mesh/GuBV32.cpp */, + FFFD3c8066f07ff03c8066f0 /* src/mesh/GuBV32Build.cpp */, + FFFD3c8067587ff03c806758 /* src/mesh/GuBV4.cpp */, + FFFD3c8067c07ff03c8067c0 /* src/mesh/GuBV4Build.cpp */, + FFFD3c8068287ff03c806828 /* src/mesh/GuBV4_AABBSweep.cpp */, + FFFD3c8068907ff03c806890 /* src/mesh/GuBV4_BoxOverlap.cpp */, + FFFD3c8068f87ff03c8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, + FFFD3c8069607ff03c806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, + FFFD3c8069c87ff03c8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */, + FFFD3c806a307ff03c806a30 /* src/mesh/GuBV4_Raycast.cpp */, + FFFD3c806a987ff03c806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */, + FFFD3c806b007ff03c806b00 /* src/mesh/GuBV4_SphereSweep.cpp */, + FFFD3c806b687ff03c806b68 /* src/mesh/GuMeshQuery.cpp */, + FFFD3c806bd07ff03c806bd0 /* src/mesh/GuMidphaseBV4.cpp */, + FFFD3c806c387ff03c806c38 /* src/mesh/GuMidphaseRTree.cpp */, + FFFD3c806ca07ff03c806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */, + FFFD3c806d087ff03c806d08 /* src/mesh/GuRTree.cpp */, + FFFD3c806d707ff03c806d70 /* src/mesh/GuRTreeQueries.cpp */, + FFFD3c806dd87ff03c806dd8 /* src/mesh/GuSweepsMesh.cpp */, + FFFD3c806e407ff03c806e40 /* src/mesh/GuTriangleMesh.cpp */, + FFFD3c806ea87ff03c806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */, + FFFD3c806f107ff03c806f10 /* src/mesh/GuTriangleMeshRTree.cpp */, + FFFD3c806f787ff03c806f78 /* src/hf/GuHeightField.cpp */, + FFFD3c806fe07ff03c806fe0 /* src/hf/GuHeightFieldUtil.cpp */, + FFFD3c8070487ff03c807048 /* src/hf/GuOverlapTestsHF.cpp */, + FFFD3c8070b07ff03c8070b0 /* src/hf/GuSweepsHF.cpp */, + FFFD3c8071187ff03c807118 /* src/pcm/GuPCMContactBoxBox.cpp */, + FFFD3c8071807ff03c807180 /* src/pcm/GuPCMContactBoxConvex.cpp */, + FFFD3c8071e87ff03c8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, + FFFD3c8072507ff03c807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, + FFFD3c8072b87ff03c8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, + FFFD3c8073207ff03c807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, + FFFD3c8073887ff03c807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, + FFFD3c8073f07ff03c8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, + FFFD3c8074587ff03c807458 /* src/pcm/GuPCMContactConvexConvex.cpp */, + FFFD3c8074c07ff03c8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, + FFFD3c8075287ff03c807528 /* src/pcm/GuPCMContactConvexMesh.cpp */, + FFFD3c8075907ff03c807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, + FFFD3c8075f87ff03c8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, + FFFD3c8076607ff03c807660 /* src/pcm/GuPCMContactPlaneBox.cpp */, + FFFD3c8076c87ff03c8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, + FFFD3c8077307ff03c807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */, + FFFD3c8077987ff03c807798 /* src/pcm/GuPCMContactSphereBox.cpp */, + FFFD3c8078007ff03c807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */, + FFFD3c8078687ff03c807868 /* src/pcm/GuPCMContactSphereConvex.cpp */, + FFFD3c8078d07ff03c8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, + FFFD3c8079387ff03c807938 /* src/pcm/GuPCMContactSphereMesh.cpp */, + FFFD3c8079a07ff03c8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, + FFFD3c807a087ff03c807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */, + FFFD3c807a707ff03c807a70 /* src/pcm/GuPCMShapeConvex.cpp */, + FFFD3c807ad87ff03c807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */, + FFFD3c807b407ff03c807b40 /* src/pcm/GuPersistentContactManifold.cpp */, + FFFD3c807ba87ff03c807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, + FFFD3c807c107ff03c807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */, ); name = "geomutils"; sourceTree = SOURCE_ROOT; }; - FFFB59c114307f8c59c11430 /* PxFoundation */ = { + FFFB3ba5cc607ff03ba5cc60 /* PxFoundation */ = { isa = PBXGroup; children = ( - FFFB59c118f07f8c59c118f0 /* include */, - FFFB59c119187f8c59c11918 /* src */, + FFFB3ba5d2807ff03ba5d280 /* include */, + FFFB3ba5d2a87ff03ba5d2a8 /* src */, ); name = "PxFoundation"; sourceTree = "<group>"; }; - FFFB59c118f07f8c59c118f0 /* include */ = { + FFFB3ba5d2807ff03ba5d280 /* include */ = { isa = PBXGroup; children = ( - FFFD5a01b2007f8c5a01b200 /* Px.h */, - FFFD5a01b2687f8c5a01b268 /* PxAllocatorCallback.h */, - FFFD5a01b2d07f8c5a01b2d0 /* PxAssert.h */, - FFFD5a01b3387f8c5a01b338 /* PxBitAndData.h */, - FFFD5a01b3a07f8c5a01b3a0 /* PxBounds3.h */, - FFFD5a01b4087f8c5a01b408 /* PxErrorCallback.h */, - FFFD5a01b4707f8c5a01b470 /* PxErrors.h */, - FFFD5a01b4d87f8c5a01b4d8 /* PxFlags.h */, - FFFD5a01b5407f8c5a01b540 /* PxFoundation.h */, - FFFD5a01b5a87f8c5a01b5a8 /* PxFoundationVersion.h */, - FFFD5a01b6107f8c5a01b610 /* PxIO.h */, - FFFD5a01b6787f8c5a01b678 /* PxIntrinsics.h */, - FFFD5a01b6e07f8c5a01b6e0 /* PxMat33.h */, - FFFD5a01b7487f8c5a01b748 /* PxMat44.h */, - FFFD5a01b7b07f8c5a01b7b0 /* PxMath.h */, - FFFD5a01b8187f8c5a01b818 /* PxMathUtils.h */, - FFFD5a01b8807f8c5a01b880 /* PxMemory.h */, - FFFD5a01b8e87f8c5a01b8e8 /* PxPlane.h */, - FFFD5a01b9507f8c5a01b950 /* PxPreprocessor.h */, - FFFD5a01b9b87f8c5a01b9b8 /* PxProfiler.h */, - FFFD5a01ba207f8c5a01ba20 /* PxQuat.h */, - FFFD5a01ba887f8c5a01ba88 /* PxSimpleTypes.h */, - FFFD5a01baf07f8c5a01baf0 /* PxStrideIterator.h */, - FFFD5a01bb587f8c5a01bb58 /* PxTransform.h */, - FFFD5a01bbc07f8c5a01bbc0 /* PxUnionCast.h */, - FFFD5a01bc287f8c5a01bc28 /* PxVec2.h */, - FFFD5a01bc907f8c5a01bc90 /* PxVec3.h */, - FFFD5a01bcf87f8c5a01bcf8 /* PxVec4.h */, - FFFD5a01bd607f8c5a01bd60 /* unix/PxUnixIntrinsics.h */, + FFFD3c163e007ff03c163e00 /* Px.h */, + FFFD3c163e687ff03c163e68 /* PxAllocatorCallback.h */, + FFFD3c163ed07ff03c163ed0 /* PxAssert.h */, + FFFD3c163f387ff03c163f38 /* PxBitAndData.h */, + FFFD3c163fa07ff03c163fa0 /* PxBounds3.h */, + FFFD3c1640087ff03c164008 /* PxErrorCallback.h */, + FFFD3c1640707ff03c164070 /* PxErrors.h */, + FFFD3c1640d87ff03c1640d8 /* PxFlags.h */, + FFFD3c1641407ff03c164140 /* PxFoundation.h */, + FFFD3c1641a87ff03c1641a8 /* PxFoundationVersion.h */, + FFFD3c1642107ff03c164210 /* PxIO.h */, + FFFD3c1642787ff03c164278 /* PxIntrinsics.h */, + FFFD3c1642e07ff03c1642e0 /* PxMat33.h */, + FFFD3c1643487ff03c164348 /* PxMat44.h */, + FFFD3c1643b07ff03c1643b0 /* PxMath.h */, + FFFD3c1644187ff03c164418 /* PxMathUtils.h */, + FFFD3c1644807ff03c164480 /* PxMemory.h */, + FFFD3c1644e87ff03c1644e8 /* PxPlane.h */, + FFFD3c1645507ff03c164550 /* PxPreprocessor.h */, + FFFD3c1645b87ff03c1645b8 /* PxProfiler.h */, + FFFD3c1646207ff03c164620 /* PxQuat.h */, + FFFD3c1646887ff03c164688 /* PxSimpleTypes.h */, + FFFD3c1646f07ff03c1646f0 /* PxStrideIterator.h */, + FFFD3c1647587ff03c164758 /* PxTransform.h */, + FFFD3c1647c07ff03c1647c0 /* PxUnionCast.h */, + FFFD3c1648287ff03c164828 /* PxVec2.h */, + FFFD3c1648907ff03c164890 /* PxVec3.h */, + FFFD3c1648f87ff03c1648f8 /* PxVec4.h */, + FFFD3c1649607ff03c164960 /* unix/PxUnixIntrinsics.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB59c119187f8c59c11918 /* src */ = { + FFFB3ba5d2a87ff03ba5d2a8 /* src */ = { isa = PBXGroup; children = ( - FFFD5a01be007f8c5a01be00 /* include/Ps.h */, - FFFD5a01be687f8c5a01be68 /* include/PsAlignedMalloc.h */, - FFFD5a01bed07f8c5a01bed0 /* include/PsAlloca.h */, - FFFD5a01bf387f8c5a01bf38 /* include/PsAllocator.h */, - FFFD5a01bfa07f8c5a01bfa0 /* include/PsAoS.h */, - FFFD5a01c0087f8c5a01c008 /* include/PsArray.h */, - FFFD5a01c0707f8c5a01c070 /* include/PsAtomic.h */, - FFFD5a01c0d87f8c5a01c0d8 /* include/PsBasicTemplates.h */, - FFFD5a01c1407f8c5a01c140 /* include/PsBitUtils.h */, - FFFD5a01c1a87f8c5a01c1a8 /* include/PsBroadcast.h */, - FFFD5a01c2107f8c5a01c210 /* include/PsCpu.h */, - FFFD5a01c2787f8c5a01c278 /* include/PsFPU.h */, - FFFD5a01c2e07f8c5a01c2e0 /* include/PsFoundation.h */, - FFFD5a01c3487f8c5a01c348 /* include/PsHash.h */, - FFFD5a01c3b07f8c5a01c3b0 /* include/PsHashInternals.h */, - FFFD5a01c4187f8c5a01c418 /* include/PsHashMap.h */, - FFFD5a01c4807f8c5a01c480 /* include/PsHashSet.h */, - FFFD5a01c4e87f8c5a01c4e8 /* include/PsInlineAllocator.h */, - FFFD5a01c5507f8c5a01c550 /* include/PsInlineAoS.h */, - FFFD5a01c5b87f8c5a01c5b8 /* include/PsInlineArray.h */, - FFFD5a01c6207f8c5a01c620 /* include/PsIntrinsics.h */, - FFFD5a01c6887f8c5a01c688 /* include/PsMathUtils.h */, - FFFD5a01c6f07f8c5a01c6f0 /* include/PsMutex.h */, - FFFD5a01c7587f8c5a01c758 /* include/PsPool.h */, - FFFD5a01c7c07f8c5a01c7c0 /* include/PsSList.h */, - FFFD5a01c8287f8c5a01c828 /* include/PsSocket.h */, - FFFD5a01c8907f8c5a01c890 /* include/PsSort.h */, - FFFD5a01c8f87f8c5a01c8f8 /* include/PsSortInternals.h */, - FFFD5a01c9607f8c5a01c960 /* include/PsString.h */, - FFFD5a01c9c87f8c5a01c9c8 /* include/PsSync.h */, - FFFD5a01ca307f8c5a01ca30 /* include/PsTempAllocator.h */, - FFFD5a01ca987f8c5a01ca98 /* include/PsThread.h */, - FFFD5a01cb007f8c5a01cb00 /* include/PsTime.h */, - FFFD5a01cb687f8c5a01cb68 /* include/PsUserAllocated.h */, - FFFD5a01cbd07f8c5a01cbd0 /* include/PsUtilities.h */, - FFFD5a01cc387f8c5a01cc38 /* include/PsVecMath.h */, - FFFD5a01cca07f8c5a01cca0 /* include/PsVecMathAoSScalar.h */, - FFFD5a01cd087f8c5a01cd08 /* include/PsVecMathAoSScalarInline.h */, - FFFD5a01cd707f8c5a01cd70 /* include/PsVecMathSSE.h */, - FFFD5a01cdd87f8c5a01cdd8 /* include/PsVecMathUtilities.h */, - FFFD5a01ce407f8c5a01ce40 /* include/PsVecQuat.h */, - FFFD5a01cea87f8c5a01cea8 /* include/PsVecTransform.h */, - FFFD5a01cf107f8c5a01cf10 /* include/unix/PsUnixAoS.h */, - FFFD5a01cf787f8c5a01cf78 /* include/unix/PsUnixFPU.h */, - FFFD5a01cfe07f8c5a01cfe0 /* include/unix/PsUnixInlineAoS.h */, - FFFD5a01d0487f8c5a01d048 /* include/unix/PsUnixIntrinsics.h */, - FFFD5a01d0b07f8c5a01d0b0 /* include/unix/PsUnixTrigConstants.h */, - FFFD5a01d1187f8c5a01d118 /* src/PsAllocator.cpp */, - FFFD5a01d1807f8c5a01d180 /* src/PsAssert.cpp */, - FFFD5a01d1e87f8c5a01d1e8 /* src/PsFoundation.cpp */, - FFFD5a01d2507f8c5a01d250 /* src/PsMathUtils.cpp */, - FFFD5a01d2b87f8c5a01d2b8 /* src/PsString.cpp */, - FFFD5a01d3207f8c5a01d320 /* src/PsTempAllocator.cpp */, - FFFD5a01d3887f8c5a01d388 /* src/PsUtilities.cpp */, - FFFD5a01d3f07f8c5a01d3f0 /* src/unix/PsUnixAtomic.cpp */, - FFFD5a01d4587f8c5a01d458 /* src/unix/PsUnixCpu.cpp */, - FFFD5a01d4c07f8c5a01d4c0 /* src/unix/PsUnixFPU.cpp */, - FFFD5a01d5287f8c5a01d528 /* src/unix/PsUnixMutex.cpp */, - FFFD5a01d5907f8c5a01d590 /* src/unix/PsUnixPrintString.cpp */, - FFFD5a01d5f87f8c5a01d5f8 /* src/unix/PsUnixSList.cpp */, - FFFD5a01d6607f8c5a01d660 /* src/unix/PsUnixSocket.cpp */, - FFFD5a01d6c87f8c5a01d6c8 /* src/unix/PsUnixSync.cpp */, - FFFD5a01d7307f8c5a01d730 /* src/unix/PsUnixThread.cpp */, - FFFD5a01d7987f8c5a01d798 /* src/unix/PsUnixTime.cpp */, + FFFD3c189e007ff03c189e00 /* include/Ps.h */, + FFFD3c189e687ff03c189e68 /* include/PsAlignedMalloc.h */, + FFFD3c189ed07ff03c189ed0 /* include/PsAlloca.h */, + FFFD3c189f387ff03c189f38 /* include/PsAllocator.h */, + FFFD3c189fa07ff03c189fa0 /* include/PsAoS.h */, + FFFD3c18a0087ff03c18a008 /* include/PsArray.h */, + FFFD3c18a0707ff03c18a070 /* include/PsAtomic.h */, + FFFD3c18a0d87ff03c18a0d8 /* include/PsBasicTemplates.h */, + FFFD3c18a1407ff03c18a140 /* include/PsBitUtils.h */, + FFFD3c18a1a87ff03c18a1a8 /* include/PsBroadcast.h */, + FFFD3c18a2107ff03c18a210 /* include/PsCpu.h */, + FFFD3c18a2787ff03c18a278 /* include/PsFPU.h */, + FFFD3c18a2e07ff03c18a2e0 /* include/PsFoundation.h */, + FFFD3c18a3487ff03c18a348 /* include/PsHash.h */, + FFFD3c18a3b07ff03c18a3b0 /* include/PsHashInternals.h */, + FFFD3c18a4187ff03c18a418 /* include/PsHashMap.h */, + FFFD3c18a4807ff03c18a480 /* include/PsHashSet.h */, + FFFD3c18a4e87ff03c18a4e8 /* include/PsInlineAllocator.h */, + FFFD3c18a5507ff03c18a550 /* include/PsInlineAoS.h */, + FFFD3c18a5b87ff03c18a5b8 /* include/PsInlineArray.h */, + FFFD3c18a6207ff03c18a620 /* include/PsIntrinsics.h */, + FFFD3c18a6887ff03c18a688 /* include/PsMathUtils.h */, + FFFD3c18a6f07ff03c18a6f0 /* include/PsMutex.h */, + FFFD3c18a7587ff03c18a758 /* include/PsPool.h */, + FFFD3c18a7c07ff03c18a7c0 /* include/PsSList.h */, + FFFD3c18a8287ff03c18a828 /* include/PsSocket.h */, + FFFD3c18a8907ff03c18a890 /* include/PsSort.h */, + FFFD3c18a8f87ff03c18a8f8 /* include/PsSortInternals.h */, + FFFD3c18a9607ff03c18a960 /* include/PsString.h */, + FFFD3c18a9c87ff03c18a9c8 /* include/PsSync.h */, + FFFD3c18aa307ff03c18aa30 /* include/PsTempAllocator.h */, + FFFD3c18aa987ff03c18aa98 /* include/PsThread.h */, + FFFD3c18ab007ff03c18ab00 /* include/PsTime.h */, + FFFD3c18ab687ff03c18ab68 /* include/PsUserAllocated.h */, + FFFD3c18abd07ff03c18abd0 /* include/PsUtilities.h */, + FFFD3c18ac387ff03c18ac38 /* include/PsVecMath.h */, + FFFD3c18aca07ff03c18aca0 /* include/PsVecMathAoSScalar.h */, + FFFD3c18ad087ff03c18ad08 /* include/PsVecMathAoSScalarInline.h */, + FFFD3c18ad707ff03c18ad70 /* include/PsVecMathSSE.h */, + FFFD3c18add87ff03c18add8 /* include/PsVecMathUtilities.h */, + FFFD3c18ae407ff03c18ae40 /* include/PsVecQuat.h */, + FFFD3c18aea87ff03c18aea8 /* include/PsVecTransform.h */, + FFFD3c18af107ff03c18af10 /* include/unix/PsUnixAoS.h */, + FFFD3c18af787ff03c18af78 /* include/unix/PsUnixFPU.h */, + FFFD3c18afe07ff03c18afe0 /* include/unix/PsUnixInlineAoS.h */, + FFFD3c18b0487ff03c18b048 /* include/unix/PsUnixIntrinsics.h */, + FFFD3c18b0b07ff03c18b0b0 /* include/unix/PsUnixTrigConstants.h */, + FFFD3c18b1187ff03c18b118 /* src/PsAllocator.cpp */, + FFFD3c18b1807ff03c18b180 /* src/PsAssert.cpp */, + FFFD3c18b1e87ff03c18b1e8 /* src/PsFoundation.cpp */, + FFFD3c18b2507ff03c18b250 /* src/PsMathUtils.cpp */, + FFFD3c18b2b87ff03c18b2b8 /* src/PsString.cpp */, + FFFD3c18b3207ff03c18b320 /* src/PsTempAllocator.cpp */, + FFFD3c18b3887ff03c18b388 /* src/PsUtilities.cpp */, + FFFD3c18b3f07ff03c18b3f0 /* src/unix/PsUnixAtomic.cpp */, + FFFD3c18b4587ff03c18b458 /* src/unix/PsUnixCpu.cpp */, + FFFD3c18b4c07ff03c18b4c0 /* src/unix/PsUnixFPU.cpp */, + FFFD3c18b5287ff03c18b528 /* src/unix/PsUnixMutex.cpp */, + FFFD3c18b5907ff03c18b590 /* src/unix/PsUnixPrintString.cpp */, + FFFD3c18b5f87ff03c18b5f8 /* src/unix/PsUnixSList.cpp */, + FFFD3c18b6607ff03c18b660 /* src/unix/PsUnixSocket.cpp */, + FFFD3c18b6c87ff03c18b6c8 /* src/unix/PsUnixSync.cpp */, + FFFD3c18b7307ff03c18b730 /* src/unix/PsUnixThread.cpp */, + FFFD3c18b7987ff03c18b798 /* src/unix/PsUnixTime.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB59944d307f8c59944d30 /* PxPvdSDK */ = { + FFFB3b9d39307ff03b9d3930 /* PxPvdSDK */ = { isa = PBXGroup; children = ( - FFFB599411507f8c59941150 /* include */, - FFFB599411787f8c59941178 /* src */, + FFFB3b9bf6b07ff03b9bf6b0 /* include */, + FFFB3b9bf6d87ff03b9bf6d8 /* src */, ); name = "PxPvdSDK"; sourceTree = "<group>"; }; - FFFB599411507f8c59941150 /* include */ = { + FFFB3b9bf6b07ff03b9bf6b0 /* include */ = { isa = PBXGroup; children = ( - FFFD599418207f8c59941820 /* PxPvd.h */, - FFFD599418887f8c59941888 /* PxPvdTransport.h */, + FFFD3b9bfd807ff03b9bfd80 /* PxPvd.h */, + FFFD3b9bfde87ff03b9bfde8 /* PxPvdTransport.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB599411787f8c59941178 /* src */ = { + FFFB3b9bf6d87ff03b9bf6d8 /* src */ = { isa = PBXGroup; children = ( - FFFD59186a007f8c59186a00 /* include/PsPvd.h */, - FFFD59186a687f8c59186a68 /* include/PxProfileAllocatorWrapper.h */, - FFFD59186ad07f8c59186ad0 /* include/PxPvdClient.h */, - FFFD59186b387f8c59186b38 /* include/PxPvdDataStream.h */, - FFFD59186ba07f8c59186ba0 /* include/PxPvdDataStreamHelpers.h */, - FFFD59186c087f8c59186c08 /* include/PxPvdErrorCodes.h */, - FFFD59186c707f8c59186c70 /* include/PxPvdObjectModelBaseTypes.h */, - FFFD59186cd87f8c59186cd8 /* include/PxPvdRenderBuffer.h */, - FFFD59186d407f8c59186d40 /* include/PxPvdUserRenderer.h */, - FFFD59186da87f8c59186da8 /* src/PxProfileEventImpl.cpp */, - FFFD59186e107f8c59186e10 /* src/PxPvd.cpp */, - FFFD59186e787f8c59186e78 /* src/PxPvdDataStream.cpp */, - FFFD59186ee07f8c59186ee0 /* src/PxPvdDefaultFileTransport.cpp */, - FFFD59186f487f8c59186f48 /* src/PxPvdDefaultSocketTransport.cpp */, - FFFD59186fb07f8c59186fb0 /* src/PxPvdImpl.cpp */, - FFFD591870187f8c59187018 /* src/PxPvdMemClient.cpp */, - FFFD591870807f8c59187080 /* src/PxPvdObjectModelMetaData.cpp */, - FFFD591870e87f8c591870e8 /* src/PxPvdObjectRegistrar.cpp */, - FFFD591871507f8c59187150 /* src/PxPvdProfileZoneClient.cpp */, - FFFD591871b87f8c591871b8 /* src/PxPvdUserRenderer.cpp */, - FFFD591872207f8c59187220 /* src/PxProfileBase.h */, - FFFD591872887f8c59187288 /* src/PxProfileCompileTimeEventFilter.h */, - FFFD591872f07f8c591872f0 /* src/PxProfileContextProvider.h */, - FFFD591873587f8c59187358 /* src/PxProfileContextProviderImpl.h */, - FFFD591873c07f8c591873c0 /* src/PxProfileDataBuffer.h */, - FFFD591874287f8c59187428 /* src/PxProfileDataParsing.h */, - FFFD591874907f8c59187490 /* src/PxProfileEventBuffer.h */, - FFFD591874f87f8c591874f8 /* src/PxProfileEventBufferAtomic.h */, - FFFD591875607f8c59187560 /* src/PxProfileEventBufferClient.h */, - FFFD591875c87f8c591875c8 /* src/PxProfileEventBufferClientManager.h */, - FFFD591876307f8c59187630 /* src/PxProfileEventFilter.h */, - FFFD591876987f8c59187698 /* src/PxProfileEventHandler.h */, - FFFD591877007f8c59187700 /* src/PxProfileEventId.h */, - FFFD591877687f8c59187768 /* src/PxProfileEventMutex.h */, - FFFD591877d07f8c591877d0 /* src/PxProfileEventNames.h */, - FFFD591878387f8c59187838 /* src/PxProfileEventParser.h */, - FFFD591878a07f8c591878a0 /* src/PxProfileEventSender.h */, - FFFD591879087f8c59187908 /* src/PxProfileEventSerialization.h */, - FFFD591879707f8c59187970 /* src/PxProfileEventSystem.h */, - FFFD591879d87f8c591879d8 /* src/PxProfileEvents.h */, - FFFD59187a407f8c59187a40 /* src/PxProfileMemory.h */, - FFFD59187aa87f8c59187aa8 /* src/PxProfileMemoryBuffer.h */, - FFFD59187b107f8c59187b10 /* src/PxProfileMemoryEventBuffer.h */, - FFFD59187b787f8c59187b78 /* src/PxProfileMemoryEventParser.h */, - FFFD59187be07f8c59187be0 /* src/PxProfileMemoryEventRecorder.h */, - FFFD59187c487f8c59187c48 /* src/PxProfileMemoryEventReflexiveWriter.h */, - FFFD59187cb07f8c59187cb0 /* src/PxProfileMemoryEventSummarizer.h */, - FFFD59187d187f8c59187d18 /* src/PxProfileMemoryEventTypes.h */, - FFFD59187d807f8c59187d80 /* src/PxProfileMemoryEvents.h */, - FFFD59187de87f8c59187de8 /* src/PxProfileScopedEvent.h */, - FFFD59187e507f8c59187e50 /* src/PxProfileScopedMutexLock.h */, - FFFD59187eb87f8c59187eb8 /* src/PxProfileZone.h */, - FFFD59187f207f8c59187f20 /* src/PxProfileZoneImpl.h */, - FFFD59187f887f8c59187f88 /* src/PxProfileZoneManager.h */, - FFFD59187ff07f8c59187ff0 /* src/PxProfileZoneManagerImpl.h */, - FFFD591880587f8c59188058 /* src/PxPvdBits.h */, - FFFD591880c07f8c591880c0 /* src/PxPvdByteStreams.h */, - FFFD591881287f8c59188128 /* src/PxPvdCommStreamEventSink.h */, - FFFD591881907f8c59188190 /* src/PxPvdCommStreamEvents.h */, - FFFD591881f87f8c591881f8 /* src/PxPvdCommStreamSDKEventTypes.h */, - FFFD591882607f8c59188260 /* src/PxPvdCommStreamTypes.h */, - FFFD591882c87f8c591882c8 /* src/PxPvdDefaultFileTransport.h */, - FFFD591883307f8c59188330 /* src/PxPvdDefaultSocketTransport.h */, - FFFD591883987f8c59188398 /* src/PxPvdFoundation.h */, - FFFD591884007f8c59188400 /* src/PxPvdImpl.h */, - FFFD591884687f8c59188468 /* src/PxPvdInternalByteStreams.h */, - FFFD591884d07f8c591884d0 /* src/PxPvdMarshalling.h */, - FFFD591885387f8c59188538 /* src/PxPvdMemClient.h */, - FFFD591885a07f8c591885a0 /* src/PxPvdObjectModel.h */, - FFFD591886087f8c59188608 /* src/PxPvdObjectModelInternalTypeDefs.h */, - FFFD591886707f8c59188670 /* src/PxPvdObjectModelInternalTypes.h */, - FFFD591886d87f8c591886d8 /* src/PxPvdObjectModelMetaData.h */, - FFFD591887407f8c59188740 /* src/PxPvdObjectRegistrar.h */, - FFFD591887a87f8c591887a8 /* src/PxPvdProfileZoneClient.h */, - FFFD591888107f8c59188810 /* src/PxPvdUserRenderImpl.h */, - FFFD591888787f8c59188878 /* src/PxPvdUserRenderTypes.h */, + FFFD3c81e6007ff03c81e600 /* include/PsPvd.h */, + FFFD3c81e6687ff03c81e668 /* include/PxProfileAllocatorWrapper.h */, + FFFD3c81e6d07ff03c81e6d0 /* include/PxPvdClient.h */, + FFFD3c81e7387ff03c81e738 /* include/PxPvdDataStream.h */, + FFFD3c81e7a07ff03c81e7a0 /* include/PxPvdDataStreamHelpers.h */, + FFFD3c81e8087ff03c81e808 /* include/PxPvdErrorCodes.h */, + FFFD3c81e8707ff03c81e870 /* include/PxPvdObjectModelBaseTypes.h */, + FFFD3c81e8d87ff03c81e8d8 /* include/PxPvdRenderBuffer.h */, + FFFD3c81e9407ff03c81e940 /* include/PxPvdUserRenderer.h */, + FFFD3c81e9a87ff03c81e9a8 /* src/PxProfileEventImpl.cpp */, + FFFD3c81ea107ff03c81ea10 /* src/PxPvd.cpp */, + FFFD3c81ea787ff03c81ea78 /* src/PxPvdDataStream.cpp */, + FFFD3c81eae07ff03c81eae0 /* src/PxPvdDefaultFileTransport.cpp */, + FFFD3c81eb487ff03c81eb48 /* src/PxPvdDefaultSocketTransport.cpp */, + FFFD3c81ebb07ff03c81ebb0 /* src/PxPvdImpl.cpp */, + FFFD3c81ec187ff03c81ec18 /* src/PxPvdMemClient.cpp */, + FFFD3c81ec807ff03c81ec80 /* src/PxPvdObjectModelMetaData.cpp */, + FFFD3c81ece87ff03c81ece8 /* src/PxPvdObjectRegistrar.cpp */, + FFFD3c81ed507ff03c81ed50 /* src/PxPvdProfileZoneClient.cpp */, + FFFD3c81edb87ff03c81edb8 /* src/PxPvdUserRenderer.cpp */, + FFFD3c81ee207ff03c81ee20 /* src/PxProfileBase.h */, + FFFD3c81ee887ff03c81ee88 /* src/PxProfileCompileTimeEventFilter.h */, + FFFD3c81eef07ff03c81eef0 /* src/PxProfileContextProvider.h */, + FFFD3c81ef587ff03c81ef58 /* src/PxProfileContextProviderImpl.h */, + FFFD3c81efc07ff03c81efc0 /* src/PxProfileDataBuffer.h */, + FFFD3c81f0287ff03c81f028 /* src/PxProfileDataParsing.h */, + FFFD3c81f0907ff03c81f090 /* src/PxProfileEventBuffer.h */, + FFFD3c81f0f87ff03c81f0f8 /* src/PxProfileEventBufferAtomic.h */, + FFFD3c81f1607ff03c81f160 /* src/PxProfileEventBufferClient.h */, + FFFD3c81f1c87ff03c81f1c8 /* src/PxProfileEventBufferClientManager.h */, + FFFD3c81f2307ff03c81f230 /* src/PxProfileEventFilter.h */, + FFFD3c81f2987ff03c81f298 /* src/PxProfileEventHandler.h */, + FFFD3c81f3007ff03c81f300 /* src/PxProfileEventId.h */, + FFFD3c81f3687ff03c81f368 /* src/PxProfileEventMutex.h */, + FFFD3c81f3d07ff03c81f3d0 /* src/PxProfileEventNames.h */, + FFFD3c81f4387ff03c81f438 /* src/PxProfileEventParser.h */, + FFFD3c81f4a07ff03c81f4a0 /* src/PxProfileEventSender.h */, + FFFD3c81f5087ff03c81f508 /* src/PxProfileEventSerialization.h */, + FFFD3c81f5707ff03c81f570 /* src/PxProfileEventSystem.h */, + FFFD3c81f5d87ff03c81f5d8 /* src/PxProfileEvents.h */, + FFFD3c81f6407ff03c81f640 /* src/PxProfileMemory.h */, + FFFD3c81f6a87ff03c81f6a8 /* src/PxProfileMemoryBuffer.h */, + FFFD3c81f7107ff03c81f710 /* src/PxProfileMemoryEventBuffer.h */, + FFFD3c81f7787ff03c81f778 /* src/PxProfileMemoryEventParser.h */, + FFFD3c81f7e07ff03c81f7e0 /* src/PxProfileMemoryEventRecorder.h */, + FFFD3c81f8487ff03c81f848 /* src/PxProfileMemoryEventReflexiveWriter.h */, + FFFD3c81f8b07ff03c81f8b0 /* src/PxProfileMemoryEventSummarizer.h */, + FFFD3c81f9187ff03c81f918 /* src/PxProfileMemoryEventTypes.h */, + FFFD3c81f9807ff03c81f980 /* src/PxProfileMemoryEvents.h */, + FFFD3c81f9e87ff03c81f9e8 /* src/PxProfileScopedEvent.h */, + FFFD3c81fa507ff03c81fa50 /* src/PxProfileScopedMutexLock.h */, + FFFD3c81fab87ff03c81fab8 /* src/PxProfileZone.h */, + FFFD3c81fb207ff03c81fb20 /* src/PxProfileZoneImpl.h */, + FFFD3c81fb887ff03c81fb88 /* src/PxProfileZoneManager.h */, + FFFD3c81fbf07ff03c81fbf0 /* src/PxProfileZoneManagerImpl.h */, + FFFD3c81fc587ff03c81fc58 /* src/PxPvdBits.h */, + FFFD3c81fcc07ff03c81fcc0 /* src/PxPvdByteStreams.h */, + FFFD3c81fd287ff03c81fd28 /* src/PxPvdCommStreamEventSink.h */, + FFFD3c81fd907ff03c81fd90 /* src/PxPvdCommStreamEvents.h */, + FFFD3c81fdf87ff03c81fdf8 /* src/PxPvdCommStreamSDKEventTypes.h */, + FFFD3c81fe607ff03c81fe60 /* src/PxPvdCommStreamTypes.h */, + FFFD3c81fec87ff03c81fec8 /* src/PxPvdDefaultFileTransport.h */, + FFFD3c81ff307ff03c81ff30 /* src/PxPvdDefaultSocketTransport.h */, + FFFD3c81ff987ff03c81ff98 /* src/PxPvdFoundation.h */, + FFFD3c8200007ff03c820000 /* src/PxPvdImpl.h */, + FFFD3c8200687ff03c820068 /* src/PxPvdInternalByteStreams.h */, + FFFD3c8200d07ff03c8200d0 /* src/PxPvdMarshalling.h */, + FFFD3c8201387ff03c820138 /* src/PxPvdMemClient.h */, + FFFD3c8201a07ff03c8201a0 /* src/PxPvdObjectModel.h */, + FFFD3c8202087ff03c820208 /* src/PxPvdObjectModelInternalTypeDefs.h */, + FFFD3c8202707ff03c820270 /* src/PxPvdObjectModelInternalTypes.h */, + FFFD3c8202d87ff03c8202d8 /* src/PxPvdObjectModelMetaData.h */, + FFFD3c8203407ff03c820340 /* src/PxPvdObjectRegistrar.h */, + FFFD3c8203a87ff03c8203a8 /* src/PxPvdProfileZoneClient.h */, + FFFD3c8204107ff03c820410 /* src/PxPvdUserRenderImpl.h */, + FFFD3c8204787ff03c820478 /* src/PxPvdUserRenderTypes.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB59d336a07f8c59d336a0 /* LowLevel */ = { + FFFB3bf0b4507ff03bf0b450 /* LowLevel */ = { isa = PBXGroup; children = ( - FFFB59d38d907f8c59d38d90 /* API Source */, - FFFB59d38db87f8c59d38db8 /* API Includes */, - FFFB59d38de07f8c59d38de0 /* Software Source */, - FFFB59d38e087f8c59d38e08 /* Software Includes */, - FFFB59d38e307f8c59d38e30 /* Common Source */, - FFFB59d38e587f8c59d38e58 /* Common Includes */, + FFFB3bf102207ff03bf10220 /* API Source */, + FFFB3bf102487ff03bf10248 /* API Includes */, + FFFB3bf102707ff03bf10270 /* Software Source */, + FFFB3bf102987ff03bf10298 /* Software Includes */, + FFFB3bf102c07ff03bf102c0 /* Common Source */, + FFFB3bf102e87ff03bf102e8 /* Common Includes */, ); name = "LowLevel"; sourceTree = "<group>"; }; - FFFB59d38d907f8c59d38d90 /* API Source */ = { + FFFB3bf102207ff03bf10220 /* API Source */ = { isa = PBXGroup; children = ( - FFFD59d387007f8c59d38700 /* px_globals.cpp */, + FFFD3bf0f0207ff03bf0f020 /* px_globals.cpp */, ); name = "API Source"; sourceTree = SOURCE_ROOT; }; - FFFB59d38db87f8c59d38db8 /* API Includes */ = { + FFFB3bf102487ff03bf10248 /* API Includes */ = { isa = PBXGroup; children = ( - FFFD59d3a0207f8c59d3a020 /* PxsMaterialCore.h */, - FFFD59d3a0887f8c59d3a088 /* PxsMaterialManager.h */, - FFFD59d3a0f07f8c59d3a0f0 /* PxvConfig.h */, - FFFD59d3a1587f8c59d3a158 /* PxvContext.h */, - FFFD59d3a1c07f8c59d3a1c0 /* PxvDynamics.h */, - FFFD59d3a2287f8c59d3a228 /* PxvGeometry.h */, - FFFD59d3a2907f8c59d3a290 /* PxvGlobals.h */, - FFFD59d3a2f87f8c59d3a2f8 /* PxvManager.h */, - FFFD59d3a3607f8c59d3a360 /* PxvSimStats.h */, + FFFD3bf113907ff03bf11390 /* PxsMaterialCore.h */, + FFFD3bf113f87ff03bf113f8 /* PxsMaterialManager.h */, + FFFD3bf114607ff03bf11460 /* PxvConfig.h */, + FFFD3bf114c87ff03bf114c8 /* PxvContext.h */, + FFFD3bf115307ff03bf11530 /* PxvDynamics.h */, + FFFD3bf115987ff03bf11598 /* PxvGeometry.h */, + FFFD3bf116007ff03bf11600 /* PxvGlobals.h */, + FFFD3bf116687ff03bf11668 /* PxvManager.h */, + FFFD3bf116d07ff03bf116d0 /* PxvSimStats.h */, ); name = "API Includes"; sourceTree = SOURCE_ROOT; }; - FFFB59d38de07f8c59d38de0 /* Software Source */ = { + FFFB3bf102707ff03bf10270 /* Software Source */ = { isa = PBXGroup; children = ( - FFFD59d3b1907f8c59d3b190 /* PxsCCD.cpp */, - FFFD59d3b1f87f8c59d3b1f8 /* PxsContactManager.cpp */, - FFFD59d3b2607f8c59d3b260 /* PxsContext.cpp */, - FFFD59d3b2c87f8c59d3b2c8 /* PxsDefaultMemoryManager.cpp */, - FFFD59d3b3307f8c59d3b330 /* PxsIslandSim.cpp */, - FFFD59d3b3987f8c59d3b398 /* PxsMaterialCombiner.cpp */, - FFFD59d3b4007f8c59d3b400 /* PxsNphaseImplementationContext.cpp */, - FFFD59d3b4687f8c59d3b468 /* PxsSimpleIslandManager.cpp */, + FFFD3bf08af07ff03bf08af0 /* PxsCCD.cpp */, + FFFD3bf08b587ff03bf08b58 /* PxsContactManager.cpp */, + FFFD3bf08bc07ff03bf08bc0 /* PxsContext.cpp */, + FFFD3bf08c287ff03bf08c28 /* PxsDefaultMemoryManager.cpp */, + FFFD3bf08c907ff03bf08c90 /* PxsIslandSim.cpp */, + FFFD3bf08cf87ff03bf08cf8 /* PxsMaterialCombiner.cpp */, + FFFD3bf08d607ff03bf08d60 /* PxsNphaseImplementationContext.cpp */, + FFFD3bf08dc87ff03bf08dc8 /* PxsSimpleIslandManager.cpp */, ); name = "Software Source"; sourceTree = SOURCE_ROOT; }; - FFFB59d38e087f8c59d38e08 /* Software Includes */ = { + FFFB3bf102987ff03bf10298 /* Software Includes */ = { isa = PBXGroup; children = ( - FFFD5a8198007f8c5a819800 /* PxsBodySim.h */, - FFFD5a8198687f8c5a819868 /* PxsCCD.h */, - FFFD5a8198d07f8c5a8198d0 /* PxsContactManager.h */, - FFFD5a8199387f8c5a819938 /* PxsContactManagerState.h */, - FFFD5a8199a07f8c5a8199a0 /* PxsContext.h */, - FFFD5a819a087f8c5a819a08 /* PxsDefaultMemoryManager.h */, - FFFD5a819a707f8c5a819a70 /* PxsHeapMemoryAllocator.h */, - FFFD5a819ad87f8c5a819ad8 /* PxsIncrementalConstraintPartitioning.h */, - FFFD5a819b407f8c5a819b40 /* PxsIslandManagerTypes.h */, - FFFD5a819ba87f8c5a819ba8 /* PxsIslandSim.h */, - FFFD5a819c107f8c5a819c10 /* PxsKernelWrangler.h */, - FFFD5a819c787f8c5a819c78 /* PxsMaterialCombiner.h */, - FFFD5a819ce07f8c5a819ce0 /* PxsMemoryManager.h */, - FFFD5a819d487f8c5a819d48 /* PxsNphaseImplementationContext.h */, - FFFD5a819db07f8c5a819db0 /* PxsRigidBody.h */, - FFFD5a819e187f8c5a819e18 /* PxsShapeSim.h */, - FFFD5a819e807f8c5a819e80 /* PxsSimpleIslandManager.h */, - FFFD5a819ee87f8c5a819ee8 /* PxsSimulationController.h */, - FFFD5a819f507f8c5a819f50 /* PxsTransformCache.h */, - FFFD5a819fb87f8c5a819fb8 /* PxvNphaseImplementationContext.h */, + FFFD3d0000007ff03d000000 /* PxsBodySim.h */, + FFFD3d0000687ff03d000068 /* PxsCCD.h */, + FFFD3d0000d07ff03d0000d0 /* PxsContactManager.h */, + FFFD3d0001387ff03d000138 /* PxsContactManagerState.h */, + FFFD3d0001a07ff03d0001a0 /* PxsContext.h */, + FFFD3d0002087ff03d000208 /* PxsDefaultMemoryManager.h */, + FFFD3d0002707ff03d000270 /* PxsHeapMemoryAllocator.h */, + FFFD3d0002d87ff03d0002d8 /* PxsIncrementalConstraintPartitioning.h */, + FFFD3d0003407ff03d000340 /* PxsIslandManagerTypes.h */, + FFFD3d0003a87ff03d0003a8 /* PxsIslandSim.h */, + FFFD3d0004107ff03d000410 /* PxsKernelWrangler.h */, + FFFD3d0004787ff03d000478 /* PxsMaterialCombiner.h */, + FFFD3d0004e07ff03d0004e0 /* PxsMemoryManager.h */, + FFFD3d0005487ff03d000548 /* PxsNphaseImplementationContext.h */, + FFFD3d0005b07ff03d0005b0 /* PxsRigidBody.h */, + FFFD3d0006187ff03d000618 /* PxsShapeSim.h */, + FFFD3d0006807ff03d000680 /* PxsSimpleIslandManager.h */, + FFFD3d0006e87ff03d0006e8 /* PxsSimulationController.h */, + FFFD3d0007507ff03d000750 /* PxsTransformCache.h */, + FFFD3d0007b87ff03d0007b8 /* PxvNphaseImplementationContext.h */, ); name = "Software Includes"; sourceTree = SOURCE_ROOT; }; - FFFB59d38e307f8c59d38e30 /* Common Source */ = { + FFFB3bf102c07ff03bf102c0 /* Common Source */ = { isa = PBXGroup; children = ( - FFFD5a8182007f8c5a818200 /* collision/PxcContact.cpp */, - FFFD5a8182687f8c5a818268 /* pipeline/PxcContactCache.cpp */, - FFFD5a8182d07f8c5a8182d0 /* pipeline/PxcContactMethodImpl.cpp */, - FFFD5a8183387f8c5a818338 /* pipeline/PxcMaterialHeightField.cpp */, - FFFD5a8183a07f8c5a8183a0 /* pipeline/PxcMaterialMesh.cpp */, - FFFD5a8184087f8c5a818408 /* pipeline/PxcMaterialMethodImpl.cpp */, - FFFD5a8184707f8c5a818470 /* pipeline/PxcMaterialShape.cpp */, - FFFD5a8184d87f8c5a8184d8 /* pipeline/PxcNpBatch.cpp */, - FFFD5a8185407f8c5a818540 /* pipeline/PxcNpCacheStreamPair.cpp */, - FFFD5a8185a87f8c5a8185a8 /* pipeline/PxcNpContactPrepShared.cpp */, - FFFD5a8186107f8c5a818610 /* pipeline/PxcNpMemBlockPool.cpp */, - FFFD5a8186787f8c5a818678 /* pipeline/PxcNpThreadContext.cpp */, + FFFD3d008e007ff03d008e00 /* collision/PxcContact.cpp */, + FFFD3d008e687ff03d008e68 /* pipeline/PxcContactCache.cpp */, + FFFD3d008ed07ff03d008ed0 /* pipeline/PxcContactMethodImpl.cpp */, + FFFD3d008f387ff03d008f38 /* pipeline/PxcMaterialHeightField.cpp */, + FFFD3d008fa07ff03d008fa0 /* pipeline/PxcMaterialMesh.cpp */, + FFFD3d0090087ff03d009008 /* pipeline/PxcMaterialMethodImpl.cpp */, + FFFD3d0090707ff03d009070 /* pipeline/PxcMaterialShape.cpp */, + FFFD3d0090d87ff03d0090d8 /* pipeline/PxcNpBatch.cpp */, + FFFD3d0091407ff03d009140 /* pipeline/PxcNpCacheStreamPair.cpp */, + FFFD3d0091a87ff03d0091a8 /* pipeline/PxcNpContactPrepShared.cpp */, + FFFD3d0092107ff03d009210 /* pipeline/PxcNpMemBlockPool.cpp */, + FFFD3d0092787ff03d009278 /* pipeline/PxcNpThreadContext.cpp */, ); name = "Common Source"; sourceTree = SOURCE_ROOT; }; - FFFB59d38e587f8c59d38e58 /* Common Includes */ = { + FFFB3bf102e87ff03bf102e8 /* Common Includes */ = { isa = PBXGroup; children = ( - FFFD5a818a007f8c5a818a00 /* collision/PxcContactMethodImpl.h */, - FFFD5a818a687f8c5a818a68 /* pipeline/PxcCCDStateStreamPair.h */, - FFFD5a818ad07f8c5a818ad0 /* pipeline/PxcConstraintBlockStream.h */, - FFFD5a818b387f8c5a818b38 /* pipeline/PxcContactCache.h */, - FFFD5a818ba07f8c5a818ba0 /* pipeline/PxcMaterialMethodImpl.h */, - FFFD5a818c087f8c5a818c08 /* pipeline/PxcNpBatch.h */, - FFFD5a818c707f8c5a818c70 /* pipeline/PxcNpCache.h */, - FFFD5a818cd87f8c5a818cd8 /* pipeline/PxcNpCacheStreamPair.h */, - FFFD5a818d407f8c5a818d40 /* pipeline/PxcNpContactPrepShared.h */, - FFFD5a818da87f8c5a818da8 /* pipeline/PxcNpMemBlockPool.h */, - FFFD5a818e107f8c5a818e10 /* pipeline/PxcNpThreadContext.h */, - FFFD5a818e787f8c5a818e78 /* pipeline/PxcNpWorkUnit.h */, - FFFD5a818ee07f8c5a818ee0 /* pipeline/PxcRigidBody.h */, - FFFD5a818f487f8c5a818f48 /* utils/PxcScratchAllocator.h */, - FFFD5a818fb07f8c5a818fb0 /* utils/PxcThreadCoherentCache.h */, + FFFD3d009c007ff03d009c00 /* collision/PxcContactMethodImpl.h */, + FFFD3d009c687ff03d009c68 /* pipeline/PxcCCDStateStreamPair.h */, + FFFD3d009cd07ff03d009cd0 /* pipeline/PxcConstraintBlockStream.h */, + FFFD3d009d387ff03d009d38 /* pipeline/PxcContactCache.h */, + FFFD3d009da07ff03d009da0 /* pipeline/PxcMaterialMethodImpl.h */, + FFFD3d009e087ff03d009e08 /* pipeline/PxcNpBatch.h */, + FFFD3d009e707ff03d009e70 /* pipeline/PxcNpCache.h */, + FFFD3d009ed87ff03d009ed8 /* pipeline/PxcNpCacheStreamPair.h */, + FFFD3d009f407ff03d009f40 /* pipeline/PxcNpContactPrepShared.h */, + FFFD3d009fa87ff03d009fa8 /* pipeline/PxcNpMemBlockPool.h */, + FFFD3d00a0107ff03d00a010 /* pipeline/PxcNpThreadContext.h */, + FFFD3d00a0787ff03d00a078 /* pipeline/PxcNpWorkUnit.h */, + FFFD3d00a0e07ff03d00a0e0 /* pipeline/PxcRigidBody.h */, + FFFD3d00a1487ff03d00a148 /* utils/PxcScratchAllocator.h */, + FFFD3d00a1b07ff03d00a1b0 /* utils/PxcThreadCoherentCache.h */, ); name = "Common Includes"; sourceTree = SOURCE_ROOT; }; - FFFB5b808e607f8c5b808e60 /* LowLevelAABB */ = { + FFFB3b971cd07ff03b971cd0 /* LowLevelAABB */ = { isa = PBXGroup; children = ( - FFFB5b80c0d07f8c5b80c0d0 /* include */, - FFFB5b80c0f87f8c5b80c0f8 /* src */, + FFFB3b95f8207ff03b95f820 /* include */, + FFFB3b95f8487ff03b95f848 /* src */, ); name = "LowLevelAABB"; sourceTree = "<group>"; }; - FFFB5b80c0d07f8c5b80c0d0 /* include */ = { + FFFB3b95f8207ff03b95f820 /* include */ = { isa = PBXGroup; children = ( - FFFD5b80c5f07f8c5b80c5f0 /* BpAABBManagerTasks.h */, - FFFD5b80c6587f8c5b80c658 /* BpBroadPhase.h */, - FFFD5b80c6c07f8c5b80c6c0 /* BpBroadPhaseUpdate.h */, - FFFD5b80c7287f8c5b80c728 /* BpSimpleAABBManager.h */, + FFFD3b95fd407ff03b95fd40 /* BpAABBManagerTasks.h */, + FFFD3b95fda87ff03b95fda8 /* BpBroadPhase.h */, + FFFD3b95fe107ff03b95fe10 /* BpBroadPhaseUpdate.h */, + FFFD3b95fe787ff03b95fe78 /* BpSimpleAABBManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5b80c0f87f8c5b80c0f8 /* src */ = { + FFFB3b95f8487ff03b95f848 /* src */ = { isa = PBXGroup; children = ( - FFFD5b01fc007f8c5b01fc00 /* BpBroadPhaseMBP.h */, - FFFD5b01fc687f8c5b01fc68 /* BpBroadPhaseMBPCommon.h */, - FFFD5b01fcd07f8c5b01fcd0 /* BpBroadPhaseSap.h */, - FFFD5b01fd387f8c5b01fd38 /* BpBroadPhaseSapAux.h */, - FFFD5b01fda07f8c5b01fda0 /* BpMBPTasks.h */, - FFFD5b01fe087f8c5b01fe08 /* BpSAPTasks.h */, - FFFD5b01fe707f8c5b01fe70 /* BpBroadPhase.cpp */, - FFFD5b01fed87f8c5b01fed8 /* BpBroadPhaseMBP.cpp */, - FFFD5b01ff407f8c5b01ff40 /* BpBroadPhaseSap.cpp */, - FFFD5b01ffa87f8c5b01ffa8 /* BpBroadPhaseSapAux.cpp */, - FFFD5b0200107f8c5b020010 /* BpMBPTasks.cpp */, - FFFD5b0200787f8c5b020078 /* BpSAPTasks.cpp */, - FFFD5b0200e07f8c5b0200e0 /* BpSimpleAABBManager.cpp */, + FFFD3c814c007ff03c814c00 /* BpBroadPhaseMBP.h */, + FFFD3c814c687ff03c814c68 /* BpBroadPhaseMBPCommon.h */, + FFFD3c814cd07ff03c814cd0 /* BpBroadPhaseSap.h */, + FFFD3c814d387ff03c814d38 /* BpBroadPhaseSapAux.h */, + FFFD3c814da07ff03c814da0 /* BpMBPTasks.h */, + FFFD3c814e087ff03c814e08 /* BpSAPTasks.h */, + FFFD3c814e707ff03c814e70 /* BpBroadPhase.cpp */, + FFFD3c814ed87ff03c814ed8 /* BpBroadPhaseMBP.cpp */, + FFFD3c814f407ff03c814f40 /* BpBroadPhaseSap.cpp */, + FFFD3c814fa87ff03c814fa8 /* BpBroadPhaseSapAux.cpp */, + FFFD3c8150107ff03c815010 /* BpMBPTasks.cpp */, + FFFD3c8150787ff03c815078 /* BpSAPTasks.cpp */, + FFFD3c8150e07ff03c8150e0 /* BpSimpleAABBManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB59c249907f8c59c24990 /* LowLevelDynamics */ = { + FFFB3ba330407ff03ba33040 /* LowLevelDynamics */ = { isa = PBXGroup; children = ( - FFFB59c306407f8c59c30640 /* Dynamics Source */, - FFFB59c306687f8c59c30668 /* Dynamics Includes */, - FFFB59c306907f8c59c30690 /* Dynamics Internal Includes */, + FFFB3ba3aee07ff03ba3aee0 /* Dynamics Source */, + FFFB3ba3af087ff03ba3af08 /* Dynamics Includes */, + FFFB3ba3af307ff03ba3af30 /* Dynamics Internal Includes */, ); name = "LowLevelDynamics"; sourceTree = "<group>"; }; - FFFB59c306407f8c59c30640 /* Dynamics Source */ = { + FFFB3ba3aee07ff03ba3aee0 /* Dynamics Source */ = { isa = PBXGroup; children = ( - FFFD5a02d2007f8c5a02d200 /* DyArticulation.cpp */, - FFFD5a02d2687f8c5a02d268 /* DyArticulationContactPrep.cpp */, - FFFD5a02d2d07f8c5a02d2d0 /* DyArticulationContactPrepPF.cpp */, - FFFD5a02d3387f8c5a02d338 /* DyArticulationHelper.cpp */, - FFFD5a02d3a07f8c5a02d3a0 /* DyArticulationSIMD.cpp */, - FFFD5a02d4087f8c5a02d408 /* DyArticulationScalar.cpp */, - FFFD5a02d4707f8c5a02d470 /* DyConstraintPartition.cpp */, - FFFD5a02d4d87f8c5a02d4d8 /* DyConstraintSetup.cpp */, - FFFD5a02d5407f8c5a02d540 /* DyConstraintSetupBlock.cpp */, - FFFD5a02d5a87f8c5a02d5a8 /* DyContactPrep.cpp */, - FFFD5a02d6107f8c5a02d610 /* DyContactPrep4.cpp */, - FFFD5a02d6787f8c5a02d678 /* DyContactPrep4PF.cpp */, - FFFD5a02d6e07f8c5a02d6e0 /* DyContactPrepPF.cpp */, - FFFD5a02d7487f8c5a02d748 /* DyDynamics.cpp */, - FFFD5a02d7b07f8c5a02d7b0 /* DyFrictionCorrelation.cpp */, - FFFD5a02d8187f8c5a02d818 /* DyRigidBodyToSolverBody.cpp */, - FFFD5a02d8807f8c5a02d880 /* DySolverConstraints.cpp */, - FFFD5a02d8e87f8c5a02d8e8 /* DySolverConstraintsBlock.cpp */, - FFFD5a02d9507f8c5a02d950 /* DySolverControl.cpp */, - FFFD5a02d9b87f8c5a02d9b8 /* DySolverControlPF.cpp */, - FFFD5a02da207f8c5a02da20 /* DySolverPFConstraints.cpp */, - FFFD5a02da887f8c5a02da88 /* DySolverPFConstraintsBlock.cpp */, - FFFD5a02daf07f8c5a02daf0 /* DyThreadContext.cpp */, - FFFD5a02db587f8c5a02db58 /* DyThresholdTable.cpp */, + FFFD3c1930007ff03c193000 /* DyArticulation.cpp */, + FFFD3c1930687ff03c193068 /* DyArticulationContactPrep.cpp */, + FFFD3c1930d07ff03c1930d0 /* DyArticulationContactPrepPF.cpp */, + FFFD3c1931387ff03c193138 /* DyArticulationHelper.cpp */, + FFFD3c1931a07ff03c1931a0 /* DyArticulationSIMD.cpp */, + FFFD3c1932087ff03c193208 /* DyArticulationScalar.cpp */, + FFFD3c1932707ff03c193270 /* DyConstraintPartition.cpp */, + FFFD3c1932d87ff03c1932d8 /* DyConstraintSetup.cpp */, + FFFD3c1933407ff03c193340 /* DyConstraintSetupBlock.cpp */, + FFFD3c1933a87ff03c1933a8 /* DyContactPrep.cpp */, + FFFD3c1934107ff03c193410 /* DyContactPrep4.cpp */, + FFFD3c1934787ff03c193478 /* DyContactPrep4PF.cpp */, + FFFD3c1934e07ff03c1934e0 /* DyContactPrepPF.cpp */, + FFFD3c1935487ff03c193548 /* DyDynamics.cpp */, + FFFD3c1935b07ff03c1935b0 /* DyFrictionCorrelation.cpp */, + FFFD3c1936187ff03c193618 /* DyRigidBodyToSolverBody.cpp */, + FFFD3c1936807ff03c193680 /* DySolverConstraints.cpp */, + FFFD3c1936e87ff03c1936e8 /* DySolverConstraintsBlock.cpp */, + FFFD3c1937507ff03c193750 /* DySolverControl.cpp */, + FFFD3c1937b87ff03c1937b8 /* DySolverControlPF.cpp */, + FFFD3c1938207ff03c193820 /* DySolverPFConstraints.cpp */, + FFFD3c1938887ff03c193888 /* DySolverPFConstraintsBlock.cpp */, + FFFD3c1938f07ff03c1938f0 /* DyThreadContext.cpp */, + FFFD3c1939587ff03c193958 /* DyThresholdTable.cpp */, ); name = "Dynamics Source"; sourceTree = SOURCE_ROOT; }; - FFFB59c306687f8c59c30668 /* Dynamics Includes */ = { + FFFB3ba3af087ff03ba3af08 /* Dynamics Includes */ = { isa = PBXGroup; children = ( - FFFD59c31cb07f8c59c31cb0 /* DyArticulation.h */, - FFFD59c31d187f8c59c31d18 /* DyConstraint.h */, - FFFD59c31d807f8c59c31d80 /* DyConstraintWriteBack.h */, - FFFD59c31de87f8c59c31de8 /* DyContext.h */, - FFFD59c31e507f8c59c31e50 /* DySleepingConfigulation.h */, - FFFD59c31eb87f8c59c31eb8 /* DyThresholdTable.h */, + FFFD3ba2da507ff03ba2da50 /* DyArticulation.h */, + FFFD3ba2dab87ff03ba2dab8 /* DyConstraint.h */, + FFFD3ba2db207ff03ba2db20 /* DyConstraintWriteBack.h */, + FFFD3ba2db887ff03ba2db88 /* DyContext.h */, + FFFD3ba2dbf07ff03ba2dbf0 /* DySleepingConfigulation.h */, + FFFD3ba2dc587ff03ba2dc58 /* DyThresholdTable.h */, ); name = "Dynamics Includes"; sourceTree = SOURCE_ROOT; }; - FFFB59c306907f8c59c30690 /* Dynamics Internal Includes */ = { + FFFB3ba3af307ff03ba3af30 /* Dynamics Internal Includes */ = { isa = PBXGroup; children = ( - FFFD5a02ea007f8c5a02ea00 /* DyArticulationContactPrep.h */, - FFFD5a02ea687f8c5a02ea68 /* DyArticulationFnsDebug.h */, - FFFD5a02ead07f8c5a02ead0 /* DyArticulationFnsScalar.h */, - FFFD5a02eb387f8c5a02eb38 /* DyArticulationFnsSimd.h */, - FFFD5a02eba07f8c5a02eba0 /* DyArticulationHelper.h */, - FFFD5a02ec087f8c5a02ec08 /* DyArticulationPImpl.h */, - FFFD5a02ec707f8c5a02ec70 /* DyArticulationReference.h */, - FFFD5a02ecd87f8c5a02ecd8 /* DyArticulationScalar.h */, - FFFD5a02ed407f8c5a02ed40 /* DyArticulationUtils.h */, - FFFD5a02eda87f8c5a02eda8 /* DyBodyCoreIntegrator.h */, - FFFD5a02ee107f8c5a02ee10 /* DyConstraintPartition.h */, - FFFD5a02ee787f8c5a02ee78 /* DyConstraintPrep.h */, - FFFD5a02eee07f8c5a02eee0 /* DyContactPrep.h */, - FFFD5a02ef487f8c5a02ef48 /* DyContactPrepShared.h */, - FFFD5a02efb07f8c5a02efb0 /* DyContactReduction.h */, - FFFD5a02f0187f8c5a02f018 /* DyCorrelationBuffer.h */, - FFFD5a02f0807f8c5a02f080 /* DyDynamics.h */, - FFFD5a02f0e87f8c5a02f0e8 /* DyFrictionPatch.h */, - FFFD5a02f1507f8c5a02f150 /* DyFrictionPatchStreamPair.h */, - FFFD5a02f1b87f8c5a02f1b8 /* DySolverBody.h */, - FFFD5a02f2207f8c5a02f220 /* DySolverConstraint1D.h */, - FFFD5a02f2887f8c5a02f288 /* DySolverConstraint1D4.h */, - FFFD5a02f2f07f8c5a02f2f0 /* DySolverConstraintDesc.h */, - FFFD5a02f3587f8c5a02f358 /* DySolverConstraintExtShared.h */, - FFFD5a02f3c07f8c5a02f3c0 /* DySolverConstraintTypes.h */, - FFFD5a02f4287f8c5a02f428 /* DySolverConstraintsShared.h */, - FFFD5a02f4907f8c5a02f490 /* DySolverContact.h */, - FFFD5a02f4f87f8c5a02f4f8 /* DySolverContact4.h */, - FFFD5a02f5607f8c5a02f560 /* DySolverContactPF.h */, - FFFD5a02f5c87f8c5a02f5c8 /* DySolverContactPF4.h */, - FFFD5a02f6307f8c5a02f630 /* DySolverContext.h */, - FFFD5a02f6987f8c5a02f698 /* DySolverControl.h */, - FFFD5a02f7007f8c5a02f700 /* DySolverControlPF.h */, - FFFD5a02f7687f8c5a02f768 /* DySolverCore.h */, - FFFD5a02f7d07f8c5a02f7d0 /* DySolverExt.h */, - FFFD5a02f8387f8c5a02f838 /* DySpatial.h */, - FFFD5a02f8a07f8c5a02f8a0 /* DyThreadContext.h */, + FFFD3c1948007ff03c194800 /* DyArticulationContactPrep.h */, + FFFD3c1948687ff03c194868 /* DyArticulationFnsDebug.h */, + FFFD3c1948d07ff03c1948d0 /* DyArticulationFnsScalar.h */, + FFFD3c1949387ff03c194938 /* DyArticulationFnsSimd.h */, + FFFD3c1949a07ff03c1949a0 /* DyArticulationHelper.h */, + FFFD3c194a087ff03c194a08 /* DyArticulationPImpl.h */, + FFFD3c194a707ff03c194a70 /* DyArticulationReference.h */, + FFFD3c194ad87ff03c194ad8 /* DyArticulationScalar.h */, + FFFD3c194b407ff03c194b40 /* DyArticulationUtils.h */, + FFFD3c194ba87ff03c194ba8 /* DyBodyCoreIntegrator.h */, + FFFD3c194c107ff03c194c10 /* DyConstraintPartition.h */, + FFFD3c194c787ff03c194c78 /* DyConstraintPrep.h */, + FFFD3c194ce07ff03c194ce0 /* DyContactPrep.h */, + FFFD3c194d487ff03c194d48 /* DyContactPrepShared.h */, + FFFD3c194db07ff03c194db0 /* DyContactReduction.h */, + FFFD3c194e187ff03c194e18 /* DyCorrelationBuffer.h */, + FFFD3c194e807ff03c194e80 /* DyDynamics.h */, + FFFD3c194ee87ff03c194ee8 /* DyFrictionPatch.h */, + FFFD3c194f507ff03c194f50 /* DyFrictionPatchStreamPair.h */, + FFFD3c194fb87ff03c194fb8 /* DySolverBody.h */, + FFFD3c1950207ff03c195020 /* DySolverConstraint1D.h */, + FFFD3c1950887ff03c195088 /* DySolverConstraint1D4.h */, + FFFD3c1950f07ff03c1950f0 /* DySolverConstraintDesc.h */, + FFFD3c1951587ff03c195158 /* DySolverConstraintExtShared.h */, + FFFD3c1951c07ff03c1951c0 /* DySolverConstraintTypes.h */, + FFFD3c1952287ff03c195228 /* DySolverConstraintsShared.h */, + FFFD3c1952907ff03c195290 /* DySolverContact.h */, + FFFD3c1952f87ff03c1952f8 /* DySolverContact4.h */, + FFFD3c1953607ff03c195360 /* DySolverContactPF.h */, + FFFD3c1953c87ff03c1953c8 /* DySolverContactPF4.h */, + FFFD3c1954307ff03c195430 /* DySolverContext.h */, + FFFD3c1954987ff03c195498 /* DySolverControl.h */, + FFFD3c1955007ff03c195500 /* DySolverControlPF.h */, + FFFD3c1955687ff03c195568 /* DySolverCore.h */, + FFFD3c1955d07ff03c1955d0 /* DySolverExt.h */, + FFFD3c1956387ff03c195638 /* DySpatial.h */, + FFFD3c1956a07ff03c1956a0 /* DyThreadContext.h */, ); name = "Dynamics Internal Includes"; sourceTree = SOURCE_ROOT; }; - FFFB59d4aa007f8c59d4aa00 /* LowLevelCloth */ = { + FFFB3bdf7df07ff03bdf7df0 /* LowLevelCloth */ = { isa = PBXGroup; children = ( - FFFB59d4cc807f8c59d4cc80 /* include */, - FFFB59d4cca87f8c59d4cca8 /* src */, + FFFB3bdfa0507ff03bdfa050 /* include */, + FFFB3bdfa0787ff03bdfa078 /* src */, ); name = "LowLevelCloth"; sourceTree = "<group>"; }; - FFFB59d4cc807f8c59d4cc80 /* include */ = { + FFFB3bdfa0507ff03bdfa050 /* include */ = { isa = PBXGroup; children = ( - FFFD59d5a8b07f8c59d5a8b0 /* Cloth.h */, - FFFD59d5a9187f8c59d5a918 /* Fabric.h */, - FFFD59d5a9807f8c59d5a980 /* Factory.h */, - FFFD59d5a9e87f8c59d5a9e8 /* PhaseConfig.h */, - FFFD59d5aa507f8c59d5aa50 /* Range.h */, - FFFD59d5aab87f8c59d5aab8 /* Solver.h */, - FFFD59d5ab207f8c59d5ab20 /* Types.h */, + FFFD3bdfb3007ff03bdfb300 /* Cloth.h */, + FFFD3bdfb3687ff03bdfb368 /* Fabric.h */, + FFFD3bdfb3d07ff03bdfb3d0 /* Factory.h */, + FFFD3bdfb4387ff03bdfb438 /* PhaseConfig.h */, + FFFD3bdfb4a07ff03bdfb4a0 /* Range.h */, + FFFD3bdfb5087ff03bdfb508 /* Solver.h */, + FFFD3bdfb5707ff03bdfb570 /* Types.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB59d4cca87f8c59d4cca8 /* src */ = { + FFFB3bdfa0787ff03bdfa078 /* src */ = { isa = PBXGroup; children = ( - FFFD5a823a007f8c5a823a00 /* Allocator.h */, - FFFD5a823a687f8c5a823a68 /* Array.h */, - FFFD5a823ad07f8c5a823ad0 /* BoundingBox.h */, - FFFD5a823b387f8c5a823b38 /* ClothBase.h */, - FFFD5a823ba07f8c5a823ba0 /* ClothImpl.h */, - FFFD5a823c087f8c5a823c08 /* IndexPair.h */, - FFFD5a823c707f8c5a823c70 /* IterationState.h */, - FFFD5a823cd87f8c5a823cd8 /* MovingAverage.h */, - FFFD5a823d407f8c5a823d40 /* PointInterpolator.h */, - FFFD5a823da87f8c5a823da8 /* Simd.h */, - FFFD5a823e107f8c5a823e10 /* Simd4f.h */, - FFFD5a823e787f8c5a823e78 /* Simd4i.h */, - FFFD5a823ee07f8c5a823ee0 /* SimdTypes.h */, - FFFD5a823f487f8c5a823f48 /* StackAllocator.h */, - FFFD5a823fb07f8c5a823fb0 /* SwCloth.h */, - FFFD5a8240187f8c5a824018 /* SwClothData.h */, - FFFD5a8240807f8c5a824080 /* SwCollision.h */, - FFFD5a8240e87f8c5a8240e8 /* SwCollisionHelpers.h */, - FFFD5a8241507f8c5a824150 /* SwFabric.h */, - FFFD5a8241b87f8c5a8241b8 /* SwFactory.h */, - FFFD5a8242207f8c5a824220 /* SwInterCollision.h */, - FFFD5a8242887f8c5a824288 /* SwSelfCollision.h */, - FFFD5a8242f07f8c5a8242f0 /* SwSolver.h */, - FFFD5a8243587f8c5a824358 /* SwSolverKernel.h */, - FFFD5a8243c07f8c5a8243c0 /* TripletScheduler.h */, - FFFD5a8244287f8c5a824428 /* Vec4T.h */, - FFFD5a8244907f8c5a824490 /* Allocator.cpp */, - FFFD5a8244f87f8c5a8244f8 /* Factory.cpp */, - FFFD5a8245607f8c5a824560 /* PhaseConfig.cpp */, - FFFD5a8245c87f8c5a8245c8 /* SwCloth.cpp */, - FFFD5a8246307f8c5a824630 /* SwClothData.cpp */, - FFFD5a8246987f8c5a824698 /* SwCollision.cpp */, - FFFD5a8247007f8c5a824700 /* SwFabric.cpp */, - FFFD5a8247687f8c5a824768 /* SwFactory.cpp */, - FFFD5a8247d07f8c5a8247d0 /* SwInterCollision.cpp */, - FFFD5a8248387f8c5a824838 /* SwSelfCollision.cpp */, - FFFD5a8248a07f8c5a8248a0 /* SwSolver.cpp */, - FFFD5a8249087f8c5a824908 /* SwSolverKernel.cpp */, - FFFD5a8249707f8c5a824970 /* TripletScheduler.cpp */, + FFFD3b045c007ff03b045c00 /* Allocator.h */, + FFFD3b045c687ff03b045c68 /* Array.h */, + FFFD3b045cd07ff03b045cd0 /* BoundingBox.h */, + FFFD3b045d387ff03b045d38 /* ClothBase.h */, + FFFD3b045da07ff03b045da0 /* ClothImpl.h */, + FFFD3b045e087ff03b045e08 /* IndexPair.h */, + FFFD3b045e707ff03b045e70 /* IterationState.h */, + FFFD3b045ed87ff03b045ed8 /* MovingAverage.h */, + FFFD3b045f407ff03b045f40 /* PointInterpolator.h */, + FFFD3b045fa87ff03b045fa8 /* Simd.h */, + FFFD3b0460107ff03b046010 /* Simd4f.h */, + FFFD3b0460787ff03b046078 /* Simd4i.h */, + FFFD3b0460e07ff03b0460e0 /* SimdTypes.h */, + FFFD3b0461487ff03b046148 /* StackAllocator.h */, + FFFD3b0461b07ff03b0461b0 /* SwCloth.h */, + FFFD3b0462187ff03b046218 /* SwClothData.h */, + FFFD3b0462807ff03b046280 /* SwCollision.h */, + FFFD3b0462e87ff03b0462e8 /* SwCollisionHelpers.h */, + FFFD3b0463507ff03b046350 /* SwFabric.h */, + FFFD3b0463b87ff03b0463b8 /* SwFactory.h */, + FFFD3b0464207ff03b046420 /* SwInterCollision.h */, + FFFD3b0464887ff03b046488 /* SwSelfCollision.h */, + FFFD3b0464f07ff03b0464f0 /* SwSolver.h */, + FFFD3b0465587ff03b046558 /* SwSolverKernel.h */, + FFFD3b0465c07ff03b0465c0 /* TripletScheduler.h */, + FFFD3b0466287ff03b046628 /* Vec4T.h */, + FFFD3b0466907ff03b046690 /* Allocator.cpp */, + FFFD3b0466f87ff03b0466f8 /* Factory.cpp */, + FFFD3b0467607ff03b046760 /* PhaseConfig.cpp */, + FFFD3b0467c87ff03b0467c8 /* SwCloth.cpp */, + FFFD3b0468307ff03b046830 /* SwClothData.cpp */, + FFFD3b0468987ff03b046898 /* SwCollision.cpp */, + FFFD3b0469007ff03b046900 /* SwFabric.cpp */, + FFFD3b0469687ff03b046968 /* SwFactory.cpp */, + FFFD3b0469d07ff03b0469d0 /* SwInterCollision.cpp */, + FFFD3b046a387ff03b046a38 /* SwSelfCollision.cpp */, + FFFD3b046aa07ff03b046aa0 /* SwSolver.cpp */, + FFFD3b046b087ff03b046b08 /* SwSolverKernel.cpp */, + FFFD3b046b707ff03b046b70 /* TripletScheduler.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5992d3c07f8c5992d3c0 /* LowLevelParticles */ = { + FFFB3ba23a707ff03ba23a70 /* LowLevelParticles */ = { isa = PBXGroup; children = ( - FFFB599641707f8c59964170 /* include */, - FFFB599641987f8c59964198 /* src */, + FFFB3ba1b0a07ff03ba1b0a0 /* include */, + FFFB3ba1b0c87ff03ba1b0c8 /* src */, ); name = "LowLevelParticles"; sourceTree = "<group>"; }; - FFFB599641707f8c59964170 /* include */ = { + FFFB3ba1b0a07ff03ba1b0a0 /* include */ = { isa = PBXGroup; children = ( - FFFD591968007f8c59196800 /* PtBodyTransformVault.h */, - FFFD591968687f8c59196868 /* PtContext.h */, - FFFD591968d07f8c591968d0 /* PtGridCellVector.h */, - FFFD591969387f8c59196938 /* PtParticle.h */, - FFFD591969a07f8c591969a0 /* PtParticleContactManagerStream.h */, - FFFD59196a087f8c59196a08 /* PtParticleData.h */, - FFFD59196a707f8c59196a70 /* PtParticleShape.h */, - FFFD59196ad87f8c59196ad8 /* PtParticleSystemCore.h */, - FFFD59196b407f8c59196b40 /* PtParticleSystemFlags.h */, - FFFD59196ba87f8c59196ba8 /* PtParticleSystemSim.h */, + FFFD3c1920007ff03c192000 /* PtBodyTransformVault.h */, + FFFD3c1920687ff03c192068 /* PtContext.h */, + FFFD3c1920d07ff03c1920d0 /* PtGridCellVector.h */, + FFFD3c1921387ff03c192138 /* PtParticle.h */, + FFFD3c1921a07ff03c1921a0 /* PtParticleContactManagerStream.h */, + FFFD3c1922087ff03c192208 /* PtParticleData.h */, + FFFD3c1922707ff03c192270 /* PtParticleShape.h */, + FFFD3c1922d87ff03c1922d8 /* PtParticleSystemCore.h */, + FFFD3c1923407ff03c192340 /* PtParticleSystemFlags.h */, + FFFD3c1923a87ff03c1923a8 /* PtParticleSystemSim.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB599641987f8c59964198 /* src */ = { + FFFB3ba1b0c87ff03ba1b0c8 /* src */ = { isa = PBXGroup; children = ( - FFFD5919c4007f8c5919c400 /* PtBatcher.h */, - FFFD5919c4687f8c5919c468 /* PtCollision.h */, - FFFD5919c4d07f8c5919c4d0 /* PtCollisionData.h */, - FFFD5919c5387f8c5919c538 /* PtCollisionHelper.h */, - FFFD5919c5a07f8c5919c5a0 /* PtCollisionMethods.h */, - FFFD5919c6087f8c5919c608 /* PtCollisionParameters.h */, - FFFD5919c6707f8c5919c670 /* PtConfig.h */, - FFFD5919c6d87f8c5919c6d8 /* PtConstants.h */, - FFFD5919c7407f8c5919c740 /* PtContextCpu.h */, - FFFD5919c7a87f8c5919c7a8 /* PtDynamicHelper.h */, - FFFD5919c8107f8c5919c810 /* PtDynamics.h */, - FFFD5919c8787f8c5919c878 /* PtDynamicsKernels.h */, - FFFD5919c8e07f8c5919c8e0 /* PtDynamicsParameters.h */, - FFFD5919c9487f8c5919c948 /* PtDynamicsTempBuffers.h */, - FFFD5919c9b07f8c5919c9b0 /* PtHeightFieldAabbTest.h */, - FFFD5919ca187f8c5919ca18 /* PtPacketSections.h */, - FFFD5919ca807f8c5919ca80 /* PtParticleCell.h */, - FFFD5919cae87f8c5919cae8 /* PtParticleOpcodeCache.h */, - FFFD5919cb507f8c5919cb50 /* PtParticleShapeCpu.h */, - FFFD5919cbb87f8c5919cbb8 /* PtParticleSystemSimCpu.h */, - FFFD5919cc207f8c5919cc20 /* PtSpatialHash.h */, - FFFD5919cc887f8c5919cc88 /* PtSpatialHashHelper.h */, - FFFD5919ccf07f8c5919ccf0 /* PtTwoWayData.h */, - FFFD5919cd587f8c5919cd58 /* PtBatcher.cpp */, - FFFD5919cdc07f8c5919cdc0 /* PtBodyTransformVault.cpp */, - FFFD5919ce287f8c5919ce28 /* PtCollision.cpp */, - FFFD5919ce907f8c5919ce90 /* PtCollisionBox.cpp */, - FFFD5919cef87f8c5919cef8 /* PtCollisionCapsule.cpp */, - FFFD5919cf607f8c5919cf60 /* PtCollisionConvex.cpp */, - FFFD5919cfc87f8c5919cfc8 /* PtCollisionMesh.cpp */, - FFFD5919d0307f8c5919d030 /* PtCollisionPlane.cpp */, - FFFD5919d0987f8c5919d098 /* PtCollisionSphere.cpp */, - FFFD5919d1007f8c5919d100 /* PtContextCpu.cpp */, - FFFD5919d1687f8c5919d168 /* PtDynamics.cpp */, - FFFD5919d1d07f8c5919d1d0 /* PtParticleData.cpp */, - FFFD5919d2387f8c5919d238 /* PtParticleShapeCpu.cpp */, - FFFD5919d2a07f8c5919d2a0 /* PtParticleSystemSimCpu.cpp */, - FFFD5919d3087f8c5919d308 /* PtSpatialHash.cpp */, - FFFD5919d3707f8c5919d370 /* PtSpatialLocalHash.cpp */, + FFFD3c19e4007ff03c19e400 /* PtBatcher.h */, + FFFD3c19e4687ff03c19e468 /* PtCollision.h */, + FFFD3c19e4d07ff03c19e4d0 /* PtCollisionData.h */, + FFFD3c19e5387ff03c19e538 /* PtCollisionHelper.h */, + FFFD3c19e5a07ff03c19e5a0 /* PtCollisionMethods.h */, + FFFD3c19e6087ff03c19e608 /* PtCollisionParameters.h */, + FFFD3c19e6707ff03c19e670 /* PtConfig.h */, + FFFD3c19e6d87ff03c19e6d8 /* PtConstants.h */, + FFFD3c19e7407ff03c19e740 /* PtContextCpu.h */, + FFFD3c19e7a87ff03c19e7a8 /* PtDynamicHelper.h */, + FFFD3c19e8107ff03c19e810 /* PtDynamics.h */, + FFFD3c19e8787ff03c19e878 /* PtDynamicsKernels.h */, + FFFD3c19e8e07ff03c19e8e0 /* PtDynamicsParameters.h */, + FFFD3c19e9487ff03c19e948 /* PtDynamicsTempBuffers.h */, + FFFD3c19e9b07ff03c19e9b0 /* PtHeightFieldAabbTest.h */, + FFFD3c19ea187ff03c19ea18 /* PtPacketSections.h */, + FFFD3c19ea807ff03c19ea80 /* PtParticleCell.h */, + FFFD3c19eae87ff03c19eae8 /* PtParticleOpcodeCache.h */, + FFFD3c19eb507ff03c19eb50 /* PtParticleShapeCpu.h */, + FFFD3c19ebb87ff03c19ebb8 /* PtParticleSystemSimCpu.h */, + FFFD3c19ec207ff03c19ec20 /* PtSpatialHash.h */, + FFFD3c19ec887ff03c19ec88 /* PtSpatialHashHelper.h */, + FFFD3c19ecf07ff03c19ecf0 /* PtTwoWayData.h */, + FFFD3c19ed587ff03c19ed58 /* PtBatcher.cpp */, + FFFD3c19edc07ff03c19edc0 /* PtBodyTransformVault.cpp */, + FFFD3c19ee287ff03c19ee28 /* PtCollision.cpp */, + FFFD3c19ee907ff03c19ee90 /* PtCollisionBox.cpp */, + FFFD3c19eef87ff03c19eef8 /* PtCollisionCapsule.cpp */, + FFFD3c19ef607ff03c19ef60 /* PtCollisionConvex.cpp */, + FFFD3c19efc87ff03c19efc8 /* PtCollisionMesh.cpp */, + FFFD3c19f0307ff03c19f030 /* PtCollisionPlane.cpp */, + FFFD3c19f0987ff03c19f098 /* PtCollisionSphere.cpp */, + FFFD3c19f1007ff03c19f100 /* PtContextCpu.cpp */, + FFFD3c19f1687ff03c19f168 /* PtDynamics.cpp */, + FFFD3c19f1d07ff03c19f1d0 /* PtParticleData.cpp */, + FFFD3c19f2387ff03c19f238 /* PtParticleShapeCpu.cpp */, + FFFD3c19f2a07ff03c19f2a0 /* PtParticleSystemSimCpu.cpp */, + FFFD3c19f3087ff03c19f308 /* PtSpatialHash.cpp */, + FFFD3c19f3707ff03c19f370 /* PtSpatialLocalHash.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB59d66b807f8c59d66b80 /* PxTask */ = { + FFFB3bf5a4307ff03bf5a430 /* PxTask */ = { isa = PBXGroup; children = ( - FFFB59d66ea07f8c59d66ea0 /* include */, - FFFB59d66ec87f8c59d66ec8 /* src */, + FFFB3bf31b007ff03bf31b00 /* include */, + FFFB3bf31b287ff03bf31b28 /* src */, ); name = "PxTask"; sourceTree = "<group>"; }; - FFFB59d66ea07f8c59d66ea0 /* include */ = { + FFFB3bf31b007ff03bf31b00 /* include */ = { isa = PBXGroup; children = ( - FFFD59d6c8407f8c59d6c840 /* PxCpuDispatcher.h */, - FFFD59d6c8a87f8c59d6c8a8 /* PxGpuDispatcher.h */, - FFFD59d6c9107f8c59d6c910 /* PxGpuTask.h */, - FFFD59d6c9787f8c59d6c978 /* PxTask.h */, - FFFD59d6c9e07f8c59d6c9e0 /* PxTaskDefine.h */, - FFFD59d6ca487f8c59d6ca48 /* PxTaskManager.h */, + FFFD3bf30c007ff03bf30c00 /* PxCpuDispatcher.h */, + FFFD3bf30c687ff03bf30c68 /* PxGpuDispatcher.h */, + FFFD3bf30cd07ff03bf30cd0 /* PxGpuTask.h */, + FFFD3bf30d387ff03bf30d38 /* PxTask.h */, + FFFD3bf30da07ff03bf30da0 /* PxTaskDefine.h */, + FFFD3bf30e087ff03bf30e08 /* PxTaskManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB59d66ec87f8c59d66ec8 /* src */ = { + FFFB3bf31b287ff03bf31b28 /* src */ = { isa = PBXGroup; children = ( - FFFD59d64d107f8c59d64d10 /* src/TaskManager.cpp */, + FFFD3bf32b807ff03bf32b80 /* src/TaskManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB5b8199707f8c5b819970 /* PsFastXml */ = { + FFFB3b98b2007ff03b98b200 /* PsFastXml */ = { isa = PBXGroup; children = ( - FFFB5b817c607f8c5b817c60 /* include */, - FFFB5b817c887f8c5b817c88 /* src */, + FFFB3b98b7107ff03b98b710 /* include */, + FFFB3b98b7387ff03b98b738 /* src */, ); name = "PsFastXml"; sourceTree = "<group>"; }; - FFFB5b817c607f8c5b817c60 /* include */ = { + FFFB3b98b7107ff03b98b710 /* include */ = { isa = PBXGroup; children = ( - FFFD5b817df07f8c5b817df0 /* PsFastXml.h */, + FFFD3b98b8a07ff03b98b8a0 /* PsFastXml.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB5b817c887f8c5b817c88 /* src */ = { + FFFB3b98b7387ff03b98b738 /* src */ = { isa = PBXGroup; children = ( - FFFD5b817ef07f8c5b817ef0 /* PsFastXml.cpp */, + FFFD3b98b9a07ff03b98b9a0 /* PsFastXml.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; @@ -4995,61 +4995,61 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - FFFA5b81c8207f8c5b81c820 /* PhysX */ = { + FFFA3b9796607ff03b979660 /* PhysX */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b81c8207f8c5b81c820 /* Build configuration list for PBXNativeTarget "PhysX" */; + buildConfigurationList = FFF63b9796607ff03b979660 /* Build configuration list for PBXNativeTarget "PhysX" */; buildPhases = ( - FFF25b81c8207f8c5b81c820, - FFF85b81c8207f8c5b81c820, - FFFC5b81c8207f8c5b81c820, + FFF23b9796607ff03b979660, + FFF83b9796607ff03b979660, + FFFC3b9796607ff03b979660, ); buildRules = ( ); dependencies = ( - FFF45b8272b07f8c5b8272b0, /* LowLevel */ - FFF45b827ba07f8c5b827ba0, /* LowLevelAABB */ - FFF45b8244d07f8c5b8244d0, /* LowLevelCloth */ - FFF45b8244707f8c5b824470, /* LowLevelDynamics */ - FFF45b8245307f8c5b824530, /* LowLevelParticles */ - FFF45b8272507f8c5b827250, /* PhysXCommon */ - FFF45b81cb407f8c5b81cb40, /* PxFoundation */ - FFF45b81c7f07f8c5b81c7f0, /* PxPvdSDK */ - FFF45b8240b07f8c5b8240b0, /* PxTask */ - FFF45b8240207f8c5b824020, /* SceneQuery */ - FFF45b8240807f8c5b824080, /* SimulationController */ + FFF43b9960e07ff03b9960e0, /* LowLevel */ + FFF43b9929207ff03b992920, /* LowLevelAABB */ + FFF43b992e607ff03b992e60, /* LowLevelCloth */ + FFF43b9929807ff03b992980, /* LowLevelDynamics */ + FFF43b992ec07ff03b992ec0, /* LowLevelParticles */ + FFF43b992b107ff03b992b10, /* PhysXCommon */ + FFF43b9799d07ff03b9799d0, /* PxFoundation */ + FFF43b9798707ff03b979870, /* PxPvdSDK */ + FFF43b9966f07ff03b9966f0, /* PxTask */ + FFF43b992f207ff03b992f20, /* SceneQuery */ + FFF43b9966c07ff03b9966c0, /* SimulationController */ ); name = "PhysX"; productName = "PhysX"; - productReference = FFFD5b81c8207f8c5b81c820 /* PhysX */; + productReference = FFFD3b9796607ff03b979660 /* PhysX */; productType = "com.apple.product-type.library.static"; }; - FFFA5b8241407f8c5b824140 /* PhysXCharacterKinematic */ = { + FFFA3b992b807ff03b992b80 /* PhysXCharacterKinematic */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b8241407f8c5b824140 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; + buildConfigurationList = FFF63b992b807ff03b992b80 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; buildPhases = ( - FFF25b8241407f8c5b824140, - FFF85b8241407f8c5b824140, - FFFC5b8241407f8c5b824140, + FFF23b992b807ff03b992b80, + FFF83b992b807ff03b992b80, + FFFC3b992b807ff03b992b80, ); buildRules = ( ); dependencies = ( - FFF45b8294d07f8c5b8294d0, /* PhysXCommon */ - FFF45b82aed07f8c5b82aed0, /* PhysXExtensions */ - FFF45b82a0707f8c5b82a070, /* PxFoundation */ + FFF43b993cf07ff03b993cf0, /* PhysXCommon */ + FFF43b9997907ff03b999790, /* PhysXExtensions */ + FFF43b997e907ff03b997e90, /* PxFoundation */ ); name = "PhysXCharacterKinematic"; productName = "PhysXCharacterKinematic"; - productReference = FFFD5b8241407f8c5b824140 /* PhysXCharacterKinematic */; + productReference = FFFD3b992b807ff03b992b80 /* PhysXCharacterKinematic */; productType = "com.apple.product-type.library.static"; }; - FFFA5b8256907f8c5b825690 /* PhysXVehicle */ = { + FFFA3b993f207ff03b993f20 /* PhysXVehicle */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b8256907f8c5b825690 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; + buildConfigurationList = FFF63b993f207ff03b993f20 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; buildPhases = ( - FFF25b8256907f8c5b825690, - FFF85b8256907f8c5b825690, - FFFC5b8256907f8c5b825690, + FFF23b993f207ff03b993f20, + FFF83b993f207ff03b993f20, + FFFC3b993f207ff03b993f20, ); buildRules = ( ); @@ -5057,34 +5057,34 @@ ); name = "PhysXVehicle"; productName = "PhysXVehicle"; - productReference = FFFD5b8256907f8c5b825690 /* PhysXVehicle */; + productReference = FFFD3b993f207ff03b993f20 /* PhysXVehicle */; productType = "com.apple.product-type.library.static"; }; - FFFA5b836b207f8c5b836b20 /* PhysXExtensions */ = { + FFFA3b9a54207ff03b9a5420 /* PhysXExtensions */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b836b207f8c5b836b20 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; + buildConfigurationList = FFF63b9a54207ff03b9a5420 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; buildPhases = ( - FFF25b836b207f8c5b836b20, - FFF85b836b207f8c5b836b20, - FFFC5b836b207f8c5b836b20, + FFF23b9a54207ff03b9a5420, + FFF83b9a54207ff03b9a5420, + FFFC3b9a54207ff03b9a5420, ); buildRules = ( ); dependencies = ( - FFF45b8362207f8c5b836220, /* PsFastXml */ + FFF43b9a34507ff03b9a3450, /* PsFastXml */ ); name = "PhysXExtensions"; productName = "PhysXExtensions"; - productReference = FFFD5b836b207f8c5b836b20 /* PhysXExtensions */; + productReference = FFFD3b9a54207ff03b9a5420 /* PhysXExtensions */; productType = "com.apple.product-type.library.static"; }; - FFFA5b847c107f8c5b847c10 /* SceneQuery */ = { + FFFA3b9b66107ff03b9b6610 /* SceneQuery */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b847c107f8c5b847c10 /* Build configuration list for PBXNativeTarget "SceneQuery" */; + buildConfigurationList = FFF63b9b66107ff03b9b6610 /* Build configuration list for PBXNativeTarget "SceneQuery" */; buildPhases = ( - FFF25b847c107f8c5b847c10, - FFF85b847c107f8c5b847c10, - FFFC5b847c107f8c5b847c10, + FFF23b9b66107ff03b9b6610, + FFF83b9b66107ff03b9b6610, + FFFC3b9b66107ff03b9b6610, ); buildRules = ( ); @@ -5092,16 +5092,16 @@ ); name = "SceneQuery"; productName = "SceneQuery"; - productReference = FFFD5b847c107f8c5b847c10 /* SceneQuery */; + productReference = FFFD3b9b66107ff03b9b6610 /* SceneQuery */; productType = "com.apple.product-type.library.static"; }; - FFFA5b84c1707f8c5b84c170 /* SimulationController */ = { + FFFA3b951b307ff03b951b30 /* SimulationController */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b84c1707f8c5b84c170 /* Build configuration list for PBXNativeTarget "SimulationController" */; + buildConfigurationList = FFF63b951b307ff03b951b30 /* Build configuration list for PBXNativeTarget "SimulationController" */; buildPhases = ( - FFF25b84c1707f8c5b84c170, - FFF85b84c1707f8c5b84c170, - FFFC5b84c1707f8c5b84c170, + FFF23b951b307ff03b951b30, + FFF83b951b307ff03b951b30, + FFFC3b951b307ff03b951b30, ); buildRules = ( ); @@ -5109,54 +5109,54 @@ ); name = "SimulationController"; productName = "SimulationController"; - productReference = FFFD5b84c1707f8c5b84c170 /* SimulationController */; + productReference = FFFD3b951b307ff03b951b30 /* SimulationController */; productType = "com.apple.product-type.library.static"; }; - FFFA5b8507d07f8c5b8507d0 /* PhysXCooking */ = { + FFFA3dbe48807ff03dbe4880 /* PhysXCooking */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b8507d07f8c5b8507d0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; + buildConfigurationList = FFF63dbe48807ff03dbe4880 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; buildPhases = ( - FFF25b8507d07f8c5b8507d0, - FFF85b8507d07f8c5b8507d0, - FFFC5b8507d07f8c5b8507d0, + FFF23dbe48807ff03dbe4880, + FFF83dbe48807ff03dbe4880, + FFFC3dbe48807ff03dbe4880, ); buildRules = ( ); dependencies = ( - FFF45b85b3f07f8c5b85b3f0, /* PhysXCommon */ - FFF45b8563807f8c5b856380, /* PhysXExtensions */ - FFF45b8568607f8c5b856860, /* PxFoundation */ + FFF43dbe86907ff03dbe8690, /* PhysXCommon */ + FFF43dbe4f507ff03dbe4f50, /* PhysXExtensions */ + FFF43dbe42407ff03dbe4240, /* PxFoundation */ ); name = "PhysXCooking"; productName = "PhysXCooking"; - productReference = FFFD5b8507d07f8c5b8507d0 /* PhysXCooking */; + productReference = FFFD3dbe48807ff03dbe4880 /* PhysXCooking */; productType = "com.apple.product-type.library.static"; }; - FFFA59c183f07f8c59c183f0 /* PhysXCommon */ = { + FFFA3ba4add07ff03ba4add0 /* PhysXCommon */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF659c183f07f8c59c183f0 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; + buildConfigurationList = FFF63ba4add07ff03ba4add0 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; buildPhases = ( - FFF259c183f07f8c59c183f0, - FFF859c183f07f8c59c183f0, - FFFC59c183f07f8c59c183f0, + FFF23ba4add07ff03ba4add0, + FFF83ba4add07ff03ba4add0, + FFFC3ba4add07ff03ba4add0, ); buildRules = ( ); dependencies = ( - FFF459c0ef507f8c59c0ef50, /* PxFoundation */ + FFF43ba467c07ff03ba467c0, /* PxFoundation */ ); name = "PhysXCommon"; productName = "PhysXCommon"; - productReference = FFFD59c183f07f8c59c183f0 /* PhysXCommon */; + productReference = FFFD3ba4add07ff03ba4add0 /* PhysXCommon */; productType = "com.apple.product-type.library.static"; }; - FFFA59c114307f8c59c11430 /* PxFoundation */ = { + FFFA3ba5cc607ff03ba5cc60 /* PxFoundation */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF659c114307f8c59c11430 /* Build configuration list for PBXNativeTarget "PxFoundation" */; + buildConfigurationList = FFF63ba5cc607ff03ba5cc60 /* Build configuration list for PBXNativeTarget "PxFoundation" */; buildPhases = ( - FFF259c114307f8c59c11430, - FFF859c114307f8c59c11430, - FFFC59c114307f8c59c11430, + FFF23ba5cc607ff03ba5cc60, + FFF83ba5cc607ff03ba5cc60, + FFFC3ba5cc607ff03ba5cc60, ); buildRules = ( ); @@ -5164,34 +5164,34 @@ ); name = "PxFoundation"; productName = "PxFoundation"; - productReference = FFFD59c114307f8c59c11430 /* PxFoundation */; + productReference = FFFD3ba5cc607ff03ba5cc60 /* PxFoundation */; productType = "com.apple.product-type.library.static"; }; - FFFA59944d307f8c59944d30 /* PxPvdSDK */ = { + FFFA3b9d39307ff03b9d3930 /* PxPvdSDK */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF659944d307f8c59944d30 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; + buildConfigurationList = FFF63b9d39307ff03b9d3930 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; buildPhases = ( - FFF259944d307f8c59944d30, - FFF859944d307f8c59944d30, - FFFC59944d307f8c59944d30, + FFF23b9d39307ff03b9d3930, + FFF83b9d39307ff03b9d3930, + FFFC3b9d39307ff03b9d3930, ); buildRules = ( ); dependencies = ( - FFF4599408d07f8c599408d0, /* PxFoundation */ + FFF43b9c77107ff03b9c7710, /* PxFoundation */ ); name = "PxPvdSDK"; productName = "PxPvdSDK"; - productReference = FFFD59944d307f8c59944d30 /* PxPvdSDK */; + productReference = FFFD3b9d39307ff03b9d3930 /* PxPvdSDK */; productType = "com.apple.product-type.library.static"; }; - FFFA59d336a07f8c59d336a0 /* LowLevel */ = { + FFFA3bf0b4507ff03bf0b450 /* LowLevel */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF659d336a07f8c59d336a0 /* Build configuration list for PBXNativeTarget "LowLevel" */; + buildConfigurationList = FFF63bf0b4507ff03bf0b450 /* Build configuration list for PBXNativeTarget "LowLevel" */; buildPhases = ( - FFF259d336a07f8c59d336a0, - FFF859d336a07f8c59d336a0, - FFFC59d336a07f8c59d336a0, + FFF23bf0b4507ff03bf0b450, + FFF83bf0b4507ff03bf0b450, + FFFC3bf0b4507ff03bf0b450, ); buildRules = ( ); @@ -5199,16 +5199,16 @@ ); name = "LowLevel"; productName = "LowLevel"; - productReference = FFFD59d336a07f8c59d336a0 /* LowLevel */; + productReference = FFFD3bf0b4507ff03bf0b450 /* LowLevel */; productType = "com.apple.product-type.library.static"; }; - FFFA5b808e607f8c5b808e60 /* LowLevelAABB */ = { + FFFA3b971cd07ff03b971cd0 /* LowLevelAABB */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b808e607f8c5b808e60 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; + buildConfigurationList = FFF63b971cd07ff03b971cd0 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; buildPhases = ( - FFF25b808e607f8c5b808e60, - FFF85b808e607f8c5b808e60, - FFFC5b808e607f8c5b808e60, + FFF23b971cd07ff03b971cd0, + FFF83b971cd07ff03b971cd0, + FFFC3b971cd07ff03b971cd0, ); buildRules = ( ); @@ -5216,16 +5216,16 @@ ); name = "LowLevelAABB"; productName = "LowLevelAABB"; - productReference = FFFD5b808e607f8c5b808e60 /* LowLevelAABB */; + productReference = FFFD3b971cd07ff03b971cd0 /* LowLevelAABB */; productType = "com.apple.product-type.library.static"; }; - FFFA59c249907f8c59c24990 /* LowLevelDynamics */ = { + FFFA3ba330407ff03ba33040 /* LowLevelDynamics */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF659c249907f8c59c24990 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; + buildConfigurationList = FFF63ba330407ff03ba33040 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; buildPhases = ( - FFF259c249907f8c59c24990, - FFF859c249907f8c59c24990, - FFFC59c249907f8c59c24990, + FFF23ba330407ff03ba33040, + FFF83ba330407ff03ba33040, + FFFC3ba330407ff03ba33040, ); buildRules = ( ); @@ -5233,16 +5233,16 @@ ); name = "LowLevelDynamics"; productName = "LowLevelDynamics"; - productReference = FFFD59c249907f8c59c24990 /* LowLevelDynamics */; + productReference = FFFD3ba330407ff03ba33040 /* LowLevelDynamics */; productType = "com.apple.product-type.library.static"; }; - FFFA59d4aa007f8c59d4aa00 /* LowLevelCloth */ = { + FFFA3bdf7df07ff03bdf7df0 /* LowLevelCloth */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF659d4aa007f8c59d4aa00 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; + buildConfigurationList = FFF63bdf7df07ff03bdf7df0 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; buildPhases = ( - FFF259d4aa007f8c59d4aa00, - FFF859d4aa007f8c59d4aa00, - FFFC59d4aa007f8c59d4aa00, + FFF23bdf7df07ff03bdf7df0, + FFF83bdf7df07ff03bdf7df0, + FFFC3bdf7df07ff03bdf7df0, ); buildRules = ( ); @@ -5250,16 +5250,16 @@ ); name = "LowLevelCloth"; productName = "LowLevelCloth"; - productReference = FFFD59d4aa007f8c59d4aa00 /* LowLevelCloth */; + productReference = FFFD3bdf7df07ff03bdf7df0 /* LowLevelCloth */; productType = "com.apple.product-type.library.static"; }; - FFFA5992d3c07f8c5992d3c0 /* LowLevelParticles */ = { + FFFA3ba23a707ff03ba23a70 /* LowLevelParticles */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65992d3c07f8c5992d3c0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; + buildConfigurationList = FFF63ba23a707ff03ba23a70 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; buildPhases = ( - FFF25992d3c07f8c5992d3c0, - FFF85992d3c07f8c5992d3c0, - FFFC5992d3c07f8c5992d3c0, + FFF23ba23a707ff03ba23a70, + FFF83ba23a707ff03ba23a70, + FFFC3ba23a707ff03ba23a70, ); buildRules = ( ); @@ -5267,16 +5267,16 @@ ); name = "LowLevelParticles"; productName = "LowLevelParticles"; - productReference = FFFD5992d3c07f8c5992d3c0 /* LowLevelParticles */; + productReference = FFFD3ba23a707ff03ba23a70 /* LowLevelParticles */; productType = "com.apple.product-type.library.static"; }; - FFFA59d66b807f8c59d66b80 /* PxTask */ = { + FFFA3bf5a4307ff03bf5a430 /* PxTask */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF659d66b807f8c59d66b80 /* Build configuration list for PBXNativeTarget "PxTask" */; + buildConfigurationList = FFF63bf5a4307ff03bf5a430 /* Build configuration list for PBXNativeTarget "PxTask" */; buildPhases = ( - FFF259d66b807f8c59d66b80, - FFF859d66b807f8c59d66b80, - FFFC59d66b807f8c59d66b80, + FFF23bf5a4307ff03bf5a430, + FFF83bf5a4307ff03bf5a430, + FFFC3bf5a4307ff03bf5a430, ); buildRules = ( ); @@ -5284,16 +5284,16 @@ ); name = "PxTask"; productName = "PxTask"; - productReference = FFFD59d66b807f8c59d66b80 /* PxTask */; + productReference = FFFD3bf5a4307ff03bf5a430 /* PxTask */; productType = "com.apple.product-type.library.static"; }; - FFFA5b8199707f8c5b819970 /* PsFastXml */ = { + FFFA3b98b2007ff03b98b200 /* PsFastXml */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF65b8199707f8c5b819970 /* Build configuration list for PBXNativeTarget "PsFastXml" */; + buildConfigurationList = FFF63b98b2007ff03b98b200 /* Build configuration list for PBXNativeTarget "PsFastXml" */; buildPhases = ( - FFF25b8199707f8c5b819970, - FFF85b8199707f8c5b819970, - FFFC5b8199707f8c5b819970, + FFF23b98b2007ff03b98b200, + FFF83b98b2007ff03b98b200, + FFFC3b98b2007ff03b98b200, ); buildRules = ( ); @@ -5301,213 +5301,213 @@ ); name = "PsFastXml"; productName = "PsFastXml"; - productReference = FFFD5b8199707f8c5b819970 /* PsFastXml */; + productReference = FFFD3b98b2007ff03b98b200 /* PsFastXml */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin XCConfigurationList section */ - FFF65b81c8207f8c5b81c820 = { + FFF63b9796607ff03b979660 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75b054e007f8c5b054e00, - FFF75b0554f07f8c5b0554f0, - FFF75b055be07f8c5b055be0, - FFF75b0562d07f8c5b0562d0, + FFF73c1c78007ff03c1c7800, + FFF73c1c7ef07ff03c1c7ef0, + FFF73c1c85e07ff03c1c85e0, + FFF73c1c8cd07ff03c1c8cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF65b8241407f8c5b824140 = { + FFF63b992b807ff03b992b80 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75b056a007f8c5b056a00, - FFF75b0570f07f8c5b0570f0, - FFF75b0577e07f8c5b0577e0, - FFF75b057ed07f8c5b057ed0, + FFF73c1c94007ff03c1c9400, + FFF73c1c9af07ff03c1c9af0, + FFF73c1ca1e07ff03c1ca1e0, + FFF73c1ca8d07ff03c1ca8d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65b8256907f8c5b825690 = { + FFF63b993f207ff03b993f20 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75b0586007f8c5b058600, - FFF75b058cf07f8c5b058cf0, - FFF75b0593e07f8c5b0593e0, - FFF75b059ad07f8c5b059ad0, + FFF73c1cb0007ff03c1cb000, + FFF73c1cb6f07ff03c1cb6f0, + FFF73c1cbde07ff03c1cbde0, + FFF73c1cc4d07ff03c1cc4d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65b836b207f8c5b836b20 = { + FFF63b9a54207ff03b9a5420 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75b05a2007f8c5b05a200, - FFF75b05a8f07f8c5b05a8f0, - FFF75b05afe07f8c5b05afe0, - FFF75b05b6d07f8c5b05b6d0, + FFF73c1ccc007ff03c1ccc00, + FFF73c1cd2f07ff03c1cd2f0, + FFF73c1cd9e07ff03c1cd9e0, + FFF73c1ce0d07ff03c1ce0d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65b847c107f8c5b847c10 = { + FFF63b9b66107ff03b9b6610 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75b05be007f8c5b05be00, - FFF75b05c4f07f8c5b05c4f0, - FFF75b05cbe07f8c5b05cbe0, - FFF75b05d2d07f8c5b05d2d0, + FFF73c1ce8007ff03c1ce800, + FFF73c1ceef07ff03c1ceef0, + FFF73c1cf5e07ff03c1cf5e0, + FFF73c1cfcd07ff03c1cfcd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65b84c1707f8c5b84c170 = { + FFF63b951b307ff03b951b30 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75b05da007f8c5b05da00, - FFF75b05e0f07f8c5b05e0f0, - FFF75b05e7e07f8c5b05e7e0, - FFF75b05eed07f8c5b05eed0, + FFF73c1d08007ff03c1d0800, + FFF73c1d0ef07ff03c1d0ef0, + FFF73c1d15e07ff03c1d15e0, + FFF73c1d1cd07ff03c1d1cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65b8507d07f8c5b8507d0 = { + FFF63dbe48807ff03dbe4880 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75b05f6007f8c5b05f600, - FFF75b05fcf07f8c5b05fcf0, - FFF75b0603e07f8c5b0603e0, - FFF75b060ad07f8c5b060ad0, + FFF73c1d24007ff03c1d2400, + FFF73c1d2af07ff03c1d2af0, + FFF73c1d31e07ff03c1d31e0, + FFF73c1d38d07ff03c1d38d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF659c183f07f8c59c183f0 = { + FFF63ba4add07ff03ba4add0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a8110007f8c5a811000, - FFF75a8116f07f8c5a8116f0, - FFF75a811de07f8c5a811de0, - FFF75a8124d07f8c5a8124d0, + FFF73c8110007ff03c811000, + FFF73c8116f07ff03c8116f0, + FFF73c811de07ff03c811de0, + FFF73c8124d07ff03c8124d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF659c114307f8c59c11430 = { + FFF63ba5cc607ff03ba5cc60 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a01ee007f8c5a01ee00, - FFF75a01f4f07f8c5a01f4f0, - FFF75a01fbe07f8c5a01fbe0, - FFF75a0202d07f8c5a0202d0, + FFF73c1820007ff03c182000, + FFF73c1826f07ff03c1826f0, + FFF73c182de07ff03c182de0, + FFF73c1834d07ff03c1834d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF659944d307f8c59944d30 = { + FFF63b9d39307ff03b9d3930 = { isa = XCConfigurationList; buildConfigurations = ( - FFF759189e007f8c59189e00, - FFF75918a4f07f8c5918a4f0, - FFF75918abe07f8c5918abe0, - FFF75918b2d07f8c5918b2d0, + FFF73c81ca007ff03c81ca00, + FFF73c81d0f07ff03c81d0f0, + FFF73c81d7e07ff03c81d7e0, + FFF73c81ded07ff03c81ded0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF659d336a07f8c59d336a0 = { + FFF63bf0b4507ff03bf0b450 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a81b8007f8c5a81b800, - FFF75a81bef07f8c5a81bef0, - FFF75a81c5e07f8c5a81c5e0, - FFF75a81ccd07f8c5a81ccd0, + FFF73d00ba007ff03d00ba00, + FFF73d00c0f07ff03d00c0f0, + FFF73d00c7e07ff03d00c7e0, + FFF73d00ced07ff03d00ced0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65b808e607f8c5b808e60 = { + FFF63b971cd07ff03b971cd0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75b0284007f8c5b028400, - FFF75b028af07f8c5b028af0, - FFF75b0291e07f8c5b0291e0, - FFF75b0298d07f8c5b0298d0, + FFF73c8290007ff03c829000, + FFF73c8296f07ff03c8296f0, + FFF73c829de07ff03c829de0, + FFF73c82a4d07ff03c82a4d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF659c249907f8c59c24990 = { + FFF63ba330407ff03ba33040 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a0304007f8c5a030400, - FFF75a030af07f8c5a030af0, - FFF75a0311e07f8c5a0311e0, - FFF75a0318d07f8c5a0318d0, + FFF73c1962007ff03c196200, + FFF73c1968f07ff03c1968f0, + FFF73c196fe07ff03c196fe0, + FFF73c1976d07ff03c1976d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF659d4aa007f8c59d4aa00 = { + FFF63bdf7df07ff03bdf7df0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a8254007f8c5a825400, - FFF75a825af07f8c5a825af0, - FFF75a8261e07f8c5a8261e0, - FFF75a8268d07f8c5a8268d0, + FFF73b0476007ff03b047600, + FFF73b047cf07ff03b047cf0, + FFF73b0483e07ff03b0483e0, + FFF73b048ad07ff03b048ad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65992d3c07f8c5992d3c0 = { + FFF63ba23a707ff03ba23a70 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75919de007f8c5919de00, - FFF75919e4f07f8c5919e4f0, - FFF75919ebe07f8c5919ebe0, - FFF75919f2d07f8c5919f2d0, + FFF73c19fe007ff03c19fe00, + FFF73c1a04f07ff03c1a04f0, + FFF73c1a0be07ff03c1a0be0, + FFF73c1a12d07ff03c1a12d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF659d66b807f8c59d66b80 = { + FFF63bf5a4307ff03bf5a430 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75a82cc007f8c5a82cc00, - FFF75a82d2f07f8c5a82d2f0, - FFF75a82d9e07f8c5a82d9e0, - FFF75a82e0d07f8c5a82e0d0, + FFF73d0130007ff03d013000, + FFF73d0136f07ff03d0136f0, + FFF73d013de07ff03d013de0, + FFF73d0144d07ff03d0144d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF65b8199707f8c5b819970 = { + FFF63b98b2007ff03b98b200 = { isa = XCConfigurationList; buildConfigurations = ( - FFF75b02ee007f8c5b02ee00, - FFF75b02f4f07f8c5b02f4f0, - FFF75b02fbe07f8c5b02fbe0, - FFF75b0302d07f8c5b0302d0, + FFF73c8302007ff03c830200, + FFF73c8308f07ff03c8308f0, + FFF73c830fe07ff03c830fe0, + FFF73c8316d07ff03c8316d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF658c7cd607f8c58c7cd60 = { + FFF63ac7ce107ff03ac7ce10 = { isa = XCConfigurationList; buildConfigurations = ( - FFF35b054e007f8c5b054e00 /* release */, - FFF35b0554f07f8c5b0554f0 /* debug */, - FFF35b055be07f8c5b055be0 /* checked */, - FFF35b0562d07f8c5b0562d0 /* profile */, + FFF33c1c78007ff03c1c7800 /* release */, + FFF33c1c7ef07ff03c1c7ef0 /* debug */, + FFF33c1c85e07ff03c1c85e0 /* checked */, + FFF33c1c8cd07ff03c1c8cd0 /* profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; /* End XCConfigurationList section */ /* Begin XCBuildConfiguration section */ - FFF75b054e007f8c5b054e00 /* release */ = { + FFF73c1c78007ff03c1c7800 /* 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++"; @@ -5538,7 +5538,7 @@ }; name = "release"; }; - FFF75b0554f07f8c5b0554f0 /* debug */ = { + FFF73c1c7ef07ff03c1c7ef0 /* 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++"; @@ -5569,7 +5569,7 @@ }; name = "debug"; }; - FFF75b055be07f8c5b055be0 /* checked */ = { + FFF73c1c85e07ff03c1c85e0 /* 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++"; @@ -5600,7 +5600,7 @@ }; name = "checked"; }; - FFF75b0562d07f8c5b0562d0 /* profile */ = { + FFF73c1c8cd07ff03c1c8cd0 /* 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++"; @@ -5631,7 +5631,7 @@ }; name = "profile"; }; - FFF75b056a007f8c5b056a00 /* debug */ = { + FFF73c1c94007ff03c1c9400 /* 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++"; @@ -5662,7 +5662,7 @@ }; name = "debug"; }; - FFF75b0570f07f8c5b0570f0 /* checked */ = { + FFF73c1c9af07ff03c1c9af0 /* 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++"; @@ -5693,7 +5693,7 @@ }; name = "checked"; }; - FFF75b0577e07f8c5b0577e0 /* profile */ = { + FFF73c1ca1e07ff03c1ca1e0 /* 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++"; @@ -5724,7 +5724,7 @@ }; name = "profile"; }; - FFF75b057ed07f8c5b057ed0 /* release */ = { + FFF73c1ca8d07ff03c1ca8d0 /* 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++"; @@ -5755,7 +5755,7 @@ }; name = "release"; }; - FFF75b0586007f8c5b058600 /* debug */ = { + FFF73c1cb0007ff03c1cb000 /* 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++"; @@ -5786,7 +5786,7 @@ }; name = "debug"; }; - FFF75b058cf07f8c5b058cf0 /* checked */ = { + FFF73c1cb6f07ff03c1cb6f0 /* 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++"; @@ -5817,7 +5817,7 @@ }; name = "checked"; }; - FFF75b0593e07f8c5b0593e0 /* profile */ = { + FFF73c1cbde07ff03c1cbde0 /* 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++"; @@ -5848,7 +5848,7 @@ }; name = "profile"; }; - FFF75b059ad07f8c5b059ad0 /* release */ = { + FFF73c1cc4d07ff03c1cc4d0 /* 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++"; @@ -5879,7 +5879,7 @@ }; name = "release"; }; - FFF75b05a2007f8c5b05a200 /* debug */ = { + FFF73c1ccc007ff03c1ccc00 /* 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++"; @@ -5888,7 +5888,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5910,7 +5910,7 @@ }; name = "debug"; }; - FFF75b05a8f07f8c5b05a8f0 /* checked */ = { + FFF73c1cd2f07ff03c1cd2f0 /* 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++"; @@ -5919,7 +5919,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5941,7 +5941,7 @@ }; name = "checked"; }; - FFF75b05afe07f8c5b05afe0 /* profile */ = { + FFF73c1cd9e07ff03c1cd9e0 /* 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++"; @@ -5950,7 +5950,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5972,7 +5972,7 @@ }; name = "profile"; }; - FFF75b05b6d07f8c5b05b6d0 /* release */ = { + FFF73c1ce0d07ff03c1ce0d0 /* 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++"; @@ -5981,7 +5981,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -6003,7 +6003,7 @@ }; name = "release"; }; - FFF75b05be007f8c5b05be00 /* debug */ = { + FFF73c1ce8007ff03c1ce800 /* 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++"; @@ -6034,7 +6034,7 @@ }; name = "debug"; }; - FFF75b05c4f07f8c5b05c4f0 /* checked */ = { + FFF73c1ceef07ff03c1ceef0 /* 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++"; @@ -6065,7 +6065,7 @@ }; name = "checked"; }; - FFF75b05cbe07f8c5b05cbe0 /* profile */ = { + FFF73c1cf5e07ff03c1cf5e0 /* 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++"; @@ -6096,7 +6096,7 @@ }; name = "profile"; }; - FFF75b05d2d07f8c5b05d2d0 /* release */ = { + FFF73c1cfcd07ff03c1cfcd0 /* 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++"; @@ -6127,7 +6127,7 @@ }; name = "release"; }; - FFF75b05da007f8c5b05da00 /* debug */ = { + FFF73c1d08007ff03c1d0800 /* 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++"; @@ -6158,7 +6158,7 @@ }; name = "debug"; }; - FFF75b05e0f07f8c5b05e0f0 /* checked */ = { + FFF73c1d0ef07ff03c1d0ef0 /* 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++"; @@ -6189,7 +6189,7 @@ }; name = "checked"; }; - FFF75b05e7e07f8c5b05e7e0 /* profile */ = { + FFF73c1d15e07ff03c1d15e0 /* 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++"; @@ -6220,7 +6220,7 @@ }; name = "profile"; }; - FFF75b05eed07f8c5b05eed0 /* release */ = { + FFF73c1d1cd07ff03c1d1cd0 /* 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++"; @@ -6251,7 +6251,7 @@ }; name = "release"; }; - FFF75b05f6007f8c5b05f600 /* release */ = { + FFF73c1d24007ff03c1d2400 /* 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++"; @@ -6282,7 +6282,7 @@ }; name = "release"; }; - FFF75b05fcf07f8c5b05fcf0 /* debug */ = { + FFF73c1d2af07ff03c1d2af0 /* 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++"; @@ -6313,7 +6313,7 @@ }; name = "debug"; }; - FFF75b0603e07f8c5b0603e0 /* checked */ = { + FFF73c1d31e07ff03c1d31e0 /* 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++"; @@ -6344,7 +6344,7 @@ }; name = "checked"; }; - FFF75b060ad07f8c5b060ad0 /* profile */ = { + FFF73c1d38d07ff03c1d38d0 /* 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++"; @@ -6375,7 +6375,7 @@ }; name = "profile"; }; - FFF75a8110007f8c5a811000 /* release */ = { + FFF73c8110007ff03c811000 /* 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++"; @@ -6406,7 +6406,7 @@ }; name = "release"; }; - FFF75a8116f07f8c5a8116f0 /* debug */ = { + FFF73c8116f07ff03c8116f0 /* 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++"; @@ -6437,7 +6437,7 @@ }; name = "debug"; }; - FFF75a811de07f8c5a811de0 /* checked */ = { + FFF73c811de07ff03c811de0 /* 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++"; @@ -6468,7 +6468,7 @@ }; name = "checked"; }; - FFF75a8124d07f8c5a8124d0 /* profile */ = { + FFF73c8124d07ff03c8124d0 /* 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++"; @@ -6499,7 +6499,7 @@ }; name = "profile"; }; - FFF75a01ee007f8c5a01ee00 /* debug */ = { + FFF73c1820007ff03c182000 /* 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++"; @@ -6530,7 +6530,7 @@ }; name = "debug"; }; - FFF75a01f4f07f8c5a01f4f0 /* release */ = { + FFF73c1826f07ff03c1826f0 /* 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++"; @@ -6561,7 +6561,7 @@ }; name = "release"; }; - FFF75a01fbe07f8c5a01fbe0 /* checked */ = { + FFF73c182de07ff03c182de0 /* 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++"; @@ -6592,7 +6592,7 @@ }; name = "checked"; }; - FFF75a0202d07f8c5a0202d0 /* profile */ = { + FFF73c1834d07ff03c1834d0 /* 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++"; @@ -6623,7 +6623,7 @@ }; name = "profile"; }; - FFF759189e007f8c59189e00 /* debug */ = { + FFF73c81ca007ff03c81ca00 /* 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++"; @@ -6654,7 +6654,7 @@ }; name = "debug"; }; - FFF75918a4f07f8c5918a4f0 /* release */ = { + FFF73c81d0f07ff03c81d0f0 /* 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++"; @@ -6685,7 +6685,7 @@ }; name = "release"; }; - FFF75918abe07f8c5918abe0 /* checked */ = { + FFF73c81d7e07ff03c81d7e0 /* 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++"; @@ -6716,7 +6716,7 @@ }; name = "checked"; }; - FFF75918b2d07f8c5918b2d0 /* profile */ = { + FFF73c81ded07ff03c81ded0 /* 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++"; @@ -6747,7 +6747,7 @@ }; name = "profile"; }; - FFF75a81b8007f8c5a81b800 /* debug */ = { + FFF73d00ba007ff03d00ba00 /* 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++"; @@ -6778,7 +6778,7 @@ }; name = "debug"; }; - FFF75a81bef07f8c5a81bef0 /* checked */ = { + FFF73d00c0f07ff03d00c0f0 /* 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++"; @@ -6809,7 +6809,7 @@ }; name = "checked"; }; - FFF75a81c5e07f8c5a81c5e0 /* profile */ = { + FFF73d00c7e07ff03d00c7e0 /* 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++"; @@ -6840,7 +6840,7 @@ }; name = "profile"; }; - FFF75a81ccd07f8c5a81ccd0 /* release */ = { + FFF73d00ced07ff03d00ced0 /* 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++"; @@ -6871,7 +6871,7 @@ }; name = "release"; }; - FFF75b0284007f8c5b028400 /* debug */ = { + FFF73c8290007ff03c829000 /* 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++"; @@ -6902,7 +6902,7 @@ }; name = "debug"; }; - FFF75b028af07f8c5b028af0 /* checked */ = { + FFF73c8296f07ff03c8296f0 /* 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++"; @@ -6933,7 +6933,7 @@ }; name = "checked"; }; - FFF75b0291e07f8c5b0291e0 /* profile */ = { + FFF73c829de07ff03c829de0 /* 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++"; @@ -6964,7 +6964,7 @@ }; name = "profile"; }; - FFF75b0298d07f8c5b0298d0 /* release */ = { + FFF73c82a4d07ff03c82a4d0 /* 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++"; @@ -6995,7 +6995,7 @@ }; name = "release"; }; - FFF75a0304007f8c5a030400 /* debug */ = { + FFF73c1962007ff03c196200 /* 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++"; @@ -7026,7 +7026,7 @@ }; name = "debug"; }; - FFF75a030af07f8c5a030af0 /* checked */ = { + FFF73c1968f07ff03c1968f0 /* 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++"; @@ -7057,7 +7057,7 @@ }; name = "checked"; }; - FFF75a0311e07f8c5a0311e0 /* profile */ = { + FFF73c196fe07ff03c196fe0 /* 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++"; @@ -7088,7 +7088,7 @@ }; name = "profile"; }; - FFF75a0318d07f8c5a0318d0 /* release */ = { + FFF73c1976d07ff03c1976d0 /* 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++"; @@ -7119,7 +7119,7 @@ }; name = "release"; }; - FFF75a8254007f8c5a825400 /* debug */ = { + FFF73b0476007ff03b047600 /* 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++"; @@ -7150,7 +7150,7 @@ }; name = "debug"; }; - FFF75a825af07f8c5a825af0 /* checked */ = { + FFF73b047cf07ff03b047cf0 /* 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++"; @@ -7181,7 +7181,7 @@ }; name = "checked"; }; - FFF75a8261e07f8c5a8261e0 /* profile */ = { + FFF73b0483e07ff03b0483e0 /* 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++"; @@ -7212,7 +7212,7 @@ }; name = "profile"; }; - FFF75a8268d07f8c5a8268d0 /* release */ = { + FFF73b048ad07ff03b048ad0 /* 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++"; @@ -7243,7 +7243,7 @@ }; name = "release"; }; - FFF75919de007f8c5919de00 /* debug */ = { + FFF73c19fe007ff03c19fe00 /* 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++"; @@ -7274,7 +7274,7 @@ }; name = "debug"; }; - FFF75919e4f07f8c5919e4f0 /* checked */ = { + FFF73c1a04f07ff03c1a04f0 /* 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++"; @@ -7305,7 +7305,7 @@ }; name = "checked"; }; - FFF75919ebe07f8c5919ebe0 /* profile */ = { + FFF73c1a0be07ff03c1a0be0 /* 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++"; @@ -7336,7 +7336,7 @@ }; name = "profile"; }; - FFF75919f2d07f8c5919f2d0 /* release */ = { + FFF73c1a12d07ff03c1a12d0 /* 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++"; @@ -7367,7 +7367,7 @@ }; name = "release"; }; - FFF75a82cc007f8c5a82cc00 /* debug */ = { + FFF73d0130007ff03d013000 /* 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++"; @@ -7398,7 +7398,7 @@ }; name = "debug"; }; - FFF75a82d2f07f8c5a82d2f0 /* release */ = { + FFF73d0136f07ff03d0136f0 /* 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++"; @@ -7429,7 +7429,7 @@ }; name = "release"; }; - FFF75a82d9e07f8c5a82d9e0 /* checked */ = { + FFF73d013de07ff03d013de0 /* 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++"; @@ -7460,7 +7460,7 @@ }; name = "checked"; }; - FFF75a82e0d07f8c5a82e0d0 /* profile */ = { + FFF73d0144d07ff03d0144d0 /* 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++"; @@ -7491,7 +7491,7 @@ }; name = "profile"; }; - FFF75b02ee007f8c5b02ee00 /* debug */ = { + FFF73c8302007ff03c830200 /* 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++"; @@ -7522,7 +7522,7 @@ }; name = "debug"; }; - FFF75b02f4f07f8c5b02f4f0 /* release */ = { + FFF73c8308f07ff03c8308f0 /* 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++"; @@ -7553,7 +7553,7 @@ }; name = "release"; }; - FFF75b02fbe07f8c5b02fbe0 /* checked */ = { + FFF73c830fe07ff03c830fe0 /* 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++"; @@ -7584,7 +7584,7 @@ }; name = "checked"; }; - FFF75b0302d07f8c5b0302d0 /* profile */ = { + FFF73c8316d07ff03c8316d0 /* 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++"; @@ -7615,25 +7615,25 @@ }; name = "profile"; }; - FFF35b054e007f8c5b054e00 /* release */ = { + FFF33c1c78007ff03c1c7800 /* release */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "release"; }; - FFF35b0554f07f8c5b0554f0 /* debug */ = { + FFF33c1c7ef07ff03c1c7ef0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "debug"; }; - FFF35b055be07f8c5b055be0 /* checked */ = { + FFF33c1c85e07ff03c1c85e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "checked"; }; - FFF35b0562d07f8c5b0562d0 /* profile */ = { + FFF33c1c8cd07ff03c1c8cd0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { }; @@ -7642,34 +7642,34 @@ /* End XCBuildConfiguration section */ /* Begin PBXProject section */ - FFF958c7cd607f8c58c7cd60 /* Project object */ = { + FFF93ac7ce107ff03ac7ce10 /* Project object */ = { isa = PBXProject; - buildConfigurationList = FFF658c7cd607f8c58c7cd60 /* Build configuration list for PBXProject PhysX */; + buildConfigurationList = FFF63ac7ce107ff03ac7ce10 /* Build configuration list for PBXProject PhysX */; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 1; - mainGroup = FFFB58c7cdc87f8c58c7cdc8 /* PhysX */; + mainGroup = FFFB3ac7ce787ff03ac7ce78 /* PhysX */; targets = ( - FFFA5b81c8207f8c5b81c820, - FFFA5b8241407f8c5b824140, - FFFA5b8256907f8c5b825690, - FFFA5b836b207f8c5b836b20, - FFFA5b847c107f8c5b847c10, - FFFA5b84c1707f8c5b84c170, - FFFA5b8507d07f8c5b8507d0, - FFFA59c183f07f8c59c183f0, - FFFA59c114307f8c59c11430, - FFFA59944d307f8c59944d30, - FFFA59d336a07f8c59d336a0, - FFFA5b808e607f8c5b808e60, - FFFA59c249907f8c59c24990, - FFFA59d4aa007f8c59d4aa00, - FFFA5992d3c07f8c5992d3c0, - FFFA59d66b807f8c59d66b80, - FFFA5b8199707f8c5b819970, + FFFA3b9796607ff03b979660, + FFFA3b992b807ff03b992b80, + FFFA3b993f207ff03b993f20, + FFFA3b9a54207ff03b9a5420, + FFFA3b9b66107ff03b9b6610, + FFFA3b951b307ff03b951b30, + FFFA3dbe48807ff03dbe4880, + FFFA3ba4add07ff03ba4add0, + FFFA3ba5cc607ff03ba5cc60, + FFFA3b9d39307ff03b9d3930, + FFFA3bf0b4507ff03bf0b450, + FFFA3b971cd07ff03b971cd0, + FFFA3ba330407ff03ba33040, + FFFA3bdf7df07ff03bdf7df0, + FFFA3ba23a707ff03ba23a70, + FFFA3bf5a4307ff03bf5a430, + FFFA3b98b2007ff03b98b200, ); }; /* End PBXProject section */ }; - rootObject = FFF958c7cd607f8c58c7cd60 /* Project object */; + rootObject = FFF93ac7ce107ff03ac7ce10 /* 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 55752fe5..82def4f4 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 */ - FFFF2be33f407fc42be33f40 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD2be53ef07fc42be53ef0 /* SceneQuery */; }; - FFFF2be33fa07fc42be33fa0 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD2be585307fc42be58530 /* SimulationController */; }; - FFFF2c8368387fc42c836838 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8368387fc42c836838 /* NpActor.cpp */; }; - FFFF2c8368a07fc42c8368a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8368a07fc42c8368a0 /* NpAggregate.cpp */; }; - FFFF2c8369087fc42c836908 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8369087fc42c836908 /* NpArticulation.cpp */; }; - FFFF2c8369707fc42c836970 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8369707fc42c836970 /* NpArticulationJoint.cpp */; }; - FFFF2c8369d87fc42c8369d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8369d87fc42c8369d8 /* NpArticulationLink.cpp */; }; - FFFF2c836a407fc42c836a40 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c836a407fc42c836a40 /* NpBatchQuery.cpp */; }; - FFFF2c836aa87fc42c836aa8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c836aa87fc42c836aa8 /* NpConstraint.cpp */; }; - FFFF2c836b107fc42c836b10 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c836b107fc42c836b10 /* NpFactory.cpp */; }; - FFFF2c836b787fc42c836b78 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c836b787fc42c836b78 /* NpMaterial.cpp */; }; - FFFF2c836be07fc42c836be0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c836be07fc42c836be0 /* NpMetaData.cpp */; }; - FFFF2c836c487fc42c836c48 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c836c487fc42c836c48 /* NpPhysics.cpp */; }; - FFFF2c836cb07fc42c836cb0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c836cb07fc42c836cb0 /* NpPvdSceneQueryCollector.cpp */; }; - FFFF2c836d187fc42c836d18 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c836d187fc42c836d18 /* NpReadCheck.cpp */; }; - FFFF2c836d807fc42c836d80 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c836d807fc42c836d80 /* NpRigidDynamic.cpp */; }; - FFFF2c836de87fc42c836de8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c836de87fc42c836de8 /* NpRigidStatic.cpp */; }; - FFFF2c836e507fc42c836e50 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c836e507fc42c836e50 /* NpScene.cpp */; }; - FFFF2c836eb87fc42c836eb8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c836eb87fc42c836eb8 /* NpSceneQueries.cpp */; }; - FFFF2c836f207fc42c836f20 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c836f207fc42c836f20 /* NpSerializerAdapter.cpp */; }; - FFFF2c836f887fc42c836f88 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c836f887fc42c836f88 /* NpShape.cpp */; }; - FFFF2c836ff07fc42c836ff0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c836ff07fc42c836ff0 /* NpShapeManager.cpp */; }; - FFFF2c8370587fc42c837058 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8370587fc42c837058 /* NpSpatialIndex.cpp */; }; - FFFF2c8370c07fc42c8370c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8370c07fc42c8370c0 /* NpVolumeCache.cpp */; }; - FFFF2c8371287fc42c837128 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8371287fc42c837128 /* NpWriteCheck.cpp */; }; - FFFF2c8371907fc42c837190 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8371907fc42c837190 /* PvdMetaDataPvdBinding.cpp */; }; - FFFF2c8371f87fc42c8371f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8371f87fc42c8371f8 /* PvdPhysicsClient.cpp */; }; - FFFF2c8374007fc42c837400 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8374007fc42c837400 /* particles/NpParticleFluid.cpp */; }; - FFFF2c8374687fc42c837468 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8374687fc42c837468 /* particles/NpParticleSystem.cpp */; }; - FFFF2c837c207fc42c837c20 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c837c207fc42c837c20 /* buffering/ScbActor.cpp */; }; - FFFF2c837c887fc42c837c88 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c837c887fc42c837c88 /* buffering/ScbAggregate.cpp */; }; - FFFF2c837cf07fc42c837cf0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c837cf07fc42c837cf0 /* buffering/ScbBase.cpp */; }; - FFFF2c837d587fc42c837d58 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c837d587fc42c837d58 /* buffering/ScbCloth.cpp */; }; - FFFF2c837dc07fc42c837dc0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c837dc07fc42c837dc0 /* buffering/ScbMetaData.cpp */; }; - FFFF2c837e287fc42c837e28 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c837e287fc42c837e28 /* buffering/ScbParticleSystem.cpp */; }; - FFFF2c837e907fc42c837e90 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c837e907fc42c837e90 /* buffering/ScbScene.cpp */; }; - FFFF2c837ef87fc42c837ef8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c837ef87fc42c837ef8 /* buffering/ScbScenePvdClient.cpp */; }; - FFFF2c837f607fc42c837f60 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c837f607fc42c837f60 /* buffering/ScbShape.cpp */; }; - FFFF2c8381007fc42c838100 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8381007fc42c838100 /* cloth/NpCloth.cpp */; }; - FFFF2c8381687fc42c838168 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8381687fc42c838168 /* cloth/NpClothFabric.cpp */; }; - FFFF2c8381d07fc42c8381d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8381d07fc42c8381d0 /* cloth/NpClothParticleData.cpp */; }; - FFFF2c8382387fc42c838238 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8382387fc42c838238 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; - FFFF2c839da87fc42c839da8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD2c839da87fc42c839da8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; - FFFF2c839e107fc42c839e10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD2c839e107fc42c839e10 /* core/src/PxMetaDataObjects.cpp */; }; + FFFFb43604507f9eb4360450 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb5719ba07f9eb5719ba0 /* SceneQuery */; }; + FFFFb43604b07f9eb43604b0 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb571e1e07f9eb571e1e0 /* SimulationController */; }; + FFFFb49ada387f9eb49ada38 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49ada387f9eb49ada38 /* NpActor.cpp */; }; + FFFFb49adaa07f9eb49adaa0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49adaa07f9eb49adaa0 /* NpAggregate.cpp */; }; + FFFFb49adb087f9eb49adb08 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49adb087f9eb49adb08 /* NpArticulation.cpp */; }; + FFFFb49adb707f9eb49adb70 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49adb707f9eb49adb70 /* NpArticulationJoint.cpp */; }; + FFFFb49adbd87f9eb49adbd8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49adbd87f9eb49adbd8 /* NpArticulationLink.cpp */; }; + FFFFb49adc407f9eb49adc40 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49adc407f9eb49adc40 /* NpBatchQuery.cpp */; }; + FFFFb49adca87f9eb49adca8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49adca87f9eb49adca8 /* NpConstraint.cpp */; }; + FFFFb49add107f9eb49add10 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49add107f9eb49add10 /* NpFactory.cpp */; }; + FFFFb49add787f9eb49add78 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49add787f9eb49add78 /* NpMaterial.cpp */; }; + FFFFb49adde07f9eb49adde0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49adde07f9eb49adde0 /* NpMetaData.cpp */; }; + FFFFb49ade487f9eb49ade48 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49ade487f9eb49ade48 /* NpPhysics.cpp */; }; + FFFFb49adeb07f9eb49adeb0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49adeb07f9eb49adeb0 /* NpPvdSceneQueryCollector.cpp */; }; + FFFFb49adf187f9eb49adf18 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49adf187f9eb49adf18 /* NpReadCheck.cpp */; }; + FFFFb49adf807f9eb49adf80 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49adf807f9eb49adf80 /* NpRigidDynamic.cpp */; }; + FFFFb49adfe87f9eb49adfe8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49adfe87f9eb49adfe8 /* NpRigidStatic.cpp */; }; + FFFFb49ae0507f9eb49ae050 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49ae0507f9eb49ae050 /* NpScene.cpp */; }; + FFFFb49ae0b87f9eb49ae0b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49ae0b87f9eb49ae0b8 /* NpSceneQueries.cpp */; }; + FFFFb49ae1207f9eb49ae120 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49ae1207f9eb49ae120 /* NpSerializerAdapter.cpp */; }; + FFFFb49ae1887f9eb49ae188 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49ae1887f9eb49ae188 /* NpShape.cpp */; }; + FFFFb49ae1f07f9eb49ae1f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49ae1f07f9eb49ae1f0 /* NpShapeManager.cpp */; }; + FFFFb49ae2587f9eb49ae258 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49ae2587f9eb49ae258 /* NpSpatialIndex.cpp */; }; + FFFFb49ae2c07f9eb49ae2c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49ae2c07f9eb49ae2c0 /* NpVolumeCache.cpp */; }; + FFFFb49ae3287f9eb49ae328 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49ae3287f9eb49ae328 /* NpWriteCheck.cpp */; }; + FFFFb49ae3907f9eb49ae390 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49ae3907f9eb49ae390 /* PvdMetaDataPvdBinding.cpp */; }; + FFFFb49ae3f87f9eb49ae3f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49ae3f87f9eb49ae3f8 /* PvdPhysicsClient.cpp */; }; + FFFFb49ae6007f9eb49ae600 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49ae6007f9eb49ae600 /* particles/NpParticleFluid.cpp */; }; + FFFFb49ae6687f9eb49ae668 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49ae6687f9eb49ae668 /* particles/NpParticleSystem.cpp */; }; + FFFFb49aee207f9eb49aee20 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49aee207f9eb49aee20 /* buffering/ScbActor.cpp */; }; + FFFFb49aee887f9eb49aee88 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49aee887f9eb49aee88 /* buffering/ScbAggregate.cpp */; }; + FFFFb49aeef07f9eb49aeef0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49aeef07f9eb49aeef0 /* buffering/ScbBase.cpp */; }; + FFFFb49aef587f9eb49aef58 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49aef587f9eb49aef58 /* buffering/ScbCloth.cpp */; }; + FFFFb49aefc07f9eb49aefc0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49aefc07f9eb49aefc0 /* buffering/ScbMetaData.cpp */; }; + FFFFb49af0287f9eb49af028 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49af0287f9eb49af028 /* buffering/ScbParticleSystem.cpp */; }; + FFFFb49af0907f9eb49af090 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49af0907f9eb49af090 /* buffering/ScbScene.cpp */; }; + FFFFb49af0f87f9eb49af0f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49af0f87f9eb49af0f8 /* buffering/ScbScenePvdClient.cpp */; }; + FFFFb49af1607f9eb49af160 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49af1607f9eb49af160 /* buffering/ScbShape.cpp */; }; + FFFFb49af3007f9eb49af300 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49af3007f9eb49af300 /* cloth/NpCloth.cpp */; }; + FFFFb49af3687f9eb49af368 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49af3687f9eb49af368 /* cloth/NpClothFabric.cpp */; }; + FFFFb49af3d07f9eb49af3d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49af3d07f9eb49af3d0 /* cloth/NpClothParticleData.cpp */; }; + FFFFb49af4387f9eb49af438 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49af4387f9eb49af438 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; + FFFFb49a7ba87f9eb49a7ba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb49a7ba87f9eb49a7ba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; + FFFFb49a7c107f9eb49a7c10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb49a7c107f9eb49a7c10 /* core/src/PxMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2be2bdd07fc42be2bdd0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c835a007fc42c835a00 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c835a687fc42c835a68 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c835ad07fc42c835ad0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c835b387fc42c835b38 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c835ba07fc42c835ba0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c835c087fc42c835c08 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c835c707fc42c835c70 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c835cd87fc42c835cd8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c835d407fc42c835d40 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c835da87fc42c835da8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c835e107fc42c835e10 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c835e787fc42c835e78 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c835ee07fc42c835ee0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c835f487fc42c835f48 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c835fb07fc42c835fb0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8360187fc42c836018 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8360807fc42c836080 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8360e87fc42c8360e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8361507fc42c836150 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8361b87fc42c8361b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8362207fc42c836220 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8362887fc42c836288 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8362f07fc42c8362f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8363587fc42c836358 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8363c07fc42c8363c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8364287fc42c836428 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8364907fc42c836490 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8364f87fc42c8364f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8365607fc42c836560 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8365c87fc42c8365c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8366307fc42c836630 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8366987fc42c836698 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8367007fc42c836700 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8367687fc42c836768 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8367d07fc42c8367d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8368387fc42c836838 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8368a07fc42c8368a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8369087fc42c836908 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8369707fc42c836970 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8369d87fc42c8369d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c836a407fc42c836a40 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c836aa87fc42c836aa8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c836b107fc42c836b10 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c836b787fc42c836b78 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c836be07fc42c836be0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c836c487fc42c836c48 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c836cb07fc42c836cb0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c836d187fc42c836d18 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c836d807fc42c836d80 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c836de87fc42c836de8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c836e507fc42c836e50 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c836eb87fc42c836eb8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c836f207fc42c836f20 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c836f887fc42c836f88 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c836ff07fc42c836ff0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8370587fc42c837058 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8370c07fc42c8370c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8371287fc42c837128 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8371907fc42c837190 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8371f87fc42c8371f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8372607fc42c837260 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8372c87fc42c8372c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8373307fc42c837330 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8373987fc42c837398 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8374007fc42c837400 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8374687fc42c837468 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8374d07fc42c8374d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8375387fc42c837538 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8375a07fc42c8375a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8376087fc42c837608 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8376707fc42c837670 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8376d87fc42c8376d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8377407fc42c837740 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8377a87fc42c8377a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8378107fc42c837810 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8378787fc42c837878 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8378e07fc42c8378e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8379487fc42c837948 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8379b07fc42c8379b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c837a187fc42c837a18 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c837a807fc42c837a80 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c837ae87fc42c837ae8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c837b507fc42c837b50 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c837bb87fc42c837bb8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c837c207fc42c837c20 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c837c887fc42c837c88 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c837cf07fc42c837cf0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c837d587fc42c837d58 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c837dc07fc42c837dc0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c837e287fc42c837e28 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c837e907fc42c837e90 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c837ef87fc42c837ef8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c837f607fc42c837f60 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c837fc87fc42c837fc8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8380307fc42c838030 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8380987fc42c838098 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8381007fc42c838100 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8381687fc42c838168 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8381d07fc42c8381d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8382387fc42c838238 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8384007fc42c838400 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8384687fc42c838468 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8384d07fc42c8384d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8385387fc42c838538 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8385a07fc42c8385a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8386087fc42c838608 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8386707fc42c838670 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8386d87fc42c8386d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8387407fc42c838740 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8387a87fc42c8387a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8388107fc42c838810 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8388787fc42c838878 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8388e07fc42c8388e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8389487fc42c838948 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8389b07fc42c8389b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c838a187fc42c838a18 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c838a807fc42c838a80 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c838ae87fc42c838ae8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c838b507fc42c838b50 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c838bb87fc42c838bb8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c838c207fc42c838c20 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c838c887fc42c838c88 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c838cf07fc42c838cf0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c838d587fc42c838d58 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c838dc07fc42c838dc0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c838e287fc42c838e28 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c838e907fc42c838e90 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c838ef87fc42c838ef8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c838f607fc42c838f60 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c838fc87fc42c838fc8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8390307fc42c839030 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8390987fc42c839098 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8391007fc42c839100 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8391687fc42c839168 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8391d07fc42c8391d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8392387fc42c839238 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8392a07fc42c8392a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8393087fc42c839308 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8393707fc42c839370 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8393d87fc42c8393d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8394407fc42c839440 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8394a87fc42c8394a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8395107fc42c839510 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8395787fc42c839578 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8395e07fc42c8395e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8396487fc42c839648 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8396b07fc42c8396b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8397187fc42c839718 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8397807fc42c839780 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8397e87fc42c8397e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8398507fc42c839850 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8398b87fc42c8398b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8399207fc42c839920 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8399887fc42c839988 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c839a007fc42c839a00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c839a687fc42c839a68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c839ad07fc42c839ad0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c839b387fc42c839b38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c839ba07fc42c839ba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c839c087fc42c839c08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c839c707fc42c839c70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c839cd87fc42c839cd8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c839d407fc42c839d40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c839da87fc42c839da8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c839e107fc42c839e10 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb43495107f9eb4349510 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb49acc007f9eb49acc00 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49acc687f9eb49acc68 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49accd07f9eb49accd0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49acd387f9eb49acd38 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49acda07f9eb49acda0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ace087f9eb49ace08 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ace707f9eb49ace70 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49aced87f9eb49aced8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49acf407f9eb49acf40 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49acfa87f9eb49acfa8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad0107f9eb49ad010 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad0787f9eb49ad078 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad0e07f9eb49ad0e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad1487f9eb49ad148 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad1b07f9eb49ad1b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad2187f9eb49ad218 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad2807f9eb49ad280 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad2e87f9eb49ad2e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad3507f9eb49ad350 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad3b87f9eb49ad3b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad4207f9eb49ad420 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad4887f9eb49ad488 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad4f07f9eb49ad4f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad5587f9eb49ad558 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad5c07f9eb49ad5c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad6287f9eb49ad628 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad6907f9eb49ad690 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad6f87f9eb49ad6f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad7607f9eb49ad760 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad7c87f9eb49ad7c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad8307f9eb49ad830 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad8987f9eb49ad898 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad9007f9eb49ad900 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad9687f9eb49ad968 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ad9d07f9eb49ad9d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ada387f9eb49ada38 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49adaa07f9eb49adaa0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49adb087f9eb49adb08 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49adb707f9eb49adb70 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49adbd87f9eb49adbd8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49adc407f9eb49adc40 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49adca87f9eb49adca8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49add107f9eb49add10 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49add787f9eb49add78 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49adde07f9eb49adde0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49ade487f9eb49ade48 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49adeb07f9eb49adeb0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49adf187f9eb49adf18 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49adf807f9eb49adf80 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49adfe87f9eb49adfe8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae0507f9eb49ae050 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae0b87f9eb49ae0b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae1207f9eb49ae120 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae1887f9eb49ae188 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae1f07f9eb49ae1f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae2587f9eb49ae258 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae2c07f9eb49ae2c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae3287f9eb49ae328 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae3907f9eb49ae390 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae3f87f9eb49ae3f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae4607f9eb49ae460 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae4c87f9eb49ae4c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae5307f9eb49ae530 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae5987f9eb49ae598 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae6007f9eb49ae600 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae6687f9eb49ae668 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae6d07f9eb49ae6d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae7387f9eb49ae738 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae7a07f9eb49ae7a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae8087f9eb49ae808 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae8707f9eb49ae870 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae8d87f9eb49ae8d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae9407f9eb49ae940 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49ae9a87f9eb49ae9a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49aea107f9eb49aea10 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49aea787f9eb49aea78 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49aeae07f9eb49aeae0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49aeb487f9eb49aeb48 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49aebb07f9eb49aebb0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49aec187f9eb49aec18 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49aec807f9eb49aec80 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49aece87f9eb49aece8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49aed507f9eb49aed50 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49aedb87f9eb49aedb8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49aee207f9eb49aee20 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49aee887f9eb49aee88 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49aeef07f9eb49aeef0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49aef587f9eb49aef58 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49aefc07f9eb49aefc0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49af0287f9eb49af028 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49af0907f9eb49af090 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49af0f87f9eb49af0f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49af1607f9eb49af160 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49af1c87f9eb49af1c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49af2307f9eb49af230 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49af2987f9eb49af298 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49af3007f9eb49af300 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49af3687f9eb49af368 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49af3d07f9eb49af3d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49af4387f9eb49af438 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49af6007f9eb49af600 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49af6687f9eb49af668 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49af6d07f9eb49af6d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49af7387f9eb49af738 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49af7a07f9eb49af7a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49af8087f9eb49af808 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49af8707f9eb49af870 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49af8d87f9eb49af8d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49af9407f9eb49af940 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49af9a87f9eb49af9a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49afa107f9eb49afa10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49afa787f9eb49afa78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49afae07f9eb49afae0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49afb487f9eb49afb48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49afbb07f9eb49afbb0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49afc187f9eb49afc18 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49afc807f9eb49afc80 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49afce87f9eb49afce8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49afd507f9eb49afd50 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49afdb87f9eb49afdb8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49afe207f9eb49afe20 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49afe887f9eb49afe88 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49afef07f9eb49afef0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49aff587f9eb49aff58 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49affc07f9eb49affc0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b00287f9eb49b0028 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b00907f9eb49b0090 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b00f87f9eb49b00f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b01607f9eb49b0160 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b01c87f9eb49b01c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b02307f9eb49b0230 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b02987f9eb49b0298 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b03007f9eb49b0300 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b03687f9eb49b0368 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b03d07f9eb49b03d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b04387f9eb49b0438 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b04a07f9eb49b04a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b05087f9eb49b0508 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b05707f9eb49b0570 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b05d87f9eb49b05d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b06407f9eb49b0640 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b06a87f9eb49b06a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b07107f9eb49b0710 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b07787f9eb49b0778 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b07e07f9eb49b07e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b08487f9eb49b0848 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b08b07f9eb49b08b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b09187f9eb49b0918 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b09807f9eb49b0980 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b09e87f9eb49b09e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b0a507f9eb49b0a50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b0ab87f9eb49b0ab8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b0b207f9eb49b0b20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b0b887f9eb49b0b88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49a78007f9eb49a7800 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49a78687f9eb49a7868 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49a78d07f9eb49a78d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49a79387f9eb49a7938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49a79a07f9eb49a79a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49a7a087f9eb49a7a08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49a7a707f9eb49a7a70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49a7ad87f9eb49a7ad8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49a7b407f9eb49a7b40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49a7ba87f9eb49a7ba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49a7c107f9eb49a7c10 /* 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 */ - FFF22be2bdd07fc42be2bdd0 /* Resources */ = { + FFF2b43495107f9eb4349510 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -233,7 +233,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2be2bdd07fc42be2bdd0 /* Frameworks */ = { + FFFCb43495107f9eb4349510 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -243,52 +243,52 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82be2bdd07fc42be2bdd0 /* Sources */ = { + FFF8b43495107f9eb4349510 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c8368387fc42c836838, - FFFF2c8368a07fc42c8368a0, - FFFF2c8369087fc42c836908, - FFFF2c8369707fc42c836970, - FFFF2c8369d87fc42c8369d8, - FFFF2c836a407fc42c836a40, - FFFF2c836aa87fc42c836aa8, - FFFF2c836b107fc42c836b10, - FFFF2c836b787fc42c836b78, - FFFF2c836be07fc42c836be0, - FFFF2c836c487fc42c836c48, - FFFF2c836cb07fc42c836cb0, - FFFF2c836d187fc42c836d18, - FFFF2c836d807fc42c836d80, - FFFF2c836de87fc42c836de8, - FFFF2c836e507fc42c836e50, - FFFF2c836eb87fc42c836eb8, - FFFF2c836f207fc42c836f20, - FFFF2c836f887fc42c836f88, - FFFF2c836ff07fc42c836ff0, - FFFF2c8370587fc42c837058, - FFFF2c8370c07fc42c8370c0, - FFFF2c8371287fc42c837128, - FFFF2c8371907fc42c837190, - FFFF2c8371f87fc42c8371f8, - FFFF2c8374007fc42c837400, - FFFF2c8374687fc42c837468, - FFFF2c837c207fc42c837c20, - FFFF2c837c887fc42c837c88, - FFFF2c837cf07fc42c837cf0, - FFFF2c837d587fc42c837d58, - FFFF2c837dc07fc42c837dc0, - FFFF2c837e287fc42c837e28, - FFFF2c837e907fc42c837e90, - FFFF2c837ef87fc42c837ef8, - FFFF2c837f607fc42c837f60, - FFFF2c8381007fc42c838100, - FFFF2c8381687fc42c838168, - FFFF2c8381d07fc42c8381d0, - FFFF2c8382387fc42c838238, - FFFF2c839da87fc42c839da8, - FFFF2c839e107fc42c839e10, + FFFFb49ada387f9eb49ada38, + FFFFb49adaa07f9eb49adaa0, + FFFFb49adb087f9eb49adb08, + FFFFb49adb707f9eb49adb70, + FFFFb49adbd87f9eb49adbd8, + FFFFb49adc407f9eb49adc40, + FFFFb49adca87f9eb49adca8, + FFFFb49add107f9eb49add10, + FFFFb49add787f9eb49add78, + FFFFb49adde07f9eb49adde0, + FFFFb49ade487f9eb49ade48, + FFFFb49adeb07f9eb49adeb0, + FFFFb49adf187f9eb49adf18, + FFFFb49adf807f9eb49adf80, + FFFFb49adfe87f9eb49adfe8, + FFFFb49ae0507f9eb49ae050, + FFFFb49ae0b87f9eb49ae0b8, + FFFFb49ae1207f9eb49ae120, + FFFFb49ae1887f9eb49ae188, + FFFFb49ae1f07f9eb49ae1f0, + FFFFb49ae2587f9eb49ae258, + FFFFb49ae2c07f9eb49ae2c0, + FFFFb49ae3287f9eb49ae328, + FFFFb49ae3907f9eb49ae390, + FFFFb49ae3f87f9eb49ae3f8, + FFFFb49ae6007f9eb49ae600, + FFFFb49ae6687f9eb49ae668, + FFFFb49aee207f9eb49aee20, + FFFFb49aee887f9eb49aee88, + FFFFb49aeef07f9eb49aeef0, + FFFFb49aef587f9eb49aef58, + FFFFb49aefc07f9eb49aefc0, + FFFFb49af0287f9eb49af028, + FFFFb49af0907f9eb49af090, + FFFFb49af0f87f9eb49af0f8, + FFFFb49af1607f9eb49af160, + FFFFb49af3007f9eb49af300, + FFFFb49af3687f9eb49af368, + FFFFb49af3d07f9eb49af3d0, + FFFFb49af4387f9eb49af438, + FFFFb49a7ba87f9eb49a7ba8, + FFFFb49a7c107f9eb49a7c10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -297,112 +297,112 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF42be1c2f07fc42be1c2f0 /* PBXTargetDependency */ = { + FFF4b435bdf07f9eb435bdf0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2b9141107fc42b914110 /* LowLevel */; - targetProxy = FFF52b9141107fc42b914110 /* PBXContainerItemProxy */; + target = FFFAb50092607f9eb5009260 /* LowLevel */; + targetProxy = FFF5b50092607f9eb5009260 /* PBXContainerItemProxy */; }; - FFF42be305607fc42be30560 /* PBXTargetDependency */ = { + FFF4b435be507f9eb435be50 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2bdf89e07fc42bdf89e0 /* LowLevelAABB */; - targetProxy = FFF52bdf89e07fc42bdf89e0 /* PBXContainerItemProxy */; + target = FFFAb5034e907f9eb5034e90 /* LowLevelAABB */; + targetProxy = FFF5b5034e907f9eb5034e90 /* PBXContainerItemProxy */; }; - FFF42be381207fc42be38120 /* PBXTargetDependency */ = { + FFF4b435c4c07f9eb435c4c0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2bf138507fc42bf13850 /* LowLevelCloth */; - targetProxy = FFF52bf138507fc42bf13850 /* PBXContainerItemProxy */; + target = FFFAb43314607f9eb4331460 /* LowLevelCloth */; + targetProxy = FFF5b43314607f9eb4331460 /* PBXContainerItemProxy */; }; - FFF42be305c07fc42be305c0 /* PBXTargetDependency */ = { + FFF4b435c4607f9eb435c460 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2b8ca5207fc42b8ca520 /* LowLevelDynamics */; - targetProxy = FFF52b8ca5207fc42b8ca520 /* PBXContainerItemProxy */; + target = FFFAb40739207f9eb4073920 /* LowLevelDynamics */; + targetProxy = FFF5b40739207f9eb4073920 /* PBXContainerItemProxy */; }; - FFF42be381807fc42be38180 /* PBXTargetDependency */ = { + FFF4b43603f07f9eb43603f0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2d1093507fc42d109350 /* LowLevelParticles */; - targetProxy = FFF52d1093507fc42d109350 /* PBXContainerItemProxy */; + target = FFFAb50414c07f9eb50414c0 /* LowLevelParticles */; + targetProxy = FFF5b50414c07f9eb50414c0 /* PBXContainerItemProxy */; }; - FFF42be1a9807fc42be1a980 /* PBXTargetDependency */ = { + FFF4b435f5207f9eb435f520 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2b949d707fc42b949d70 /* PhysXCommon */; - targetProxy = FFF52b949d707fc42b949d70 /* PBXContainerItemProxy */; + target = FFFAb43288707f9eb4328870 /* PhysXCommon */; + targetProxy = FFF5b43288707f9eb4328870 /* PBXContainerItemProxy */; }; - FFF42be2c0c07fc42be2c0c0 /* PBXTargetDependency */ = { + FFF4b43494e07f9eb43494e0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2b95e5907fc42b95e590 /* PxFoundation */; - targetProxy = FFF52b95e5907fc42b95e590 /* PBXContainerItemProxy */; + target = FFFAb430a8607f9eb430a860 /* PxFoundation */; + targetProxy = FFF5b430a8607f9eb430a860 /* PBXContainerItemProxy */; }; - FFF42be2bd707fc42be2bd70 /* PBXTargetDependency */ = { + FFF4b43494807f9eb4349480 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2b8e87e07fc42b8e87e0 /* PxPvdSDK */; - targetProxy = FFF52b8e87e07fc42b8e87e0 /* PBXContainerItemProxy */; + target = FFFAb2c116407f9eb2c11640 /* PxPvdSDK */; + targetProxy = FFF5b2c116407f9eb2c11640 /* PBXContainerItemProxy */; }; - FFF42be33fd07fc42be33fd0 /* PBXTargetDependency */ = { + FFF4b43604e07f9eb43604e0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2b858e007fc42b858e00 /* PxTask */; - targetProxy = FFF52b858e007fc42b858e00 /* PBXContainerItemProxy */; + target = FFFAb50aea707f9eb50aea70 /* PxTask */; + targetProxy = FFF5b50aea707f9eb50aea70 /* PBXContainerItemProxy */; }; - FFF42be33f407fc42be33f40 /* PBXTargetDependency */ = { + FFF4b43604507f9eb4360450 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2be53ef07fc42be53ef0 /* SceneQuery */; - targetProxy = FFF52be53ef07fc42be53ef0 /* PBXContainerItemProxy */; + target = FFFAb5719ba07f9eb5719ba0 /* SceneQuery */; + targetProxy = FFF5b5719ba07f9eb5719ba0 /* PBXContainerItemProxy */; }; - FFF42be33fa07fc42be33fa0 /* PBXTargetDependency */ = { + FFF4b43604b07f9eb43604b0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2be585307fc42be58530 /* SimulationController */; - targetProxy = FFF52be585307fc42be58530 /* PBXContainerItemProxy */; + target = FFFAb571e1e07f9eb571e1e0 /* SimulationController */; + targetProxy = FFF5b571e1e07f9eb571e1e0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCharacterKinematic */ - FFFF2be356807fc42be35680 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD2be415207fc42be41520 /* PhysXExtensions */; }; - FFFF2c833c787fc42c833c78 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c833c787fc42c833c78 /* CctBoxController.cpp */; }; - FFFF2c833ce07fc42c833ce0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c833ce07fc42c833ce0 /* CctCapsuleController.cpp */; }; - FFFF2c833d487fc42c833d48 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c833d487fc42c833d48 /* CctCharacterController.cpp */; }; - FFFF2c833db07fc42c833db0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c833db07fc42c833db0 /* CctCharacterControllerCallbacks.cpp */; }; - FFFF2c833e187fc42c833e18 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c833e187fc42c833e18 /* CctCharacterControllerManager.cpp */; }; - FFFF2c833e807fc42c833e80 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c833e807fc42c833e80 /* CctController.cpp */; }; - FFFF2c833ee87fc42c833ee8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c833ee87fc42c833ee8 /* CctObstacleContext.cpp */; }; - FFFF2c833f507fc42c833f50 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c833f507fc42c833f50 /* CctSweptBox.cpp */; }; - FFFF2c833fb87fc42c833fb8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c833fb87fc42c833fb8 /* CctSweptCapsule.cpp */; }; - FFFF2c8340207fc42c834020 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8340207fc42c834020 /* CctSweptVolume.cpp */; }; + FFFFb4360d107f9eb4360d10 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb57071d07f9eb57071d0 /* PhysXExtensions */; }; + FFFFb49b10787f9eb49b1078 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b10787f9eb49b1078 /* CctBoxController.cpp */; }; + FFFFb49b10e07f9eb49b10e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b10e07f9eb49b10e0 /* CctCapsuleController.cpp */; }; + FFFFb49b11487f9eb49b1148 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b11487f9eb49b1148 /* CctCharacterController.cpp */; }; + FFFFb49b11b07f9eb49b11b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b11b07f9eb49b11b0 /* CctCharacterControllerCallbacks.cpp */; }; + FFFFb49b12187f9eb49b1218 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b12187f9eb49b1218 /* CctCharacterControllerManager.cpp */; }; + FFFFb49b12807f9eb49b1280 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b12807f9eb49b1280 /* CctController.cpp */; }; + FFFFb49b12e87f9eb49b12e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b12e87f9eb49b12e8 /* CctObstacleContext.cpp */; }; + FFFFb49b13507f9eb49b1350 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b13507f9eb49b1350 /* CctSweptBox.cpp */; }; + FFFFb49b13b87f9eb49b13b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b13b87f9eb49b13b8 /* CctSweptCapsule.cpp */; }; + FFFFb49b14207f9eb49b1420 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b14207f9eb49b1420 /* CctSweptVolume.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2be302307fc42be30230 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2be362007fc42be36200 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be362687fc42be36268 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be362d07fc42be362d0 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be363387fc42be36338 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be363a07fc42be363a0 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be364087fc42be36408 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be364707fc42be36470 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be364d87fc42be364d8 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8338007fc42c833800 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8338687fc42c833868 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8338d07fc42c8338d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8339387fc42c833938 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8339a07fc42c8339a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c833a087fc42c833a08 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c833a707fc42c833a70 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c833ad87fc42c833ad8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c833b407fc42c833b40 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c833ba87fc42c833ba8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c833c107fc42c833c10 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c833c787fc42c833c78 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c833ce07fc42c833ce0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c833d487fc42c833d48 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c833db07fc42c833db0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c833e187fc42c833e18 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c833e807fc42c833e80 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c833ee87fc42c833ee8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c833f507fc42c833f50 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c833fb87fc42c833fb8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8340207fc42c834020 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb43604f07f9eb43604f0 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb43633307f9eb4363330 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb43633987f9eb4363398 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb43634007f9eb4363400 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb43634687f9eb4363468 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb43634d07f9eb43634d0 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; + FFFDb43635387f9eb4363538 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb43635a07f9eb43635a0 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; + FFFDb43636087f9eb4363608 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b0c007f9eb49b0c00 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b0c687f9eb49b0c68 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b0cd07f9eb49b0cd0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b0d387f9eb49b0d38 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b0da07f9eb49b0da0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b0e087f9eb49b0e08 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b0e707f9eb49b0e70 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b0ed87f9eb49b0ed8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b0f407f9eb49b0f40 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b0fa87f9eb49b0fa8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b10107f9eb49b1010 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b10787f9eb49b1078 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b10e07f9eb49b10e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b11487f9eb49b1148 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b11b07f9eb49b11b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b12187f9eb49b1218 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b12807f9eb49b1280 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b12e87f9eb49b12e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b13507f9eb49b1350 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b13b87f9eb49b13b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b14207f9eb49b1420 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF22be302307fc42be30230 /* Resources */ = { + FFF2b43604f07f9eb43604f0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -412,7 +412,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2be302307fc42be30230 /* Frameworks */ = { + FFFCb43604f07f9eb43604f0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -422,20 +422,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82be302307fc42be30230 /* Sources */ = { + FFF8b43604f07f9eb43604f0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c833c787fc42c833c78, - FFFF2c833ce07fc42c833ce0, - FFFF2c833d487fc42c833d48, - FFFF2c833db07fc42c833db0, - FFFF2c833e187fc42c833e18, - FFFF2c833e807fc42c833e80, - FFFF2c833ee87fc42c833ee8, - FFFF2c833f507fc42c833f50, - FFFF2c833fb87fc42c833fb8, - FFFF2c8340207fc42c834020, + FFFFb49b10787f9eb49b1078, + FFFFb49b10e07f9eb49b10e0, + FFFFb49b11487f9eb49b1148, + FFFFb49b11b07f9eb49b11b0, + FFFFb49b12187f9eb49b1218, + FFFFb49b12807f9eb49b1280, + FFFFb49b12e87f9eb49b12e8, + FFFFb49b13507f9eb49b1350, + FFFFb49b13b87f9eb49b13b8, + FFFFb49b14207f9eb49b1420, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -444,91 +444,91 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF42be316a07fc42be316a0 /* PBXTargetDependency */ = { + FFF4b435d4507f9eb435d450 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2b949d707fc42b949d70 /* PhysXCommon */; - targetProxy = FFF52b949d707fc42b949d70 /* PBXContainerItemProxy */; + target = FFFAb43288707f9eb4328870 /* PhysXCommon */; + targetProxy = FFF5b43288707f9eb4328870 /* PBXContainerItemProxy */; }; - FFF42be356807fc42be35680 /* PBXTargetDependency */ = { + FFF4b4360d107f9eb4360d10 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2be415207fc42be41520 /* PhysXExtensions */; - targetProxy = FFF52be415207fc42be41520 /* PBXContainerItemProxy */; + target = FFFAb57071d07f9eb57071d0 /* PhysXExtensions */; + targetProxy = FFF5b57071d07f9eb57071d0 /* PBXContainerItemProxy */; }; - FFF42be347507fc42be34750 /* PBXTargetDependency */ = { + FFF4b435d2507f9eb435d250 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2b95e5907fc42b95e590 /* PxFoundation */; - targetProxy = FFF52b95e5907fc42b95e590 /* PBXContainerItemProxy */; + target = FFFAb430a8607f9eb430a860 /* PxFoundation */; + targetProxy = FFF5b430a8607f9eb430a860 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXVehicle */ - FFFF2c83fa087fc42c83fa08 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c83fa087fc42c83fa08 /* PxVehicleComponents.cpp */; }; - FFFF2c83fa707fc42c83fa70 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c83fa707fc42c83fa70 /* PxVehicleDrive.cpp */; }; - FFFF2c83fad87fc42c83fad8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c83fad87fc42c83fad8 /* PxVehicleDrive4W.cpp */; }; - FFFF2c83fb407fc42c83fb40 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c83fb407fc42c83fb40 /* PxVehicleDriveNW.cpp */; }; - FFFF2c83fba87fc42c83fba8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c83fba87fc42c83fba8 /* PxVehicleDriveTank.cpp */; }; - FFFF2c83fc107fc42c83fc10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c83fc107fc42c83fc10 /* PxVehicleMetaData.cpp */; }; - FFFF2c83fc787fc42c83fc78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c83fc787fc42c83fc78 /* PxVehicleNoDrive.cpp */; }; - FFFF2c83fce07fc42c83fce0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c83fce07fc42c83fce0 /* PxVehicleSDK.cpp */; }; - FFFF2c83fd487fc42c83fd48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c83fd487fc42c83fd48 /* PxVehicleSerialization.cpp */; }; - FFFF2c83fdb07fc42c83fdb0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c83fdb07fc42c83fdb0 /* PxVehicleSuspWheelTire4.cpp */; }; - FFFF2c83fe187fc42c83fe18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c83fe187fc42c83fe18 /* PxVehicleTireFriction.cpp */; }; - FFFF2c83fe807fc42c83fe80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c83fe807fc42c83fe80 /* PxVehicleUpdate.cpp */; }; - FFFF2c83fee87fc42c83fee8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c83fee87fc42c83fee8 /* PxVehicleWheels.cpp */; }; - FFFF2c83ff507fc42c83ff50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c83ff507fc42c83ff50 /* VehicleUtilControl.cpp */; }; - FFFF2c83ffb87fc42c83ffb8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c83ffb87fc42c83ffb8 /* VehicleUtilSetup.cpp */; }; - FFFF2c8400207fc42c840020 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8400207fc42c840020 /* VehicleUtilTelemetry.cpp */; }; - FFFF2be433f87fc42be433f8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD2be433f87fc42be433f8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; - FFFF2be434607fc42be43460 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD2be434607fc42be43460 /* src/PxVehicleMetaDataObjects.cpp */; }; + FFFFb49b52087f9eb49b5208 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b52087f9eb49b5208 /* PxVehicleComponents.cpp */; }; + FFFFb49b52707f9eb49b5270 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b52707f9eb49b5270 /* PxVehicleDrive.cpp */; }; + FFFFb49b52d87f9eb49b52d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b52d87f9eb49b52d8 /* PxVehicleDrive4W.cpp */; }; + FFFFb49b53407f9eb49b5340 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b53407f9eb49b5340 /* PxVehicleDriveNW.cpp */; }; + FFFFb49b53a87f9eb49b53a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b53a87f9eb49b53a8 /* PxVehicleDriveTank.cpp */; }; + FFFFb49b54107f9eb49b5410 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b54107f9eb49b5410 /* PxVehicleMetaData.cpp */; }; + FFFFb49b54787f9eb49b5478 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b54787f9eb49b5478 /* PxVehicleNoDrive.cpp */; }; + FFFFb49b54e07f9eb49b54e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b54e07f9eb49b54e0 /* PxVehicleSDK.cpp */; }; + FFFFb49b55487f9eb49b5548 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b55487f9eb49b5548 /* PxVehicleSerialization.cpp */; }; + FFFFb49b55b07f9eb49b55b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b55b07f9eb49b55b0 /* PxVehicleSuspWheelTire4.cpp */; }; + FFFFb49b56187f9eb49b5618 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b56187f9eb49b5618 /* PxVehicleTireFriction.cpp */; }; + FFFFb49b56807f9eb49b5680 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b56807f9eb49b5680 /* PxVehicleUpdate.cpp */; }; + FFFFb49b56e87f9eb49b56e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b56e87f9eb49b56e8 /* PxVehicleWheels.cpp */; }; + FFFFb49b57507f9eb49b5750 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b57507f9eb49b5750 /* VehicleUtilControl.cpp */; }; + FFFFb49b57b87f9eb49b57b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b57b87f9eb49b57b8 /* VehicleUtilSetup.cpp */; }; + FFFFb49b58207f9eb49b5820 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b58207f9eb49b5820 /* VehicleUtilTelemetry.cpp */; }; + FFFFb57090a87f9eb57090a8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb57090a87f9eb57090a8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; + FFFFb57091107f9eb5709110 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb57091107f9eb5709110 /* src/PxVehicleMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2be373c07fc42be373c0 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c83da007fc42c83da00 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83da687fc42c83da68 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83dad07fc42c83dad0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83db387fc42c83db38 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83dba07fc42c83dba0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83dc087fc42c83dc08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83dc707fc42c83dc70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83dcd87fc42c83dcd8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83dd407fc42c83dd40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83dda87fc42c83dda8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83de107fc42c83de10 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83de787fc42c83de78 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83dee07fc42c83dee0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83df487fc42c83df48 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83dfb07fc42c83dfb0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83f8007fc42c83f800 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83f8687fc42c83f868 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83f8d07fc42c83f8d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83f9387fc42c83f938 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83f9a07fc42c83f9a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c83fa087fc42c83fa08 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c83fa707fc42c83fa70 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c83fad87fc42c83fad8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c83fb407fc42c83fb40 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c83fba87fc42c83fba8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c83fc107fc42c83fc10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c83fc787fc42c83fc78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c83fce07fc42c83fce0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c83fd487fc42c83fd48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c83fdb07fc42c83fdb0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c83fe187fc42c83fe18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c83fe807fc42c83fe80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c83fee87fc42c83fee8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c83ff507fc42c83ff50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c83ffb87fc42c83ffb8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8400207fc42c840020 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2be432c07fc42be432c0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be433287fc42be43328 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be433907fc42be43390 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be433f87fc42be433f8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2be434607fc42be43460 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb435d6307f9eb435d630 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb49b32007f9eb49b3200 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b32687f9eb49b3268 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b32d07f9eb49b32d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b33387f9eb49b3338 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b33a07f9eb49b33a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b34087f9eb49b3408 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b34707f9eb49b3470 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b34d87f9eb49b34d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b35407f9eb49b3540 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b35a87f9eb49b35a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b36107f9eb49b3610 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b36787f9eb49b3678 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b36e07f9eb49b36e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b37487f9eb49b3748 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b37b07f9eb49b37b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b50007f9eb49b5000 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b50687f9eb49b5068 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b50d07f9eb49b50d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b51387f9eb49b5138 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b51a07f9eb49b51a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b52087f9eb49b5208 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b52707f9eb49b5270 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b52d87f9eb49b52d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b53407f9eb49b5340 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b53a87f9eb49b53a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b54107f9eb49b5410 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b54787f9eb49b5478 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b54e07f9eb49b54e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b55487f9eb49b5548 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b55b07f9eb49b55b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b56187f9eb49b5618 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b56807f9eb49b5680 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b56e87f9eb49b56e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b57507f9eb49b5750 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b57b87f9eb49b57b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b58207f9eb49b5820 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb5708f707f9eb5708f70 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDb5708fd87f9eb5708fd8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb57090407f9eb5709040 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb57090a87f9eb57090a8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb57091107f9eb5709110 /* 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 */ - FFF22be373c07fc42be373c0 /* Resources */ = { + FFF2b435d6307f9eb435d630 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -538,7 +538,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2be373c07fc42be373c0 /* Frameworks */ = { + FFFCb435d6307f9eb435d630 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -548,28 +548,28 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82be373c07fc42be373c0 /* Sources */ = { + FFF8b435d6307f9eb435d630 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c83fa087fc42c83fa08, - FFFF2c83fa707fc42c83fa70, - FFFF2c83fad87fc42c83fad8, - FFFF2c83fb407fc42c83fb40, - FFFF2c83fba87fc42c83fba8, - FFFF2c83fc107fc42c83fc10, - FFFF2c83fc787fc42c83fc78, - FFFF2c83fce07fc42c83fce0, - FFFF2c83fd487fc42c83fd48, - FFFF2c83fdb07fc42c83fdb0, - FFFF2c83fe187fc42c83fe18, - FFFF2c83fe807fc42c83fe80, - FFFF2c83fee87fc42c83fee8, - FFFF2c83ff507fc42c83ff50, - FFFF2c83ffb87fc42c83ffb8, - FFFF2c8400207fc42c840020, - FFFF2be433f87fc42be433f8, - FFFF2be434607fc42be43460, + FFFFb49b52087f9eb49b5208, + FFFFb49b52707f9eb49b5270, + FFFFb49b52d87f9eb49b52d8, + FFFFb49b53407f9eb49b5340, + FFFFb49b53a87f9eb49b53a8, + FFFFb49b54107f9eb49b5410, + FFFFb49b54787f9eb49b5478, + FFFFb49b54e07f9eb49b54e0, + FFFFb49b55487f9eb49b5548, + FFFFb49b55b07f9eb49b55b0, + FFFFb49b56187f9eb49b5618, + FFFFb49b56807f9eb49b5680, + FFFFb49b56e87f9eb49b56e8, + FFFFb49b57507f9eb49b5750, + FFFFb49b57b87f9eb49b57b8, + FFFFb49b58207f9eb49b5820, + FFFFb57090a87f9eb57090a8, + FFFFb57091107f9eb5709110, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -581,220 +581,220 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXExtensions */ - FFFF2c8420e87fc42c8420e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8420e87fc42c8420e8 /* ExtBroadPhase.cpp */; }; - FFFF2c8421507fc42c842150 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8421507fc42c842150 /* ExtClothFabricCooker.cpp */; }; - FFFF2c8421b87fc42c8421b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8421b87fc42c8421b8 /* ExtClothGeodesicTetherCooker.cpp */; }; - FFFF2c8422207fc42c842220 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8422207fc42c842220 /* ExtClothMeshQuadifier.cpp */; }; - FFFF2c8422887fc42c842288 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8422887fc42c842288 /* ExtClothSimpleTetherCooker.cpp */; }; - FFFF2c8422f07fc42c8422f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8422f07fc42c8422f0 /* ExtCollection.cpp */; }; - FFFF2c8423587fc42c842358 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8423587fc42c842358 /* ExtConvexMeshExt.cpp */; }; - FFFF2c8423c07fc42c8423c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8423c07fc42c8423c0 /* ExtCpuWorkerThread.cpp */; }; - FFFF2c8424287fc42c842428 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8424287fc42c842428 /* ExtD6Joint.cpp */; }; - FFFF2c8424907fc42c842490 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8424907fc42c842490 /* ExtD6JointSolverPrep.cpp */; }; - FFFF2c8424f87fc42c8424f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8424f87fc42c8424f8 /* ExtDefaultCpuDispatcher.cpp */; }; - FFFF2c8425607fc42c842560 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8425607fc42c842560 /* ExtDefaultErrorCallback.cpp */; }; - FFFF2c8425c87fc42c8425c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8425c87fc42c8425c8 /* ExtDefaultSimulationFilterShader.cpp */; }; - FFFF2c8426307fc42c842630 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8426307fc42c842630 /* ExtDefaultStreams.cpp */; }; - FFFF2c8426987fc42c842698 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8426987fc42c842698 /* ExtDistanceJoint.cpp */; }; - FFFF2c8427007fc42c842700 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8427007fc42c842700 /* ExtDistanceJointSolverPrep.cpp */; }; - FFFF2c8427687fc42c842768 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8427687fc42c842768 /* ExtExtensions.cpp */; }; - FFFF2c8427d07fc42c8427d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8427d07fc42c8427d0 /* ExtFixedJoint.cpp */; }; - FFFF2c8428387fc42c842838 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8428387fc42c842838 /* ExtFixedJointSolverPrep.cpp */; }; - FFFF2c8428a07fc42c8428a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8428a07fc42c8428a0 /* ExtJoint.cpp */; }; - FFFF2c8429087fc42c842908 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8429087fc42c842908 /* ExtMetaData.cpp */; }; - FFFF2c8429707fc42c842970 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8429707fc42c842970 /* ExtParticleExt.cpp */; }; - FFFF2c8429d87fc42c8429d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8429d87fc42c8429d8 /* ExtPrismaticJoint.cpp */; }; - FFFF2c842a407fc42c842a40 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c842a407fc42c842a40 /* ExtPrismaticJointSolverPrep.cpp */; }; - FFFF2c842aa87fc42c842aa8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c842aa87fc42c842aa8 /* ExtPvd.cpp */; }; - FFFF2c842b107fc42c842b10 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c842b107fc42c842b10 /* ExtPxStringTable.cpp */; }; - FFFF2c842b787fc42c842b78 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c842b787fc42c842b78 /* ExtRaycastCCD.cpp */; }; - FFFF2c842be07fc42c842be0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c842be07fc42c842be0 /* ExtRevoluteJoint.cpp */; }; - FFFF2c842c487fc42c842c48 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c842c487fc42c842c48 /* ExtRevoluteJointSolverPrep.cpp */; }; - FFFF2c842cb07fc42c842cb0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c842cb07fc42c842cb0 /* ExtRigidBodyExt.cpp */; }; - FFFF2c842d187fc42c842d18 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c842d187fc42c842d18 /* ExtSceneQueryExt.cpp */; }; - FFFF2c842d807fc42c842d80 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c842d807fc42c842d80 /* ExtSimpleFactory.cpp */; }; - FFFF2c842de87fc42c842de8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c842de87fc42c842de8 /* ExtSmoothNormals.cpp */; }; - FFFF2c842e507fc42c842e50 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c842e507fc42c842e50 /* ExtSphericalJoint.cpp */; }; - FFFF2c842eb87fc42c842eb8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c842eb87fc42c842eb8 /* ExtSphericalJointSolverPrep.cpp */; }; - FFFF2c842f207fc42c842f20 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c842f207fc42c842f20 /* ExtTriangleMeshExt.cpp */; }; - FFFF2c8464d07fc42c8464d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8464d07fc42c8464d0 /* SnSerialUtils.cpp */; }; - FFFF2c8465387fc42c846538 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8465387fc42c846538 /* SnSerialization.cpp */; }; - FFFF2c8465a07fc42c8465a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8465a07fc42c8465a0 /* SnSerializationRegistry.cpp */; }; - FFFF2c8468e07fc42c8468e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8468e07fc42c8468e0 /* Binary/SnBinaryDeserialization.cpp */; }; - FFFF2c8469487fc42c846948 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8469487fc42c846948 /* Binary/SnBinarySerialization.cpp */; }; - FFFF2c8469b07fc42c8469b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8469b07fc42c8469b0 /* Binary/SnConvX.cpp */; }; - FFFF2c846a187fc42c846a18 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c846a187fc42c846a18 /* Binary/SnConvX_Align.cpp */; }; - FFFF2c846a807fc42c846a80 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c846a807fc42c846a80 /* Binary/SnConvX_Convert.cpp */; }; - FFFF2c846ae87fc42c846ae8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c846ae87fc42c846ae8 /* Binary/SnConvX_Error.cpp */; }; - FFFF2c846b507fc42c846b50 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c846b507fc42c846b50 /* Binary/SnConvX_MetaData.cpp */; }; - FFFF2c846bb87fc42c846bb8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c846bb87fc42c846bb8 /* Binary/SnConvX_Output.cpp */; }; - FFFF2c846c207fc42c846c20 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c846c207fc42c846c20 /* Binary/SnConvX_Union.cpp */; }; - FFFF2c846c887fc42c846c88 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c846c887fc42c846c88 /* Binary/SnSerializationContext.cpp */; }; - FFFF2c8475e07fc42c8475e0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8475e07fc42c8475e0 /* Xml/SnJointRepXSerializer.cpp */; }; - FFFF2c8476487fc42c847648 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8476487fc42c847648 /* Xml/SnRepXCoreSerializer.cpp */; }; - FFFF2c8476b07fc42c8476b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8476b07fc42c8476b0 /* Xml/SnRepXUpgrader.cpp */; }; - FFFF2c8477187fc42c847718 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8477187fc42c847718 /* Xml/SnXmlSerialization.cpp */; }; - FFFF2c8444e07fc42c8444e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD2c8444e07fc42c8444e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; + FFFFb49b78e87f9eb49b78e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b78e87f9eb49b78e8 /* ExtBroadPhase.cpp */; }; + FFFFb49b79507f9eb49b7950 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b79507f9eb49b7950 /* ExtClothFabricCooker.cpp */; }; + FFFFb49b79b87f9eb49b79b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b79b87f9eb49b79b8 /* ExtClothGeodesicTetherCooker.cpp */; }; + FFFFb49b7a207f9eb49b7a20 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b7a207f9eb49b7a20 /* ExtClothMeshQuadifier.cpp */; }; + FFFFb49b7a887f9eb49b7a88 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b7a887f9eb49b7a88 /* ExtClothSimpleTetherCooker.cpp */; }; + FFFFb49b7af07f9eb49b7af0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b7af07f9eb49b7af0 /* ExtCollection.cpp */; }; + FFFFb49b7b587f9eb49b7b58 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b7b587f9eb49b7b58 /* ExtConvexMeshExt.cpp */; }; + FFFFb49b7bc07f9eb49b7bc0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b7bc07f9eb49b7bc0 /* ExtCpuWorkerThread.cpp */; }; + FFFFb49b7c287f9eb49b7c28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b7c287f9eb49b7c28 /* ExtD6Joint.cpp */; }; + FFFFb49b7c907f9eb49b7c90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b7c907f9eb49b7c90 /* ExtD6JointSolverPrep.cpp */; }; + FFFFb49b7cf87f9eb49b7cf8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b7cf87f9eb49b7cf8 /* ExtDefaultCpuDispatcher.cpp */; }; + FFFFb49b7d607f9eb49b7d60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b7d607f9eb49b7d60 /* ExtDefaultErrorCallback.cpp */; }; + FFFFb49b7dc87f9eb49b7dc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b7dc87f9eb49b7dc8 /* ExtDefaultSimulationFilterShader.cpp */; }; + FFFFb49b7e307f9eb49b7e30 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b7e307f9eb49b7e30 /* ExtDefaultStreams.cpp */; }; + FFFFb49b7e987f9eb49b7e98 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b7e987f9eb49b7e98 /* ExtDistanceJoint.cpp */; }; + FFFFb49b7f007f9eb49b7f00 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b7f007f9eb49b7f00 /* ExtDistanceJointSolverPrep.cpp */; }; + FFFFb49b7f687f9eb49b7f68 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b7f687f9eb49b7f68 /* ExtExtensions.cpp */; }; + FFFFb49b7fd07f9eb49b7fd0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b7fd07f9eb49b7fd0 /* ExtFixedJoint.cpp */; }; + FFFFb49b80387f9eb49b8038 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b80387f9eb49b8038 /* ExtFixedJointSolverPrep.cpp */; }; + FFFFb49b80a07f9eb49b80a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b80a07f9eb49b80a0 /* ExtJoint.cpp */; }; + FFFFb49b81087f9eb49b8108 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b81087f9eb49b8108 /* ExtMetaData.cpp */; }; + FFFFb49b81707f9eb49b8170 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b81707f9eb49b8170 /* ExtParticleExt.cpp */; }; + FFFFb49b81d87f9eb49b81d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b81d87f9eb49b81d8 /* ExtPrismaticJoint.cpp */; }; + FFFFb49b82407f9eb49b8240 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b82407f9eb49b8240 /* ExtPrismaticJointSolverPrep.cpp */; }; + FFFFb49b82a87f9eb49b82a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b82a87f9eb49b82a8 /* ExtPvd.cpp */; }; + FFFFb49b83107f9eb49b8310 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b83107f9eb49b8310 /* ExtPxStringTable.cpp */; }; + FFFFb49b83787f9eb49b8378 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b83787f9eb49b8378 /* ExtRaycastCCD.cpp */; }; + FFFFb49b83e07f9eb49b83e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b83e07f9eb49b83e0 /* ExtRevoluteJoint.cpp */; }; + FFFFb49b84487f9eb49b8448 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b84487f9eb49b8448 /* ExtRevoluteJointSolverPrep.cpp */; }; + FFFFb49b84b07f9eb49b84b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b84b07f9eb49b84b0 /* ExtRigidBodyExt.cpp */; }; + FFFFb49b85187f9eb49b8518 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b85187f9eb49b8518 /* ExtSceneQueryExt.cpp */; }; + FFFFb49b85807f9eb49b8580 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b85807f9eb49b8580 /* ExtSimpleFactory.cpp */; }; + FFFFb49b85e87f9eb49b85e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b85e87f9eb49b85e8 /* ExtSmoothNormals.cpp */; }; + FFFFb49b86507f9eb49b8650 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b86507f9eb49b8650 /* ExtSphericalJoint.cpp */; }; + FFFFb49b86b87f9eb49b86b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b86b87f9eb49b86b8 /* ExtSphericalJointSolverPrep.cpp */; }; + FFFFb49b87207f9eb49b8720 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49b87207f9eb49b8720 /* ExtTriangleMeshExt.cpp */; }; + FFFFb49baed07f9eb49baed0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49baed07f9eb49baed0 /* SnSerialUtils.cpp */; }; + FFFFb49baf387f9eb49baf38 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49baf387f9eb49baf38 /* SnSerialization.cpp */; }; + FFFFb49bafa07f9eb49bafa0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49bafa07f9eb49bafa0 /* SnSerializationRegistry.cpp */; }; + FFFFb49bb2e07f9eb49bb2e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49bb2e07f9eb49bb2e0 /* Binary/SnBinaryDeserialization.cpp */; }; + FFFFb49bb3487f9eb49bb348 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49bb3487f9eb49bb348 /* Binary/SnBinarySerialization.cpp */; }; + FFFFb49bb3b07f9eb49bb3b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49bb3b07f9eb49bb3b0 /* Binary/SnConvX.cpp */; }; + FFFFb49bb4187f9eb49bb418 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49bb4187f9eb49bb418 /* Binary/SnConvX_Align.cpp */; }; + FFFFb49bb4807f9eb49bb480 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49bb4807f9eb49bb480 /* Binary/SnConvX_Convert.cpp */; }; + FFFFb49bb4e87f9eb49bb4e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49bb4e87f9eb49bb4e8 /* Binary/SnConvX_Error.cpp */; }; + FFFFb49bb5507f9eb49bb550 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49bb5507f9eb49bb550 /* Binary/SnConvX_MetaData.cpp */; }; + FFFFb49bb5b87f9eb49bb5b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49bb5b87f9eb49bb5b8 /* Binary/SnConvX_Output.cpp */; }; + FFFFb49bb6207f9eb49bb620 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49bb6207f9eb49bb620 /* Binary/SnConvX_Union.cpp */; }; + FFFFb49bb6887f9eb49bb688 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49bb6887f9eb49bb688 /* Binary/SnSerializationContext.cpp */; }; + FFFFb49bbfe07f9eb49bbfe0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49bbfe07f9eb49bbfe0 /* Xml/SnJointRepXSerializer.cpp */; }; + FFFFb49bc0487f9eb49bc048 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49bc0487f9eb49bc048 /* Xml/SnRepXCoreSerializer.cpp */; }; + FFFFb49bc0b07f9eb49bc0b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49bc0b07f9eb49bc0b0 /* Xml/SnRepXUpgrader.cpp */; }; + FFFFb49bc1187f9eb49bc118 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFDb49bc1187f9eb49bc118 /* Xml/SnXmlSerialization.cpp */; }; + FFFFb49b9ce07f9eb49b9ce0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFDb49b9ce07f9eb49b9ce0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2be415207fc42be41520 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c8430007fc42c843000 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8430687fc42c843068 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8430d07fc42c8430d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8431387fc42c843138 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8431a07fc42c8431a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8432087fc42c843208 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8432707fc42c843270 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8432d87fc42c8432d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8433407fc42c843340 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8433a87fc42c8433a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8434107fc42c843410 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8434787fc42c843478 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8434e07fc42c8434e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8435487fc42c843548 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8435b07fc42c8435b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8436187fc42c843618 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8436807fc42c843680 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8436e87fc42c8436e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8437507fc42c843750 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8437b87fc42c8437b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8438207fc42c843820 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8438887fc42c843888 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8438f07fc42c8438f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8439587fc42c843958 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8439c07fc42c8439c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c843a287fc42c843a28 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c843a907fc42c843a90 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c843af87fc42c843af8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c843b607fc42c843b60 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c843bc87fc42c843bc8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c843c307fc42c843c30 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c843c987fc42c843c98 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c843d007fc42c843d00 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c843d687fc42c843d68 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c843dd07fc42c843dd0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c843e387fc42c843e38 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c843ea07fc42c843ea0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c841a007fc42c841a00 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c841a687fc42c841a68 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c841ad07fc42c841ad0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c841b387fc42c841b38 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c841ba07fc42c841ba0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c841c087fc42c841c08 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c841c707fc42c841c70 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c841cd87fc42c841cd8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c841d407fc42c841d40 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c841da87fc42c841da8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c841e107fc42c841e10 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c841e787fc42c841e78 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c841ee07fc42c841ee0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c841f487fc42c841f48 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c841fb07fc42c841fb0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8420187fc42c842018 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8420807fc42c842080 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8420e87fc42c8420e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8421507fc42c842150 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8421b87fc42c8421b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8422207fc42c842220 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8422887fc42c842288 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8422f07fc42c8422f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8423587fc42c842358 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8423c07fc42c8423c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8424287fc42c842428 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8424907fc42c842490 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8424f87fc42c8424f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8425607fc42c842560 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8425c87fc42c8425c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8426307fc42c842630 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8426987fc42c842698 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8427007fc42c842700 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8427687fc42c842768 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8427d07fc42c8427d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8428387fc42c842838 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8428a07fc42c8428a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8429087fc42c842908 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8429707fc42c842970 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8429d87fc42c8429d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c842a407fc42c842a40 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c842aa87fc42c842aa8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c842b107fc42c842b10 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c842b787fc42c842b78 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c842be07fc42c842be0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c842c487fc42c842c48 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c842cb07fc42c842cb0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c842d187fc42c842d18 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c842d807fc42c842d80 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c842de87fc42c842de8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c842e507fc42c842e50 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c842eb87fc42c842eb8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c842f207fc42c842f20 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8464007fc42c846400 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8464687fc42c846468 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8464d07fc42c8464d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8465387fc42c846538 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8465a07fc42c8465a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8466087fc42c846608 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8466707fc42c846670 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8466d87fc42c8466d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8467407fc42c846740 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8467a87fc42c8467a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8468107fc42c846810 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8468787fc42c846878 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8468e07fc42c8468e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8469487fc42c846948 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8469b07fc42c8469b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c846a187fc42c846a18 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c846a807fc42c846a80 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c846ae87fc42c846ae8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c846b507fc42c846b50 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c846bb87fc42c846bb8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c846c207fc42c846c20 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c846c887fc42c846c88 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c846cf07fc42c846cf0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c846d587fc42c846d58 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c846dc07fc42c846dc0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c846e287fc42c846e28 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c846e907fc42c846e90 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c846ef87fc42c846ef8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c846f607fc42c846f60 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c846fc87fc42c846fc8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8470307fc42c847030 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8470987fc42c847098 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8471007fc42c847100 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8471687fc42c847168 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8471d07fc42c8471d0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8472387fc42c847238 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8472a07fc42c8472a0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8473087fc42c847308 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8473707fc42c847370 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8473d87fc42c8473d8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8474407fc42c847440 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8474a87fc42c8474a8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8475107fc42c847510 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8475787fc42c847578 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8475e07fc42c8475e0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8476487fc42c847648 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8476b07fc42c8476b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8477187fc42c847718 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8477807fc42c847780 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8440007fc42c844000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8440687fc42c844068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8440d07fc42c8440d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8441387fc42c844138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8441a07fc42c8441a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8442087fc42c844208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8442707fc42c844270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8442d87fc42c8442d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8443407fc42c844340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8443a87fc42c8443a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8444107fc42c844410 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8444787fc42c844478 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8444e07fc42c8444e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb57071d07f9eb57071d0 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb49b88007f9eb49b8800 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b88687f9eb49b8868 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b88d07f9eb49b88d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b89387f9eb49b8938 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b89a07f9eb49b89a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b8a087f9eb49b8a08 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b8a707f9eb49b8a70 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b8ad87f9eb49b8ad8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b8b407f9eb49b8b40 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b8ba87f9eb49b8ba8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b8c107f9eb49b8c10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b8c787f9eb49b8c78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b8ce07f9eb49b8ce0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b8d487f9eb49b8d48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b8db07f9eb49b8db0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b8e187f9eb49b8e18 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b8e807f9eb49b8e80 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b8ee87f9eb49b8ee8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b8f507f9eb49b8f50 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b8fb87f9eb49b8fb8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b90207f9eb49b9020 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b90887f9eb49b9088 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b90f07f9eb49b90f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b91587f9eb49b9158 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b91c07f9eb49b91c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b92287f9eb49b9228 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b92907f9eb49b9290 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b92f87f9eb49b92f8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b93607f9eb49b9360 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b93c87f9eb49b93c8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b94307f9eb49b9430 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b94987f9eb49b9498 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b95007f9eb49b9500 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b95687f9eb49b9568 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b95d07f9eb49b95d0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b96387f9eb49b9638 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b96a07f9eb49b96a0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b72007f9eb49b7200 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b72687f9eb49b7268 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b72d07f9eb49b72d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b73387f9eb49b7338 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b73a07f9eb49b73a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b74087f9eb49b7408 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b74707f9eb49b7470 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b74d87f9eb49b74d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b75407f9eb49b7540 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b75a87f9eb49b75a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b76107f9eb49b7610 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b76787f9eb49b7678 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b76e07f9eb49b76e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b77487f9eb49b7748 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b77b07f9eb49b77b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b78187f9eb49b7818 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b78807f9eb49b7880 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b78e87f9eb49b78e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b79507f9eb49b7950 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b79b87f9eb49b79b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b7a207f9eb49b7a20 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b7a887f9eb49b7a88 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b7af07f9eb49b7af0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b7b587f9eb49b7b58 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b7bc07f9eb49b7bc0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b7c287f9eb49b7c28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b7c907f9eb49b7c90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b7cf87f9eb49b7cf8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b7d607f9eb49b7d60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b7dc87f9eb49b7dc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b7e307f9eb49b7e30 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b7e987f9eb49b7e98 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b7f007f9eb49b7f00 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b7f687f9eb49b7f68 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b7fd07f9eb49b7fd0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b80387f9eb49b8038 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b80a07f9eb49b80a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b81087f9eb49b8108 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b81707f9eb49b8170 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b81d87f9eb49b81d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b82407f9eb49b8240 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b82a87f9eb49b82a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b83107f9eb49b8310 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b83787f9eb49b8378 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b83e07f9eb49b83e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b84487f9eb49b8448 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b84b07f9eb49b84b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b85187f9eb49b8518 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b85807f9eb49b8580 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b85e87f9eb49b85e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b86507f9eb49b8650 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b86b87f9eb49b86b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49b87207f9eb49b8720 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bae007f9eb49bae00 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bae687f9eb49bae68 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49baed07f9eb49baed0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49baf387f9eb49baf38 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bafa07f9eb49bafa0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb0087f9eb49bb008 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb0707f9eb49bb070 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb0d87f9eb49bb0d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb1407f9eb49bb140 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb1a87f9eb49bb1a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb2107f9eb49bb210 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb2787f9eb49bb278 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb2e07f9eb49bb2e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb3487f9eb49bb348 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb3b07f9eb49bb3b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb4187f9eb49bb418 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb4807f9eb49bb480 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb4e87f9eb49bb4e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb5507f9eb49bb550 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb5b87f9eb49bb5b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb6207f9eb49bb620 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb6887f9eb49bb688 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb6f07f9eb49bb6f0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb7587f9eb49bb758 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb7c07f9eb49bb7c0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb8287f9eb49bb828 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb8907f9eb49bb890 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb8f87f9eb49bb8f8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb9607f9eb49bb960 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bb9c87f9eb49bb9c8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bba307f9eb49bba30 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bba987f9eb49bba98 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bbb007f9eb49bbb00 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bbb687f9eb49bbb68 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bbbd07f9eb49bbbd0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bbc387f9eb49bbc38 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bbca07f9eb49bbca0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bbd087f9eb49bbd08 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bbd707f9eb49bbd70 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bbdd87f9eb49bbdd8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bbe407f9eb49bbe40 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bbea87f9eb49bbea8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bbf107f9eb49bbf10 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bbf787f9eb49bbf78 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49bbfe07f9eb49bbfe0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bc0487f9eb49bc048 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bc0b07f9eb49bc0b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bc1187f9eb49bc118 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49bc1807f9eb49bc180 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b98007f9eb49b9800 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b98687f9eb49b9868 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b98d07f9eb49b98d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b99387f9eb49b9938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b99a07f9eb49b99a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b9a087f9eb49b9a08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b9a707f9eb49b9a70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b9ad87f9eb49b9ad8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b9b407f9eb49b9b40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b9ba87f9eb49b9ba8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b9c107f9eb49b9c10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b9c787f9eb49b9c78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49b9ce07f9eb49b9ce0 /* 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 */ - FFF22be415207fc42be41520 /* Resources */ = { + FFF2b57071d07f9eb57071d0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -804,7 +804,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2be415207fc42be41520 /* Frameworks */ = { + FFFCb57071d07f9eb57071d0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -814,64 +814,64 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82be415207fc42be41520 /* Sources */ = { + FFF8b57071d07f9eb57071d0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c8420e87fc42c8420e8, - FFFF2c8421507fc42c842150, - FFFF2c8421b87fc42c8421b8, - FFFF2c8422207fc42c842220, - FFFF2c8422887fc42c842288, - FFFF2c8422f07fc42c8422f0, - FFFF2c8423587fc42c842358, - FFFF2c8423c07fc42c8423c0, - FFFF2c8424287fc42c842428, - FFFF2c8424907fc42c842490, - FFFF2c8424f87fc42c8424f8, - FFFF2c8425607fc42c842560, - FFFF2c8425c87fc42c8425c8, - FFFF2c8426307fc42c842630, - FFFF2c8426987fc42c842698, - FFFF2c8427007fc42c842700, - FFFF2c8427687fc42c842768, - FFFF2c8427d07fc42c8427d0, - FFFF2c8428387fc42c842838, - FFFF2c8428a07fc42c8428a0, - FFFF2c8429087fc42c842908, - FFFF2c8429707fc42c842970, - FFFF2c8429d87fc42c8429d8, - FFFF2c842a407fc42c842a40, - FFFF2c842aa87fc42c842aa8, - FFFF2c842b107fc42c842b10, - FFFF2c842b787fc42c842b78, - FFFF2c842be07fc42c842be0, - FFFF2c842c487fc42c842c48, - FFFF2c842cb07fc42c842cb0, - FFFF2c842d187fc42c842d18, - FFFF2c842d807fc42c842d80, - FFFF2c842de87fc42c842de8, - FFFF2c842e507fc42c842e50, - FFFF2c842eb87fc42c842eb8, - FFFF2c842f207fc42c842f20, - FFFF2c8464d07fc42c8464d0, - FFFF2c8465387fc42c846538, - FFFF2c8465a07fc42c8465a0, - FFFF2c8468e07fc42c8468e0, - FFFF2c8469487fc42c846948, - FFFF2c8469b07fc42c8469b0, - FFFF2c846a187fc42c846a18, - FFFF2c846a807fc42c846a80, - FFFF2c846ae87fc42c846ae8, - FFFF2c846b507fc42c846b50, - FFFF2c846bb87fc42c846bb8, - FFFF2c846c207fc42c846c20, - FFFF2c846c887fc42c846c88, - FFFF2c8475e07fc42c8475e0, - FFFF2c8476487fc42c847648, - FFFF2c8476b07fc42c8476b0, - FFFF2c8477187fc42c847718, - FFFF2c8444e07fc42c8444e0, + FFFFb49b78e87f9eb49b78e8, + FFFFb49b79507f9eb49b7950, + FFFFb49b79b87f9eb49b79b8, + FFFFb49b7a207f9eb49b7a20, + FFFFb49b7a887f9eb49b7a88, + FFFFb49b7af07f9eb49b7af0, + FFFFb49b7b587f9eb49b7b58, + FFFFb49b7bc07f9eb49b7bc0, + FFFFb49b7c287f9eb49b7c28, + FFFFb49b7c907f9eb49b7c90, + FFFFb49b7cf87f9eb49b7cf8, + FFFFb49b7d607f9eb49b7d60, + FFFFb49b7dc87f9eb49b7dc8, + FFFFb49b7e307f9eb49b7e30, + FFFFb49b7e987f9eb49b7e98, + FFFFb49b7f007f9eb49b7f00, + FFFFb49b7f687f9eb49b7f68, + FFFFb49b7fd07f9eb49b7fd0, + FFFFb49b80387f9eb49b8038, + FFFFb49b80a07f9eb49b80a0, + FFFFb49b81087f9eb49b8108, + FFFFb49b81707f9eb49b8170, + FFFFb49b81d87f9eb49b81d8, + FFFFb49b82407f9eb49b8240, + FFFFb49b82a87f9eb49b82a8, + FFFFb49b83107f9eb49b8310, + FFFFb49b83787f9eb49b8378, + FFFFb49b83e07f9eb49b83e0, + FFFFb49b84487f9eb49b8448, + FFFFb49b84b07f9eb49b84b0, + FFFFb49b85187f9eb49b8518, + FFFFb49b85807f9eb49b8580, + FFFFb49b85e87f9eb49b85e8, + FFFFb49b86507f9eb49b8650, + FFFFb49b86b87f9eb49b86b8, + FFFFb49b87207f9eb49b8720, + FFFFb49baed07f9eb49baed0, + FFFFb49baf387f9eb49baf38, + FFFFb49bafa07f9eb49bafa0, + FFFFb49bb2e07f9eb49bb2e0, + FFFFb49bb3487f9eb49bb348, + FFFFb49bb3b07f9eb49bb3b0, + FFFFb49bb4187f9eb49bb418, + FFFFb49bb4807f9eb49bb480, + FFFFb49bb4e87f9eb49bb4e8, + FFFFb49bb5507f9eb49bb550, + FFFFb49bb5b87f9eb49bb5b8, + FFFFb49bb6207f9eb49bb620, + FFFFb49bb6887f9eb49bb688, + FFFFb49bbfe07f9eb49bbfe0, + FFFFb49bc0487f9eb49bc048, + FFFFb49bc0b07f9eb49bc0b0, + FFFFb49bc1187f9eb49bc118, + FFFFb49b9ce07f9eb49b9ce0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -880,56 +880,56 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF42be419a07fc42be419a0 /* PBXTargetDependency */ = { + FFF4b57076507f9eb5707650 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2be271907fc42be27190 /* PsFastXml */; - targetProxy = FFF52be271907fc42be27190 /* PBXContainerItemProxy */; + target = FFFAb43575307f9eb4357530 /* PsFastXml */; + targetProxy = FFF5b43575307f9eb4357530 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SceneQuery */ - FFFF2c84a4007fc42c84a400 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c84a4007fc42c84a400 /* SqAABBPruner.cpp */; }; - FFFF2c84a4687fc42c84a468 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c84a4687fc42c84a468 /* SqAABBTree.cpp */; }; - FFFF2c84a4d07fc42c84a4d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c84a4d07fc42c84a4d0 /* SqAABBTreeUpdateMap.cpp */; }; - FFFF2c84a5387fc42c84a538 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c84a5387fc42c84a538 /* SqBounds.cpp */; }; - FFFF2c84a5a07fc42c84a5a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c84a5a07fc42c84a5a0 /* SqBucketPruner.cpp */; }; - FFFF2c84a6087fc42c84a608 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c84a6087fc42c84a608 /* SqExtendedBucketPruner.cpp */; }; - FFFF2c84a6707fc42c84a670 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c84a6707fc42c84a670 /* SqMetaData.cpp */; }; - FFFF2c84a6d87fc42c84a6d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c84a6d87fc42c84a6d8 /* SqPruningPool.cpp */; }; - FFFF2c84a7407fc42c84a740 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c84a7407fc42c84a740 /* SqPruningStructure.cpp */; }; - FFFF2c84a7a87fc42c84a7a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c84a7a87fc42c84a7a8 /* SqSceneQueryManager.cpp */; }; + FFFFb49c00007f9eb49c0000 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49c00007f9eb49c0000 /* SqAABBPruner.cpp */; }; + FFFFb49c00687f9eb49c0068 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49c00687f9eb49c0068 /* SqAABBTree.cpp */; }; + FFFFb49c00d07f9eb49c00d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49c00d07f9eb49c00d0 /* SqAABBTreeUpdateMap.cpp */; }; + FFFFb49c01387f9eb49c0138 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49c01387f9eb49c0138 /* SqBounds.cpp */; }; + FFFFb49c01a07f9eb49c01a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49c01a07f9eb49c01a0 /* SqBucketPruner.cpp */; }; + FFFFb49c02087f9eb49c0208 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49c02087f9eb49c0208 /* SqExtendedBucketPruner.cpp */; }; + FFFFb49c02707f9eb49c0270 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49c02707f9eb49c0270 /* SqMetaData.cpp */; }; + FFFFb49c02d87f9eb49c02d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49c02d87f9eb49c02d8 /* SqPruningPool.cpp */; }; + FFFFb49c03407f9eb49c0340 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49c03407f9eb49c0340 /* SqPruningStructure.cpp */; }; + FFFFb49c03a87f9eb49c03a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb49c03a87f9eb49c03a8 /* SqSceneQueryManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2be53ef07fc42be53ef0 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c84a4007fc42c84a400 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c84a4687fc42c84a468 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c84a4d07fc42c84a4d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c84a5387fc42c84a538 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c84a5a07fc42c84a5a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c84a6087fc42c84a608 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c84a6707fc42c84a670 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c84a6d87fc42c84a6d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c84a7407fc42c84a740 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c84a7a87fc42c84a7a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c84a8107fc42c84a810 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84a8787fc42c84a878 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84a8e07fc42c84a8e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84a9487fc42c84a948 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84a9b07fc42c84a9b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84aa187fc42c84aa18 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84aa807fc42c84aa80 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84aae87fc42c84aae8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84ab507fc42c84ab50 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84abb87fc42c84abb8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be582707fc42be58270 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be582d87fc42be582d8 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be583407fc42be58340 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be583a87fc42be583a8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb5719ba07f9eb5719ba0 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb49c00007f9eb49c0000 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49c00687f9eb49c0068 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49c00d07f9eb49c00d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49c01387f9eb49c0138 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49c01a07f9eb49c01a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49c02087f9eb49c0208 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49c02707f9eb49c0270 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49c02d87f9eb49c02d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49c03407f9eb49c0340 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49c03a87f9eb49c03a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49c04107f9eb49c0410 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49c04787f9eb49c0478 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49c04e07f9eb49c04e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49c05487f9eb49c0548 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49c05b07f9eb49c05b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49c06187f9eb49c0618 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49c06807f9eb49c0680 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49c06e87f9eb49c06e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49c07507f9eb49c0750 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49c07b87f9eb49c07b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; + FFFDb571df207f9eb571df20 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFDb571df887f9eb571df88 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb571dff07f9eb571dff0 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFDb571e0587f9eb571e058 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF22be53ef07fc42be53ef0 /* Resources */ = { + FFF2b5719ba07f9eb5719ba0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -939,7 +939,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2be53ef07fc42be53ef0 /* Frameworks */ = { + FFFCb5719ba07f9eb5719ba0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -949,20 +949,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82be53ef07fc42be53ef0 /* Sources */ = { + FFF8b5719ba07f9eb5719ba0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c84a4007fc42c84a400, - FFFF2c84a4687fc42c84a468, - FFFF2c84a4d07fc42c84a4d0, - FFFF2c84a5387fc42c84a538, - FFFF2c84a5a07fc42c84a5a0, - FFFF2c84a6087fc42c84a608, - FFFF2c84a6707fc42c84a670, - FFFF2c84a6d87fc42c84a6d8, - FFFF2c84a7407fc42c84a740, - FFFF2c84a7a87fc42c84a7a8, + FFFFb49c00007f9eb49c0000, + FFFFb49c00687f9eb49c0068, + FFFFb49c00d07f9eb49c00d0, + FFFFb49c01387f9eb49c0138, + FFFFb49c01a07f9eb49c01a0, + FFFFb49c02087f9eb49c0208, + FFFFb49c02707f9eb49c0270, + FFFFb49c02d87f9eb49c02d8, + FFFFb49c03407f9eb49c0340, + FFFFb49c03a87f9eb49c03a8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -974,154 +974,154 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SimulationController */ - FFFF2c850dd07fc42c850dd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c850dd07fc42c850dd0 /* ScActorCore.cpp */; }; - FFFF2c850e387fc42c850e38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c850e387fc42c850e38 /* ScActorSim.cpp */; }; - FFFF2c850ea07fc42c850ea0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c850ea07fc42c850ea0 /* ScArticulationCore.cpp */; }; - FFFF2c850f087fc42c850f08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c850f087fc42c850f08 /* ScArticulationJointCore.cpp */; }; - FFFF2c850f707fc42c850f70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c850f707fc42c850f70 /* ScArticulationJointSim.cpp */; }; - FFFF2c850fd87fc42c850fd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c850fd87fc42c850fd8 /* ScArticulationSim.cpp */; }; - FFFF2c8510407fc42c851040 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8510407fc42c851040 /* ScBodyCore.cpp */; }; - FFFF2c8510a87fc42c8510a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8510a87fc42c8510a8 /* ScBodyCoreKinematic.cpp */; }; - FFFF2c8511107fc42c851110 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8511107fc42c851110 /* ScBodySim.cpp */; }; - FFFF2c8511787fc42c851178 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8511787fc42c851178 /* ScConstraintCore.cpp */; }; - FFFF2c8511e07fc42c8511e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8511e07fc42c8511e0 /* ScConstraintGroupNode.cpp */; }; - FFFF2c8512487fc42c851248 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8512487fc42c851248 /* ScConstraintInteraction.cpp */; }; - FFFF2c8512b07fc42c8512b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8512b07fc42c8512b0 /* ScConstraintProjectionManager.cpp */; }; - FFFF2c8513187fc42c851318 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8513187fc42c851318 /* ScConstraintProjectionTree.cpp */; }; - FFFF2c8513807fc42c851380 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8513807fc42c851380 /* ScConstraintSim.cpp */; }; - FFFF2c8513e87fc42c8513e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8513e87fc42c8513e8 /* ScElementInteractionMarker.cpp */; }; - FFFF2c8514507fc42c851450 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8514507fc42c851450 /* ScElementSim.cpp */; }; - FFFF2c8514b87fc42c8514b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8514b87fc42c8514b8 /* ScInteraction.cpp */; }; - FFFF2c8515207fc42c851520 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8515207fc42c851520 /* ScIterators.cpp */; }; - FFFF2c8515887fc42c851588 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8515887fc42c851588 /* ScMaterialCore.cpp */; }; - FFFF2c8515f07fc42c8515f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8515f07fc42c8515f0 /* ScMetaData.cpp */; }; - FFFF2c8516587fc42c851658 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8516587fc42c851658 /* ScNPhaseCore.cpp */; }; - FFFF2c8516c07fc42c8516c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8516c07fc42c8516c0 /* ScPhysics.cpp */; }; - FFFF2c8517287fc42c851728 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8517287fc42c851728 /* ScRigidCore.cpp */; }; - FFFF2c8517907fc42c851790 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8517907fc42c851790 /* ScRigidSim.cpp */; }; - FFFF2c8517f87fc42c8517f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8517f87fc42c8517f8 /* ScScene.cpp */; }; - FFFF2c8518607fc42c851860 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8518607fc42c851860 /* ScShapeCore.cpp */; }; - FFFF2c8518c87fc42c8518c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8518c87fc42c8518c8 /* ScShapeInteraction.cpp */; }; - FFFF2c8519307fc42c851930 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8519307fc42c851930 /* ScShapeSim.cpp */; }; - FFFF2c8519987fc42c851998 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8519987fc42c851998 /* ScSimStats.cpp */; }; - FFFF2c851a007fc42c851a00 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c851a007fc42c851a00 /* ScSimulationController.cpp */; }; - FFFF2c851a687fc42c851a68 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c851a687fc42c851a68 /* ScSqBoundsManager.cpp */; }; - FFFF2c851ad07fc42c851ad0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c851ad07fc42c851ad0 /* ScStaticCore.cpp */; }; - FFFF2c851b387fc42c851b38 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c851b387fc42c851b38 /* ScStaticSim.cpp */; }; - FFFF2c851ba07fc42c851ba0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c851ba07fc42c851ba0 /* ScTriggerInteraction.cpp */; }; - FFFF2c851d407fc42c851d40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c851d407fc42c851d40 /* particles/ScParticleBodyInteraction.cpp */; }; - FFFF2c851da87fc42c851da8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c851da87fc42c851da8 /* particles/ScParticlePacketShape.cpp */; }; - FFFF2c851e107fc42c851e10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c851e107fc42c851e10 /* particles/ScParticleSystemCore.cpp */; }; - FFFF2c851e787fc42c851e78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c851e787fc42c851e78 /* particles/ScParticleSystemSim.cpp */; }; - FFFF2c851fb07fc42c851fb0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c851fb07fc42c851fb0 /* cloth/ScClothCore.cpp */; }; - FFFF2c8520187fc42c852018 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8520187fc42c852018 /* cloth/ScClothFabricCore.cpp */; }; - FFFF2c8520807fc42c852080 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8520807fc42c852080 /* cloth/ScClothShape.cpp */; }; - FFFF2c8520e87fc42c8520e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8520e87fc42c8520e8 /* cloth/ScClothSim.cpp */; }; + FFFFb3035dd07f9eb3035dd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3035dd07f9eb3035dd0 /* ScActorCore.cpp */; }; + FFFFb3035e387f9eb3035e38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3035e387f9eb3035e38 /* ScActorSim.cpp */; }; + FFFFb3035ea07f9eb3035ea0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3035ea07f9eb3035ea0 /* ScArticulationCore.cpp */; }; + FFFFb3035f087f9eb3035f08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3035f087f9eb3035f08 /* ScArticulationJointCore.cpp */; }; + FFFFb3035f707f9eb3035f70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3035f707f9eb3035f70 /* ScArticulationJointSim.cpp */; }; + FFFFb3035fd87f9eb3035fd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3035fd87f9eb3035fd8 /* ScArticulationSim.cpp */; }; + FFFFb30360407f9eb3036040 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30360407f9eb3036040 /* ScBodyCore.cpp */; }; + FFFFb30360a87f9eb30360a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30360a87f9eb30360a8 /* ScBodyCoreKinematic.cpp */; }; + FFFFb30361107f9eb3036110 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30361107f9eb3036110 /* ScBodySim.cpp */; }; + FFFFb30361787f9eb3036178 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30361787f9eb3036178 /* ScConstraintCore.cpp */; }; + FFFFb30361e07f9eb30361e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30361e07f9eb30361e0 /* ScConstraintGroupNode.cpp */; }; + FFFFb30362487f9eb3036248 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30362487f9eb3036248 /* ScConstraintInteraction.cpp */; }; + FFFFb30362b07f9eb30362b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30362b07f9eb30362b0 /* ScConstraintProjectionManager.cpp */; }; + FFFFb30363187f9eb3036318 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30363187f9eb3036318 /* ScConstraintProjectionTree.cpp */; }; + FFFFb30363807f9eb3036380 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30363807f9eb3036380 /* ScConstraintSim.cpp */; }; + FFFFb30363e87f9eb30363e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30363e87f9eb30363e8 /* ScElementInteractionMarker.cpp */; }; + FFFFb30364507f9eb3036450 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30364507f9eb3036450 /* ScElementSim.cpp */; }; + FFFFb30364b87f9eb30364b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30364b87f9eb30364b8 /* ScInteraction.cpp */; }; + FFFFb30365207f9eb3036520 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30365207f9eb3036520 /* ScIterators.cpp */; }; + FFFFb30365887f9eb3036588 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30365887f9eb3036588 /* ScMaterialCore.cpp */; }; + FFFFb30365f07f9eb30365f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30365f07f9eb30365f0 /* ScMetaData.cpp */; }; + FFFFb30366587f9eb3036658 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30366587f9eb3036658 /* ScNPhaseCore.cpp */; }; + FFFFb30366c07f9eb30366c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30366c07f9eb30366c0 /* ScPhysics.cpp */; }; + FFFFb30367287f9eb3036728 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30367287f9eb3036728 /* ScRigidCore.cpp */; }; + FFFFb30367907f9eb3036790 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30367907f9eb3036790 /* ScRigidSim.cpp */; }; + FFFFb30367f87f9eb30367f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30367f87f9eb30367f8 /* ScScene.cpp */; }; + FFFFb30368607f9eb3036860 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30368607f9eb3036860 /* ScShapeCore.cpp */; }; + FFFFb30368c87f9eb30368c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30368c87f9eb30368c8 /* ScShapeInteraction.cpp */; }; + FFFFb30369307f9eb3036930 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30369307f9eb3036930 /* ScShapeSim.cpp */; }; + FFFFb30369987f9eb3036998 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30369987f9eb3036998 /* ScSimStats.cpp */; }; + FFFFb3036a007f9eb3036a00 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3036a007f9eb3036a00 /* ScSimulationController.cpp */; }; + FFFFb3036a687f9eb3036a68 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3036a687f9eb3036a68 /* ScSqBoundsManager.cpp */; }; + FFFFb3036ad07f9eb3036ad0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3036ad07f9eb3036ad0 /* ScStaticCore.cpp */; }; + FFFFb3036b387f9eb3036b38 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3036b387f9eb3036b38 /* ScStaticSim.cpp */; }; + FFFFb3036ba07f9eb3036ba0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3036ba07f9eb3036ba0 /* ScTriggerInteraction.cpp */; }; + FFFFb3036d407f9eb3036d40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3036d407f9eb3036d40 /* particles/ScParticleBodyInteraction.cpp */; }; + FFFFb3036da87f9eb3036da8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3036da87f9eb3036da8 /* particles/ScParticlePacketShape.cpp */; }; + FFFFb3036e107f9eb3036e10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3036e107f9eb3036e10 /* particles/ScParticleSystemCore.cpp */; }; + FFFFb3036e787f9eb3036e78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3036e787f9eb3036e78 /* particles/ScParticleSystemSim.cpp */; }; + FFFFb3036fb07f9eb3036fb0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3036fb07f9eb3036fb0 /* cloth/ScClothCore.cpp */; }; + FFFFb30370187f9eb3037018 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30370187f9eb3037018 /* cloth/ScClothFabricCore.cpp */; }; + FFFFb30370807f9eb3037080 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30370807f9eb3037080 /* cloth/ScClothShape.cpp */; }; + FFFFb30370e87f9eb30370e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30370e87f9eb30370e8 /* cloth/ScClothSim.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2be585307fc42be58530 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c84ce007fc42c84ce00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84ce687fc42c84ce68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84ced07fc42c84ced0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84cf387fc42c84cf38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84cfa07fc42c84cfa0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84d0087fc42c84d008 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84d0707fc42c84d070 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84d0d87fc42c84d0d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84d1407fc42c84d140 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84d1a87fc42c84d1a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84d2107fc42c84d210 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84d2787fc42c84d278 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84d2e07fc42c84d2e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84d3487fc42c84d348 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c84d3b07fc42c84d3b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8500007fc42c850000 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8500687fc42c850068 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8500d07fc42c8500d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8501387fc42c850138 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8501a07fc42c8501a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8502087fc42c850208 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8502707fc42c850270 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8502d87fc42c8502d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8503407fc42c850340 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8503a87fc42c8503a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8504107fc42c850410 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8504787fc42c850478 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8504e07fc42c8504e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8505487fc42c850548 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8505b07fc42c8505b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8506187fc42c850618 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8506807fc42c850680 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8506e87fc42c8506e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8507507fc42c850750 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8507b87fc42c8507b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8508207fc42c850820 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8508887fc42c850888 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8508f07fc42c8508f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8509587fc42c850958 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8509c07fc42c8509c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c850a287fc42c850a28 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c850a907fc42c850a90 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c850af87fc42c850af8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c850b607fc42c850b60 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c850bc87fc42c850bc8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c850c307fc42c850c30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c850c987fc42c850c98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c850d007fc42c850d00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c850d687fc42c850d68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c850dd07fc42c850dd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c850e387fc42c850e38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c850ea07fc42c850ea0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c850f087fc42c850f08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c850f707fc42c850f70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c850fd87fc42c850fd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8510407fc42c851040 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8510a87fc42c8510a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8511107fc42c851110 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8511787fc42c851178 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8511e07fc42c8511e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8512487fc42c851248 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8512b07fc42c8512b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8513187fc42c851318 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8513807fc42c851380 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8513e87fc42c8513e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8514507fc42c851450 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8514b87fc42c8514b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8515207fc42c851520 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8515887fc42c851588 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8515f07fc42c8515f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8516587fc42c851658 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8516c07fc42c8516c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8517287fc42c851728 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8517907fc42c851790 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8517f87fc42c8517f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8518607fc42c851860 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8518c87fc42c8518c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8519307fc42c851930 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8519987fc42c851998 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c851a007fc42c851a00 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c851a687fc42c851a68 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c851ad07fc42c851ad0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c851b387fc42c851b38 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c851ba07fc42c851ba0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c851c087fc42c851c08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c851c707fc42c851c70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c851cd87fc42c851cd8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c851d407fc42c851d40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c851da87fc42c851da8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c851e107fc42c851e10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c851e787fc42c851e78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c851ee07fc42c851ee0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c851f487fc42c851f48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c851fb07fc42c851fb0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8520187fc42c852018 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8520807fc42c852080 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8520e87fc42c8520e8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb571e1e07f9eb571e1e0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb3021a007f9eb3021a00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3021a687f9eb3021a68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3021ad07f9eb3021ad0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3021b387f9eb3021b38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3021ba07f9eb3021ba0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3021c087f9eb3021c08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3021c707f9eb3021c70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3021cd87f9eb3021cd8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3021d407f9eb3021d40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3021da87f9eb3021da8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3021e107f9eb3021e10 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3021e787f9eb3021e78 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3021ee07f9eb3021ee0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3021f487f9eb3021f48 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3021fb07f9eb3021fb0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30350007f9eb3035000 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30350687f9eb3035068 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30350d07f9eb30350d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30351387f9eb3035138 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30351a07f9eb30351a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30352087f9eb3035208 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30352707f9eb3035270 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30352d87f9eb30352d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30353407f9eb3035340 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30353a87f9eb30353a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30354107f9eb3035410 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30354787f9eb3035478 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30354e07f9eb30354e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30355487f9eb3035548 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30355b07f9eb30355b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30356187f9eb3035618 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30356807f9eb3035680 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30356e87f9eb30356e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30357507f9eb3035750 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30357b87f9eb30357b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30358207f9eb3035820 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30358887f9eb3035888 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30358f07f9eb30358f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30359587f9eb3035958 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30359c07f9eb30359c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3035a287f9eb3035a28 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3035a907f9eb3035a90 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3035af87f9eb3035af8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3035b607f9eb3035b60 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3035bc87f9eb3035bc8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3035c307f9eb3035c30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3035c987f9eb3035c98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3035d007f9eb3035d00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3035d687f9eb3035d68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3035dd07f9eb3035dd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3035e387f9eb3035e38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3035ea07f9eb3035ea0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3035f087f9eb3035f08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3035f707f9eb3035f70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3035fd87f9eb3035fd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30360407f9eb3036040 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30360a87f9eb30360a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30361107f9eb3036110 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30361787f9eb3036178 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30361e07f9eb30361e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30362487f9eb3036248 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30362b07f9eb30362b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30363187f9eb3036318 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30363807f9eb3036380 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30363e87f9eb30363e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30364507f9eb3036450 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30364b87f9eb30364b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30365207f9eb3036520 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30365887f9eb3036588 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30365f07f9eb30365f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30366587f9eb3036658 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30366c07f9eb30366c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30367287f9eb3036728 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30367907f9eb3036790 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30367f87f9eb30367f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30368607f9eb3036860 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30368c87f9eb30368c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30369307f9eb3036930 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30369987f9eb3036998 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3036a007f9eb3036a00 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3036a687f9eb3036a68 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3036ad07f9eb3036ad0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3036b387f9eb3036b38 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3036ba07f9eb3036ba0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3036c087f9eb3036c08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3036c707f9eb3036c70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3036cd87f9eb3036cd8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3036d407f9eb3036d40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3036da87f9eb3036da8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3036e107f9eb3036e10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3036e787f9eb3036e78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3036ee07f9eb3036ee0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3036f487f9eb3036f48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3036fb07f9eb3036fb0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30370187f9eb3037018 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30370807f9eb3037080 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30370e87f9eb30370e8 /* 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 */ - FFF22be585307fc42be58530 /* Resources */ = { + FFF2b571e1e07f9eb571e1e0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1131,7 +1131,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2be585307fc42be58530 /* Frameworks */ = { + FFFCb571e1e07f9eb571e1e0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1141,53 +1141,53 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82be585307fc42be58530 /* Sources */ = { + FFF8b571e1e07f9eb571e1e0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c850dd07fc42c850dd0, - FFFF2c850e387fc42c850e38, - FFFF2c850ea07fc42c850ea0, - FFFF2c850f087fc42c850f08, - FFFF2c850f707fc42c850f70, - FFFF2c850fd87fc42c850fd8, - FFFF2c8510407fc42c851040, - FFFF2c8510a87fc42c8510a8, - FFFF2c8511107fc42c851110, - FFFF2c8511787fc42c851178, - FFFF2c8511e07fc42c8511e0, - FFFF2c8512487fc42c851248, - FFFF2c8512b07fc42c8512b0, - FFFF2c8513187fc42c851318, - FFFF2c8513807fc42c851380, - FFFF2c8513e87fc42c8513e8, - FFFF2c8514507fc42c851450, - FFFF2c8514b87fc42c8514b8, - FFFF2c8515207fc42c851520, - FFFF2c8515887fc42c851588, - FFFF2c8515f07fc42c8515f0, - FFFF2c8516587fc42c851658, - FFFF2c8516c07fc42c8516c0, - FFFF2c8517287fc42c851728, - FFFF2c8517907fc42c851790, - FFFF2c8517f87fc42c8517f8, - FFFF2c8518607fc42c851860, - FFFF2c8518c87fc42c8518c8, - FFFF2c8519307fc42c851930, - FFFF2c8519987fc42c851998, - FFFF2c851a007fc42c851a00, - FFFF2c851a687fc42c851a68, - FFFF2c851ad07fc42c851ad0, - FFFF2c851b387fc42c851b38, - FFFF2c851ba07fc42c851ba0, - FFFF2c851d407fc42c851d40, - FFFF2c851da87fc42c851da8, - FFFF2c851e107fc42c851e10, - FFFF2c851e787fc42c851e78, - FFFF2c851fb07fc42c851fb0, - FFFF2c8520187fc42c852018, - FFFF2c8520807fc42c852080, - FFFF2c8520e87fc42c8520e8, + FFFFb3035dd07f9eb3035dd0, + FFFFb3035e387f9eb3035e38, + FFFFb3035ea07f9eb3035ea0, + FFFFb3035f087f9eb3035f08, + FFFFb3035f707f9eb3035f70, + FFFFb3035fd87f9eb3035fd8, + FFFFb30360407f9eb3036040, + FFFFb30360a87f9eb30360a8, + FFFFb30361107f9eb3036110, + FFFFb30361787f9eb3036178, + FFFFb30361e07f9eb30361e0, + FFFFb30362487f9eb3036248, + FFFFb30362b07f9eb30362b0, + FFFFb30363187f9eb3036318, + FFFFb30363807f9eb3036380, + FFFFb30363e87f9eb30363e8, + FFFFb30364507f9eb3036450, + FFFFb30364b87f9eb30364b8, + FFFFb30365207f9eb3036520, + FFFFb30365887f9eb3036588, + FFFFb30365f07f9eb30365f0, + FFFFb30366587f9eb3036658, + FFFFb30366c07f9eb30366c0, + FFFFb30367287f9eb3036728, + FFFFb30367907f9eb3036790, + FFFFb30367f87f9eb30367f8, + FFFFb30368607f9eb3036860, + FFFFb30368c87f9eb30368c8, + FFFFb30369307f9eb3036930, + FFFFb30369987f9eb3036998, + FFFFb3036a007f9eb3036a00, + FFFFb3036a687f9eb3036a68, + FFFFb3036ad07f9eb3036ad0, + FFFFb3036b387f9eb3036b38, + FFFFb3036ba07f9eb3036ba0, + FFFFb3036d407f9eb3036d40, + FFFFb3036da87f9eb3036da8, + FFFFb3036e107f9eb3036e10, + FFFFb3036e787f9eb3036e78, + FFFFb3036fb07f9eb3036fb0, + FFFFb30370187f9eb3037018, + FFFFb30370807f9eb3037080, + FFFFb30370e87f9eb30370e8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1199,80 +1199,80 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCooking */ - FFFF2be664407fc42be66440 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD2be415207fc42be41520 /* PhysXExtensions */; }; - FFFF2c8542007fc42c854200 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8542007fc42c854200 /* Adjacencies.cpp */; }; - FFFF2c8542687fc42c854268 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8542687fc42c854268 /* Cooking.cpp */; }; - FFFF2c8542d07fc42c8542d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8542d07fc42c8542d0 /* CookingUtils.cpp */; }; - FFFF2c8543387fc42c854338 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8543387fc42c854338 /* EdgeList.cpp */; }; - FFFF2c8543a07fc42c8543a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8543a07fc42c8543a0 /* MeshCleaner.cpp */; }; - FFFF2c8544087fc42c854408 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8544087fc42c854408 /* Quantizer.cpp */; }; - FFFF2c8546e07fc42c8546e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8546e07fc42c8546e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; - FFFF2c8547487fc42c854748 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8547487fc42c854748 /* mesh/HeightFieldCooking.cpp */; }; - FFFF2c8547b07fc42c8547b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8547b07fc42c8547b0 /* mesh/RTreeCooking.cpp */; }; - FFFF2c8548187fc42c854818 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8548187fc42c854818 /* mesh/TriangleMeshBuilder.cpp */; }; - FFFF2c854a887fc42c854a88 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c854a887fc42c854a88 /* convex/BigConvexDataBuilder.cpp */; }; - FFFF2c854af07fc42c854af0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c854af07fc42c854af0 /* convex/ConvexHullBuilder.cpp */; }; - FFFF2c854b587fc42c854b58 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c854b587fc42c854b58 /* convex/ConvexHullLib.cpp */; }; - FFFF2c854bc07fc42c854bc0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c854bc07fc42c854bc0 /* convex/ConvexHullUtils.cpp */; }; - FFFF2c854c287fc42c854c28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c854c287fc42c854c28 /* convex/ConvexMeshBuilder.cpp */; }; - FFFF2c854c907fc42c854c90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c854c907fc42c854c90 /* convex/ConvexPolygonsBuilder.cpp */; }; - FFFF2c854cf87fc42c854cf8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c854cf87fc42c854cf8 /* convex/InflationConvexHullLib.cpp */; }; - FFFF2c854d607fc42c854d60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c854d607fc42c854d60 /* convex/QuickHullConvexHullLib.cpp */; }; - FFFF2c854dc87fc42c854dc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c854dc87fc42c854dc8 /* convex/VolumeIntegration.cpp */; }; + FFFFb472ed907f9eb472ed90 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFDb57071d07f9eb57071d0 /* PhysXExtensions */; }; + FFFFb30392007f9eb3039200 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30392007f9eb3039200 /* Adjacencies.cpp */; }; + FFFFb30392687f9eb3039268 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30392687f9eb3039268 /* Cooking.cpp */; }; + FFFFb30392d07f9eb30392d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30392d07f9eb30392d0 /* CookingUtils.cpp */; }; + FFFFb30393387f9eb3039338 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30393387f9eb3039338 /* EdgeList.cpp */; }; + FFFFb30393a07f9eb30393a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30393a07f9eb30393a0 /* MeshCleaner.cpp */; }; + FFFFb30394087f9eb3039408 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30394087f9eb3039408 /* Quantizer.cpp */; }; + FFFFb30396e07f9eb30396e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30396e07f9eb30396e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; + FFFFb30397487f9eb3039748 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30397487f9eb3039748 /* mesh/HeightFieldCooking.cpp */; }; + FFFFb30397b07f9eb30397b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30397b07f9eb30397b0 /* mesh/RTreeCooking.cpp */; }; + FFFFb30398187f9eb3039818 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb30398187f9eb3039818 /* mesh/TriangleMeshBuilder.cpp */; }; + FFFFb3039a887f9eb3039a88 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3039a887f9eb3039a88 /* convex/BigConvexDataBuilder.cpp */; }; + FFFFb3039af07f9eb3039af0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3039af07f9eb3039af0 /* convex/ConvexHullBuilder.cpp */; }; + FFFFb3039b587f9eb3039b58 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3039b587f9eb3039b58 /* convex/ConvexHullLib.cpp */; }; + FFFFb3039bc07f9eb3039bc0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3039bc07f9eb3039bc0 /* convex/ConvexHullUtils.cpp */; }; + FFFFb3039c287f9eb3039c28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3039c287f9eb3039c28 /* convex/ConvexMeshBuilder.cpp */; }; + FFFFb3039c907f9eb3039c90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3039c907f9eb3039c90 /* convex/ConvexPolygonsBuilder.cpp */; }; + FFFFb3039cf87f9eb3039cf8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3039cf87f9eb3039cf8 /* convex/InflationConvexHullLib.cpp */; }; + FFFFb3039d607f9eb3039d60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3039d607f9eb3039d60 /* convex/QuickHullConvexHullLib.cpp */; }; + FFFFb3039dc87f9eb3039dc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb3039dc87f9eb3039dc8 /* convex/VolumeIntegration.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2be5ccd07fc42be5ccd0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2be66dd07fc42be66dd0 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be66e387fc42be66e38 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be66ea07fc42be66ea0 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be66f087fc42be66f08 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be66f707fc42be66f70 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be66fd87fc42be66fd8 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be670407fc42be67040 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8542007fc42c854200 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8542687fc42c854268 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8542d07fc42c8542d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8543387fc42c854338 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8543a07fc42c8543a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8544087fc42c854408 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8544707fc42c854470 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8544d87fc42c8544d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8545407fc42c854540 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8545a87fc42c8545a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8546107fc42c854610 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8546787fc42c854678 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8546e07fc42c8546e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8547487fc42c854748 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8547b07fc42c8547b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8548187fc42c854818 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8548807fc42c854880 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8548e87fc42c8548e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8549507fc42c854950 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8549b87fc42c8549b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c854a207fc42c854a20 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c854a887fc42c854a88 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c854af07fc42c854af0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c854b587fc42c854b58 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c854bc07fc42c854bc0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c854c287fc42c854c28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c854c907fc42c854c90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c854cf87fc42c854cf8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c854d607fc42c854d60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c854dc87fc42c854dc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c854e307fc42c854e30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c854e987fc42c854e98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c854f007fc42c854f00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c854f687fc42c854f68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c854fd07fc42c854fd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8550387fc42c855038 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8550a07fc42c8550a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8551087fc42c855108 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8551707fc42c855170 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; + FFFDb472b3907f9eb472b390 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb4724ab07f9eb4724ab0 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4724b187f9eb4724b18 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4724b807f9eb4724b80 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4724be87f9eb4724be8 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4724c507f9eb4724c50 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4724cb87f9eb4724cb8 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4724d207f9eb4724d20 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30392007f9eb3039200 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30392687f9eb3039268 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30392d07f9eb30392d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30393387f9eb3039338 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30393a07f9eb30393a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30394087f9eb3039408 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30394707f9eb3039470 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30394d87f9eb30394d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30395407f9eb3039540 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30395a87f9eb30395a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30396107f9eb3039610 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30396787f9eb3039678 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30396e07f9eb30396e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30397487f9eb3039748 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30397b07f9eb30397b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30398187f9eb3039818 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb30398807f9eb3039880 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30398e87f9eb30398e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30399507f9eb3039950 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30399b87f9eb30399b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3039a207f9eb3039a20 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3039a887f9eb3039a88 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3039af07f9eb3039af0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3039b587f9eb3039b58 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3039bc07f9eb3039bc0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3039c287f9eb3039c28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3039c907f9eb3039c90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3039cf87f9eb3039cf8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3039d607f9eb3039d60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3039dc87f9eb3039dc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3039e307f9eb3039e30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3039e987f9eb3039e98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3039f007f9eb3039f00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3039f687f9eb3039f68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3039fd07f9eb3039fd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDb303a0387f9eb303a038 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFDb303a0a07f9eb303a0a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFDb303a1087f9eb303a108 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFDb303a1707f9eb303a170 /* 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 */ - FFF22be5ccd07fc42be5ccd0 /* Resources */ = { + FFF2b472b3907f9eb472b390 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1282,7 +1282,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2be5ccd07fc42be5ccd0 /* Frameworks */ = { + FFFCb472b3907f9eb472b390 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1292,29 +1292,29 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82be5ccd07fc42be5ccd0 /* Sources */ = { + FFF8b472b3907f9eb472b390 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c8542007fc42c854200, - FFFF2c8542687fc42c854268, - FFFF2c8542d07fc42c8542d0, - FFFF2c8543387fc42c854338, - FFFF2c8543a07fc42c8543a0, - FFFF2c8544087fc42c854408, - FFFF2c8546e07fc42c8546e0, - FFFF2c8547487fc42c854748, - FFFF2c8547b07fc42c8547b0, - FFFF2c8548187fc42c854818, - FFFF2c854a887fc42c854a88, - FFFF2c854af07fc42c854af0, - FFFF2c854b587fc42c854b58, - FFFF2c854bc07fc42c854bc0, - FFFF2c854c287fc42c854c28, - FFFF2c854c907fc42c854c90, - FFFF2c854cf87fc42c854cf8, - FFFF2c854d607fc42c854d60, - FFFF2c854dc87fc42c854dc8, + FFFFb30392007f9eb3039200, + FFFFb30392687f9eb3039268, + FFFFb30392d07f9eb30392d0, + FFFFb30393387f9eb3039338, + FFFFb30393a07f9eb30393a0, + FFFFb30394087f9eb3039408, + FFFFb30396e07f9eb30396e0, + FFFFb30397487f9eb3039748, + FFFFb30397b07f9eb30397b0, + FFFFb30398187f9eb3039818, + FFFFb3039a887f9eb3039a88, + FFFFb3039af07f9eb3039af0, + FFFFb3039b587f9eb3039b58, + FFFFb3039bc07f9eb3039bc0, + FFFFb3039c287f9eb3039c28, + FFFFb3039c907f9eb3039c90, + FFFFb3039cf87f9eb3039cf8, + FFFFb3039d607f9eb3039d60, + FFFFb3039dc87f9eb3039dc8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1323,515 +1323,515 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF42be665207fc42be66520 /* PBXTargetDependency */ = { + FFF4b4723bd07f9eb4723bd0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2b949d707fc42b949d70 /* PhysXCommon */; - targetProxy = FFF52b949d707fc42b949d70 /* PBXContainerItemProxy */; + target = FFFAb43288707f9eb4328870 /* PhysXCommon */; + targetProxy = FFF5b43288707f9eb4328870 /* PBXContainerItemProxy */; }; - FFF42be664407fc42be66440 /* PBXTargetDependency */ = { + FFF4b472ed907f9eb472ed90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2be415207fc42be41520 /* PhysXExtensions */; - targetProxy = FFF52be415207fc42be41520 /* PBXContainerItemProxy */; + target = FFFAb57071d07f9eb57071d0 /* PhysXExtensions */; + targetProxy = FFF5b57071d07f9eb57071d0 /* PBXContainerItemProxy */; }; - FFF42be61c507fc42be61c50 /* PBXTargetDependency */ = { + FFF4b472af607f9eb472af60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2b95e5907fc42b95e590 /* PxFoundation */; - targetProxy = FFF52b95e5907fc42b95e590 /* PBXContainerItemProxy */; + target = FFFAb430a8607f9eb430a860 /* PxFoundation */; + targetProxy = FFF5b430a8607f9eb430a860 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCommon */ - FFFF2c0000007fc42c000000 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2c0000007fc42c000000 /* src/CmBoxPruning.cpp */; }; - FFFF2c0000687fc42c000068 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2c0000687fc42c000068 /* src/CmCollection.cpp */; }; - FFFF2c0000d07fc42c0000d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2c0000d07fc42c0000d0 /* src/CmMathUtils.cpp */; }; - FFFF2c0001387fc42c000138 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2c0001387fc42c000138 /* src/CmPtrTable.cpp */; }; - FFFF2c0001a07fc42c0001a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2c0001a07fc42c0001a0 /* src/CmRadixSort.cpp */; }; - FFFF2c0002087fc42c000208 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2c0002087fc42c000208 /* src/CmRadixSortBuffered.cpp */; }; - FFFF2c0002707fc42c000270 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2c0002707fc42c000270 /* src/CmRenderOutput.cpp */; }; - FFFF2c0002d87fc42c0002d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2c0002d87fc42c0002d8 /* src/CmVisualization.cpp */; }; - FFFF2b1bc7a87fc42b1bc7a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1bc7a87fc42b1bc7a8 /* ../../Include/GeomUtils */; }; - FFFF2b1bfce07fc42b1bfce0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1bfce07fc42b1bfce0 /* src/GuBounds.cpp */; }; - FFFF2b1bfd487fc42b1bfd48 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1bfd487fc42b1bfd48 /* src/GuBox.cpp */; }; - FFFF2b1bfdb07fc42b1bfdb0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1bfdb07fc42b1bfdb0 /* src/GuCCTSweepTests.cpp */; }; - FFFF2b1bfe187fc42b1bfe18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1bfe187fc42b1bfe18 /* src/GuCapsule.cpp */; }; - FFFF2b1bfe807fc42b1bfe80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1bfe807fc42b1bfe80 /* src/GuGeometryQuery.cpp */; }; - FFFF2b1bfee87fc42b1bfee8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1bfee87fc42b1bfee8 /* src/GuGeometryUnion.cpp */; }; - FFFF2b1bff507fc42b1bff50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1bff507fc42b1bff50 /* src/GuInternal.cpp */; }; - FFFF2b1bffb87fc42b1bffb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1bffb87fc42b1bffb8 /* src/GuMTD.cpp */; }; - FFFF2b1c00207fc42b1c0020 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c00207fc42b1c0020 /* src/GuMeshFactory.cpp */; }; - FFFF2b1c00887fc42b1c0088 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c00887fc42b1c0088 /* src/GuMetaData.cpp */; }; - FFFF2b1c00f07fc42b1c00f0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c00f07fc42b1c00f0 /* src/GuOverlapTests.cpp */; }; - FFFF2b1c01587fc42b1c0158 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c01587fc42b1c0158 /* src/GuRaycastTests.cpp */; }; - FFFF2b1c01c07fc42b1c01c0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c01c07fc42b1c01c0 /* src/GuSerialize.cpp */; }; - FFFF2b1c02287fc42b1c0228 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c02287fc42b1c0228 /* src/GuSweepMTD.cpp */; }; - FFFF2b1c02907fc42b1c0290 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c02907fc42b1c0290 /* src/GuSweepSharedTests.cpp */; }; - FFFF2b1c02f87fc42b1c02f8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c02f87fc42b1c02f8 /* src/GuSweepTests.cpp */; }; - FFFF2b1c03607fc42b1c0360 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c03607fc42b1c0360 /* src/contact/GuContactBoxBox.cpp */; }; - FFFF2b1c03c87fc42b1c03c8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c03c87fc42b1c03c8 /* src/contact/GuContactCapsuleBox.cpp */; }; - FFFF2b1c04307fc42b1c0430 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c04307fc42b1c0430 /* src/contact/GuContactCapsuleCapsule.cpp */; }; - FFFF2b1c04987fc42b1c0498 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c04987fc42b1c0498 /* src/contact/GuContactCapsuleConvex.cpp */; }; - FFFF2b1c05007fc42b1c0500 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c05007fc42b1c0500 /* src/contact/GuContactCapsuleMesh.cpp */; }; - FFFF2b1c05687fc42b1c0568 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c05687fc42b1c0568 /* src/contact/GuContactConvexConvex.cpp */; }; - FFFF2b1c05d07fc42b1c05d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c05d07fc42b1c05d0 /* src/contact/GuContactConvexMesh.cpp */; }; - FFFF2b1c06387fc42b1c0638 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c06387fc42b1c0638 /* src/contact/GuContactPlaneBox.cpp */; }; - FFFF2b1c06a07fc42b1c06a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c06a07fc42b1c06a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; - FFFF2b1c07087fc42b1c0708 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c07087fc42b1c0708 /* src/contact/GuContactPlaneConvex.cpp */; }; - FFFF2b1c07707fc42b1c0770 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c07707fc42b1c0770 /* src/contact/GuContactPolygonPolygon.cpp */; }; - FFFF2b1c07d87fc42b1c07d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c07d87fc42b1c07d8 /* src/contact/GuContactSphereBox.cpp */; }; - FFFF2b1c08407fc42b1c0840 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c08407fc42b1c0840 /* src/contact/GuContactSphereCapsule.cpp */; }; - FFFF2b1c08a87fc42b1c08a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c08a87fc42b1c08a8 /* src/contact/GuContactSphereMesh.cpp */; }; - FFFF2b1c09107fc42b1c0910 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c09107fc42b1c0910 /* src/contact/GuContactSpherePlane.cpp */; }; - FFFF2b1c09787fc42b1c0978 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c09787fc42b1c0978 /* src/contact/GuContactSphereSphere.cpp */; }; - FFFF2b1c09e07fc42b1c09e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c09e07fc42b1c09e0 /* src/contact/GuFeatureCode.cpp */; }; - FFFF2b1c0a487fc42b1c0a48 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c0a487fc42b1c0a48 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; - FFFF2b1c0ab07fc42b1c0ab0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c0ab07fc42b1c0ab0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; - FFFF2b1c0b187fc42b1c0b18 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c0b187fc42b1c0b18 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; - FFFF2b1c0b807fc42b1c0b80 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c0b807fc42b1c0b80 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; - FFFF2b1c0be87fc42b1c0be8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c0be87fc42b1c0be8 /* src/common/GuBarycentricCoordinates.cpp */; }; - FFFF2b1c0c507fc42b1c0c50 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c0c507fc42b1c0c50 /* src/common/GuSeparatingAxes.cpp */; }; - FFFF2b1c0cb87fc42b1c0cb8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c0cb87fc42b1c0cb8 /* src/convex/GuBigConvexData.cpp */; }; - FFFF2b1c0d207fc42b1c0d20 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c0d207fc42b1c0d20 /* src/convex/GuConvexHelper.cpp */; }; - FFFF2b1c0d887fc42b1c0d88 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c0d887fc42b1c0d88 /* src/convex/GuConvexMesh.cpp */; }; - FFFF2b1c0df07fc42b1c0df0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c0df07fc42b1c0df0 /* src/convex/GuConvexSupportTable.cpp */; }; - FFFF2b1c0e587fc42b1c0e58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c0e587fc42b1c0e58 /* src/convex/GuConvexUtilsInternal.cpp */; }; - FFFF2b1c0ec07fc42b1c0ec0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c0ec07fc42b1c0ec0 /* src/convex/GuHillClimbing.cpp */; }; - FFFF2b1c0f287fc42b1c0f28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c0f287fc42b1c0f28 /* src/convex/GuShapeConvex.cpp */; }; - FFFF2b1c0f907fc42b1c0f90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c0f907fc42b1c0f90 /* src/distance/GuDistancePointBox.cpp */; }; - FFFF2b1c0ff87fc42b1c0ff8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c0ff87fc42b1c0ff8 /* src/distance/GuDistancePointTriangle.cpp */; }; - FFFF2b1c10607fc42b1c1060 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c10607fc42b1c1060 /* src/distance/GuDistanceSegmentBox.cpp */; }; - FFFF2b1c10c87fc42b1c10c8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c10c87fc42b1c10c8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; - FFFF2b1c11307fc42b1c1130 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c11307fc42b1c1130 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; - FFFF2b1c11987fc42b1c1198 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c11987fc42b1c1198 /* src/sweep/GuSweepBoxBox.cpp */; }; - FFFF2b1c12007fc42b1c1200 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c12007fc42b1c1200 /* src/sweep/GuSweepBoxSphere.cpp */; }; - FFFF2b1c12687fc42b1c1268 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c12687fc42b1c1268 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; - FFFF2b1c12d07fc42b1c12d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c12d07fc42b1c12d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; - FFFF2b1c13387fc42b1c1338 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c13387fc42b1c1338 /* src/sweep/GuSweepCapsuleBox.cpp */; }; - FFFF2b1c13a07fc42b1c13a0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c13a07fc42b1c13a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; - FFFF2b1c14087fc42b1c1408 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c14087fc42b1c1408 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; - FFFF2b1c14707fc42b1c1470 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c14707fc42b1c1470 /* src/sweep/GuSweepSphereCapsule.cpp */; }; - FFFF2b1c14d87fc42b1c14d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c14d87fc42b1c14d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; - FFFF2b1c15407fc42b1c1540 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c15407fc42b1c1540 /* src/sweep/GuSweepSphereTriangle.cpp */; }; - FFFF2b1c15a87fc42b1c15a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c15a87fc42b1c15a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; - FFFF2b1c16107fc42b1c1610 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c16107fc42b1c1610 /* src/gjk/GuEPA.cpp */; }; - FFFF2b1c16787fc42b1c1678 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c16787fc42b1c1678 /* src/gjk/GuGJKSimplex.cpp */; }; - FFFF2b1c16e07fc42b1c16e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c16e07fc42b1c16e0 /* src/gjk/GuGJKTest.cpp */; }; - FFFF2b1c17487fc42b1c1748 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c17487fc42b1c1748 /* src/intersection/GuIntersectionBoxBox.cpp */; }; - FFFF2b1c17b07fc42b1c17b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c17b07fc42b1c17b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; - FFFF2b1c18187fc42b1c1818 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c18187fc42b1c1818 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; - FFFF2b1c18807fc42b1c1880 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c18807fc42b1c1880 /* src/intersection/GuIntersectionRayBox.cpp */; }; - FFFF2b1c18e87fc42b1c18e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c18e87fc42b1c18e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; - FFFF2b1c19507fc42b1c1950 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c19507fc42b1c1950 /* src/intersection/GuIntersectionRaySphere.cpp */; }; - FFFF2b1c19b87fc42b1c19b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c19b87fc42b1c19b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; - FFFF2b1c1a207fc42b1c1a20 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c1a207fc42b1c1a20 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; - FFFF2b1c1a887fc42b1c1a88 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c1a887fc42b1c1a88 /* src/mesh/GuBV32.cpp */; }; - FFFF2b1c1af07fc42b1c1af0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c1af07fc42b1c1af0 /* src/mesh/GuBV32Build.cpp */; }; - FFFF2b1c1b587fc42b1c1b58 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c1b587fc42b1c1b58 /* src/mesh/GuBV4.cpp */; }; - FFFF2b1c1bc07fc42b1c1bc0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c1bc07fc42b1c1bc0 /* src/mesh/GuBV4Build.cpp */; }; - FFFF2b1c1c287fc42b1c1c28 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c1c287fc42b1c1c28 /* src/mesh/GuBV4_AABBSweep.cpp */; }; - FFFF2b1c1c907fc42b1c1c90 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c1c907fc42b1c1c90 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; - FFFF2b1c1cf87fc42b1c1cf8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c1cf87fc42b1c1cf8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; - FFFF2b1c1d607fc42b1c1d60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c1d607fc42b1c1d60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; - FFFF2b1c1dc87fc42b1c1dc8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c1dc87fc42b1c1dc8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; - FFFF2b1c1e307fc42b1c1e30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c1e307fc42b1c1e30 /* src/mesh/GuBV4_Raycast.cpp */; }; - FFFF2b1c1e987fc42b1c1e98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c1e987fc42b1c1e98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; - FFFF2b1c1f007fc42b1c1f00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c1f007fc42b1c1f00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; - FFFF2b1c1f687fc42b1c1f68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c1f687fc42b1c1f68 /* src/mesh/GuMeshQuery.cpp */; }; - FFFF2b1c1fd07fc42b1c1fd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c1fd07fc42b1c1fd0 /* src/mesh/GuMidphaseBV4.cpp */; }; - FFFF2b1c20387fc42b1c2038 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c20387fc42b1c2038 /* src/mesh/GuMidphaseRTree.cpp */; }; - FFFF2b1c20a07fc42b1c20a0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c20a07fc42b1c20a0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; - FFFF2b1c21087fc42b1c2108 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c21087fc42b1c2108 /* src/mesh/GuRTree.cpp */; }; - FFFF2b1c21707fc42b1c2170 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c21707fc42b1c2170 /* src/mesh/GuRTreeQueries.cpp */; }; - FFFF2b1c21d87fc42b1c21d8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c21d87fc42b1c21d8 /* src/mesh/GuSweepsMesh.cpp */; }; - FFFF2b1c22407fc42b1c2240 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c22407fc42b1c2240 /* src/mesh/GuTriangleMesh.cpp */; }; - FFFF2b1c22a87fc42b1c22a8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c22a87fc42b1c22a8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; - FFFF2b1c23107fc42b1c2310 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c23107fc42b1c2310 /* src/mesh/GuTriangleMeshRTree.cpp */; }; - FFFF2b1c23787fc42b1c2378 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c23787fc42b1c2378 /* src/hf/GuHeightField.cpp */; }; - FFFF2b1c23e07fc42b1c23e0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c23e07fc42b1c23e0 /* src/hf/GuHeightFieldUtil.cpp */; }; - FFFF2b1c24487fc42b1c2448 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c24487fc42b1c2448 /* src/hf/GuOverlapTestsHF.cpp */; }; - FFFF2b1c24b07fc42b1c24b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c24b07fc42b1c24b0 /* src/hf/GuSweepsHF.cpp */; }; - FFFF2b1c25187fc42b1c2518 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c25187fc42b1c2518 /* src/pcm/GuPCMContactBoxBox.cpp */; }; - FFFF2b1c25807fc42b1c2580 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c25807fc42b1c2580 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; - FFFF2b1c25e87fc42b1c25e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c25e87fc42b1c25e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; - FFFF2b1c26507fc42b1c2650 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c26507fc42b1c2650 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; - FFFF2b1c26b87fc42b1c26b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c26b87fc42b1c26b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; - FFFF2b1c27207fc42b1c2720 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c27207fc42b1c2720 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; - FFFF2b1c27887fc42b1c2788 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c27887fc42b1c2788 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; - FFFF2b1c27f07fc42b1c27f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c27f07fc42b1c27f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; - FFFF2b1c28587fc42b1c2858 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c28587fc42b1c2858 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; - FFFF2b1c28c07fc42b1c28c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c28c07fc42b1c28c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; - FFFF2b1c29287fc42b1c2928 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c29287fc42b1c2928 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; - FFFF2b1c29907fc42b1c2990 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c29907fc42b1c2990 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; - FFFF2b1c29f87fc42b1c29f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c29f87fc42b1c29f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; - FFFF2b1c2a607fc42b1c2a60 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c2a607fc42b1c2a60 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; - FFFF2b1c2ac87fc42b1c2ac8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c2ac87fc42b1c2ac8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; - FFFF2b1c2b307fc42b1c2b30 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c2b307fc42b1c2b30 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; - FFFF2b1c2b987fc42b1c2b98 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c2b987fc42b1c2b98 /* src/pcm/GuPCMContactSphereBox.cpp */; }; - FFFF2b1c2c007fc42b1c2c00 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c2c007fc42b1c2c00 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; - FFFF2b1c2c687fc42b1c2c68 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c2c687fc42b1c2c68 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; - FFFF2b1c2cd07fc42b1c2cd0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c2cd07fc42b1c2cd0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; - FFFF2b1c2d387fc42b1c2d38 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c2d387fc42b1c2d38 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; - FFFF2b1c2da07fc42b1c2da0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c2da07fc42b1c2da0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; - FFFF2b1c2e087fc42b1c2e08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c2e087fc42b1c2e08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; - FFFF2b1c2e707fc42b1c2e70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c2e707fc42b1c2e70 /* src/pcm/GuPCMShapeConvex.cpp */; }; - FFFF2b1c2ed87fc42b1c2ed8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c2ed87fc42b1c2ed8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; - FFFF2b1c2f407fc42b1c2f40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c2f407fc42b1c2f40 /* src/pcm/GuPersistentContactManifold.cpp */; }; - FFFF2b1c2fa87fc42b1c2fa8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c2fa87fc42b1c2fa8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; - FFFF2b1c30107fc42b1c3010 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2b1c30107fc42b1c3010 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; + FFFFb49916007f9eb4991600 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb49916007f9eb4991600 /* src/CmBoxPruning.cpp */; }; + FFFFb49916687f9eb4991668 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb49916687f9eb4991668 /* src/CmCollection.cpp */; }; + FFFFb49916d07f9eb49916d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb49916d07f9eb49916d0 /* src/CmMathUtils.cpp */; }; + FFFFb49917387f9eb4991738 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb49917387f9eb4991738 /* src/CmPtrTable.cpp */; }; + FFFFb49917a07f9eb49917a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb49917a07f9eb49917a0 /* src/CmRadixSort.cpp */; }; + FFFFb49918087f9eb4991808 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb49918087f9eb4991808 /* src/CmRadixSortBuffered.cpp */; }; + FFFFb49918707f9eb4991870 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb49918707f9eb4991870 /* src/CmRenderOutput.cpp */; }; + FFFFb49918d87f9eb49918d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFDb49918d87f9eb49918d8 /* src/CmVisualization.cpp */; }; + FFFFb381bba87f9eb381bba8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381bba87f9eb381bba8 /* ../../Include/GeomUtils */; }; + FFFFb381f0e07f9eb381f0e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f0e07f9eb381f0e0 /* src/GuBounds.cpp */; }; + FFFFb381f1487f9eb381f148 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f1487f9eb381f148 /* src/GuBox.cpp */; }; + FFFFb381f1b07f9eb381f1b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f1b07f9eb381f1b0 /* src/GuCCTSweepTests.cpp */; }; + FFFFb381f2187f9eb381f218 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f2187f9eb381f218 /* src/GuCapsule.cpp */; }; + FFFFb381f2807f9eb381f280 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f2807f9eb381f280 /* src/GuGeometryQuery.cpp */; }; + FFFFb381f2e87f9eb381f2e8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f2e87f9eb381f2e8 /* src/GuGeometryUnion.cpp */; }; + FFFFb381f3507f9eb381f350 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f3507f9eb381f350 /* src/GuInternal.cpp */; }; + FFFFb381f3b87f9eb381f3b8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f3b87f9eb381f3b8 /* src/GuMTD.cpp */; }; + FFFFb381f4207f9eb381f420 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f4207f9eb381f420 /* src/GuMeshFactory.cpp */; }; + FFFFb381f4887f9eb381f488 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f4887f9eb381f488 /* src/GuMetaData.cpp */; }; + FFFFb381f4f07f9eb381f4f0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f4f07f9eb381f4f0 /* src/GuOverlapTests.cpp */; }; + FFFFb381f5587f9eb381f558 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f5587f9eb381f558 /* src/GuRaycastTests.cpp */; }; + FFFFb381f5c07f9eb381f5c0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f5c07f9eb381f5c0 /* src/GuSerialize.cpp */; }; + FFFFb381f6287f9eb381f628 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f6287f9eb381f628 /* src/GuSweepMTD.cpp */; }; + FFFFb381f6907f9eb381f690 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f6907f9eb381f690 /* src/GuSweepSharedTests.cpp */; }; + FFFFb381f6f87f9eb381f6f8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f6f87f9eb381f6f8 /* src/GuSweepTests.cpp */; }; + FFFFb381f7607f9eb381f760 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f7607f9eb381f760 /* src/contact/GuContactBoxBox.cpp */; }; + FFFFb381f7c87f9eb381f7c8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f7c87f9eb381f7c8 /* src/contact/GuContactCapsuleBox.cpp */; }; + FFFFb381f8307f9eb381f830 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f8307f9eb381f830 /* src/contact/GuContactCapsuleCapsule.cpp */; }; + FFFFb381f8987f9eb381f898 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f8987f9eb381f898 /* src/contact/GuContactCapsuleConvex.cpp */; }; + FFFFb381f9007f9eb381f900 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f9007f9eb381f900 /* src/contact/GuContactCapsuleMesh.cpp */; }; + FFFFb381f9687f9eb381f968 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f9687f9eb381f968 /* src/contact/GuContactConvexConvex.cpp */; }; + FFFFb381f9d07f9eb381f9d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381f9d07f9eb381f9d0 /* src/contact/GuContactConvexMesh.cpp */; }; + FFFFb381fa387f9eb381fa38 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381fa387f9eb381fa38 /* src/contact/GuContactPlaneBox.cpp */; }; + FFFFb381faa07f9eb381faa0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381faa07f9eb381faa0 /* src/contact/GuContactPlaneCapsule.cpp */; }; + FFFFb381fb087f9eb381fb08 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381fb087f9eb381fb08 /* src/contact/GuContactPlaneConvex.cpp */; }; + FFFFb381fb707f9eb381fb70 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381fb707f9eb381fb70 /* src/contact/GuContactPolygonPolygon.cpp */; }; + FFFFb381fbd87f9eb381fbd8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381fbd87f9eb381fbd8 /* src/contact/GuContactSphereBox.cpp */; }; + FFFFb381fc407f9eb381fc40 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381fc407f9eb381fc40 /* src/contact/GuContactSphereCapsule.cpp */; }; + FFFFb381fca87f9eb381fca8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381fca87f9eb381fca8 /* src/contact/GuContactSphereMesh.cpp */; }; + FFFFb381fd107f9eb381fd10 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381fd107f9eb381fd10 /* src/contact/GuContactSpherePlane.cpp */; }; + FFFFb381fd787f9eb381fd78 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381fd787f9eb381fd78 /* src/contact/GuContactSphereSphere.cpp */; }; + FFFFb381fde07f9eb381fde0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381fde07f9eb381fde0 /* src/contact/GuFeatureCode.cpp */; }; + FFFFb381fe487f9eb381fe48 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381fe487f9eb381fe48 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; + FFFFb381feb07f9eb381feb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381feb07f9eb381feb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; + FFFFb381ff187f9eb381ff18 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381ff187f9eb381ff18 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; + FFFFb381ff807f9eb381ff80 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381ff807f9eb381ff80 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; + FFFFb381ffe87f9eb381ffe8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb381ffe87f9eb381ffe8 /* src/common/GuBarycentricCoordinates.cpp */; }; + FFFFb38200507f9eb3820050 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38200507f9eb3820050 /* src/common/GuSeparatingAxes.cpp */; }; + FFFFb38200b87f9eb38200b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38200b87f9eb38200b8 /* src/convex/GuBigConvexData.cpp */; }; + FFFFb38201207f9eb3820120 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38201207f9eb3820120 /* src/convex/GuConvexHelper.cpp */; }; + FFFFb38201887f9eb3820188 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38201887f9eb3820188 /* src/convex/GuConvexMesh.cpp */; }; + FFFFb38201f07f9eb38201f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38201f07f9eb38201f0 /* src/convex/GuConvexSupportTable.cpp */; }; + FFFFb38202587f9eb3820258 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38202587f9eb3820258 /* src/convex/GuConvexUtilsInternal.cpp */; }; + FFFFb38202c07f9eb38202c0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38202c07f9eb38202c0 /* src/convex/GuHillClimbing.cpp */; }; + FFFFb38203287f9eb3820328 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38203287f9eb3820328 /* src/convex/GuShapeConvex.cpp */; }; + FFFFb38203907f9eb3820390 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38203907f9eb3820390 /* src/distance/GuDistancePointBox.cpp */; }; + FFFFb38203f87f9eb38203f8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38203f87f9eb38203f8 /* src/distance/GuDistancePointTriangle.cpp */; }; + FFFFb38204607f9eb3820460 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38204607f9eb3820460 /* src/distance/GuDistanceSegmentBox.cpp */; }; + FFFFb38204c87f9eb38204c8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38204c87f9eb38204c8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; + FFFFb38205307f9eb3820530 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38205307f9eb3820530 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; + FFFFb38205987f9eb3820598 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38205987f9eb3820598 /* src/sweep/GuSweepBoxBox.cpp */; }; + FFFFb38206007f9eb3820600 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38206007f9eb3820600 /* src/sweep/GuSweepBoxSphere.cpp */; }; + FFFFb38206687f9eb3820668 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38206687f9eb3820668 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; + FFFFb38206d07f9eb38206d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38206d07f9eb38206d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; + FFFFb38207387f9eb3820738 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38207387f9eb3820738 /* src/sweep/GuSweepCapsuleBox.cpp */; }; + FFFFb38207a07f9eb38207a0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38207a07f9eb38207a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; + FFFFb38208087f9eb3820808 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38208087f9eb3820808 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; + FFFFb38208707f9eb3820870 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38208707f9eb3820870 /* src/sweep/GuSweepSphereCapsule.cpp */; }; + FFFFb38208d87f9eb38208d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38208d87f9eb38208d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; + FFFFb38209407f9eb3820940 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38209407f9eb3820940 /* src/sweep/GuSweepSphereTriangle.cpp */; }; + FFFFb38209a87f9eb38209a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38209a87f9eb38209a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; + FFFFb3820a107f9eb3820a10 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3820a107f9eb3820a10 /* src/gjk/GuEPA.cpp */; }; + FFFFb3820a787f9eb3820a78 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3820a787f9eb3820a78 /* src/gjk/GuGJKSimplex.cpp */; }; + FFFFb3820ae07f9eb3820ae0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3820ae07f9eb3820ae0 /* src/gjk/GuGJKTest.cpp */; }; + FFFFb3820b487f9eb3820b48 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3820b487f9eb3820b48 /* src/intersection/GuIntersectionBoxBox.cpp */; }; + FFFFb3820bb07f9eb3820bb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3820bb07f9eb3820bb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; + FFFFb3820c187f9eb3820c18 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3820c187f9eb3820c18 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; + FFFFb3820c807f9eb3820c80 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3820c807f9eb3820c80 /* src/intersection/GuIntersectionRayBox.cpp */; }; + FFFFb3820ce87f9eb3820ce8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3820ce87f9eb3820ce8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; + FFFFb3820d507f9eb3820d50 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3820d507f9eb3820d50 /* src/intersection/GuIntersectionRaySphere.cpp */; }; + FFFFb3820db87f9eb3820db8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3820db87f9eb3820db8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; + FFFFb3820e207f9eb3820e20 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3820e207f9eb3820e20 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; + FFFFb3820e887f9eb3820e88 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3820e887f9eb3820e88 /* src/mesh/GuBV32.cpp */; }; + FFFFb3820ef07f9eb3820ef0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3820ef07f9eb3820ef0 /* src/mesh/GuBV32Build.cpp */; }; + FFFFb3820f587f9eb3820f58 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3820f587f9eb3820f58 /* src/mesh/GuBV4.cpp */; }; + FFFFb3820fc07f9eb3820fc0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3820fc07f9eb3820fc0 /* src/mesh/GuBV4Build.cpp */; }; + FFFFb38210287f9eb3821028 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38210287f9eb3821028 /* src/mesh/GuBV4_AABBSweep.cpp */; }; + FFFFb38210907f9eb3821090 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38210907f9eb3821090 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; + FFFFb38210f87f9eb38210f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38210f87f9eb38210f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; + FFFFb38211607f9eb3821160 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38211607f9eb3821160 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; + FFFFb38211c87f9eb38211c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38211c87f9eb38211c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; + FFFFb38212307f9eb3821230 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38212307f9eb3821230 /* src/mesh/GuBV4_Raycast.cpp */; }; + FFFFb38212987f9eb3821298 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38212987f9eb3821298 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; + FFFFb38213007f9eb3821300 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38213007f9eb3821300 /* src/mesh/GuBV4_SphereSweep.cpp */; }; + FFFFb38213687f9eb3821368 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38213687f9eb3821368 /* src/mesh/GuMeshQuery.cpp */; }; + FFFFb38213d07f9eb38213d0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38213d07f9eb38213d0 /* src/mesh/GuMidphaseBV4.cpp */; }; + FFFFb38214387f9eb3821438 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38214387f9eb3821438 /* src/mesh/GuMidphaseRTree.cpp */; }; + FFFFb38214a07f9eb38214a0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38214a07f9eb38214a0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; + FFFFb38215087f9eb3821508 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38215087f9eb3821508 /* src/mesh/GuRTree.cpp */; }; + FFFFb38215707f9eb3821570 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38215707f9eb3821570 /* src/mesh/GuRTreeQueries.cpp */; }; + FFFFb38215d87f9eb38215d8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38215d87f9eb38215d8 /* src/mesh/GuSweepsMesh.cpp */; }; + FFFFb38216407f9eb3821640 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38216407f9eb3821640 /* src/mesh/GuTriangleMesh.cpp */; }; + FFFFb38216a87f9eb38216a8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38216a87f9eb38216a8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; + FFFFb38217107f9eb3821710 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38217107f9eb3821710 /* src/mesh/GuTriangleMeshRTree.cpp */; }; + FFFFb38217787f9eb3821778 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38217787f9eb3821778 /* src/hf/GuHeightField.cpp */; }; + FFFFb38217e07f9eb38217e0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38217e07f9eb38217e0 /* src/hf/GuHeightFieldUtil.cpp */; }; + FFFFb38218487f9eb3821848 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38218487f9eb3821848 /* src/hf/GuOverlapTestsHF.cpp */; }; + FFFFb38218b07f9eb38218b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38218b07f9eb38218b0 /* src/hf/GuSweepsHF.cpp */; }; + FFFFb38219187f9eb3821918 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38219187f9eb3821918 /* src/pcm/GuPCMContactBoxBox.cpp */; }; + FFFFb38219807f9eb3821980 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38219807f9eb3821980 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; + FFFFb38219e87f9eb38219e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38219e87f9eb38219e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; + FFFFb3821a507f9eb3821a50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3821a507f9eb3821a50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; + FFFFb3821ab87f9eb3821ab8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3821ab87f9eb3821ab8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; + FFFFb3821b207f9eb3821b20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3821b207f9eb3821b20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; + FFFFb3821b887f9eb3821b88 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3821b887f9eb3821b88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; + FFFFb3821bf07f9eb3821bf0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3821bf07f9eb3821bf0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; + FFFFb3821c587f9eb3821c58 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3821c587f9eb3821c58 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; + FFFFb3821cc07f9eb3821cc0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3821cc07f9eb3821cc0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; + FFFFb3821d287f9eb3821d28 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3821d287f9eb3821d28 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; + FFFFb3821d907f9eb3821d90 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3821d907f9eb3821d90 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; + FFFFb3821df87f9eb3821df8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3821df87f9eb3821df8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; + FFFFb3821e607f9eb3821e60 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3821e607f9eb3821e60 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; + FFFFb3821ec87f9eb3821ec8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3821ec87f9eb3821ec8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; + FFFFb3821f307f9eb3821f30 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3821f307f9eb3821f30 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; + FFFFb3821f987f9eb3821f98 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb3821f987f9eb3821f98 /* src/pcm/GuPCMContactSphereBox.cpp */; }; + FFFFb38220007f9eb3822000 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38220007f9eb3822000 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; + FFFFb38220687f9eb3822068 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38220687f9eb3822068 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; + FFFFb38220d07f9eb38220d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38220d07f9eb38220d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; + FFFFb38221387f9eb3822138 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38221387f9eb3822138 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; + FFFFb38221a07f9eb38221a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38221a07f9eb38221a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; + FFFFb38222087f9eb3822208 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38222087f9eb3822208 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; + FFFFb38222707f9eb3822270 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38222707f9eb3822270 /* src/pcm/GuPCMShapeConvex.cpp */; }; + FFFFb38222d87f9eb38222d8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38222d87f9eb38222d8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; + FFFFb38223407f9eb3822340 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38223407f9eb3822340 /* src/pcm/GuPersistentContactManifold.cpp */; }; + FFFFb38223a87f9eb38223a8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38223a87f9eb38223a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; + FFFFb38224107f9eb3822410 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFDb38224107f9eb3822410 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2b949d707fc42b949d70 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2b1a0a007fc42b1a0a00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a0a687fc42b1a0a68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a0ad07fc42b1a0ad0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a0b387fc42b1a0b38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a0ba07fc42b1a0ba0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a0c087fc42b1a0c08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a0c707fc42b1a0c70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a0cd87fc42b1a0cd8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a0d407fc42b1a0d40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a0da87fc42b1a0da8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a0e107fc42b1a0e10 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a0e787fc42b1a0e78 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a0ee07fc42b1a0ee0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a0f487fc42b1a0f48 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a0fb07fc42b1a0fb0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a10187fc42b1a1018 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a10807fc42b1a1080 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a10e87fc42b1a10e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a11507fc42b1a1150 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a11b87fc42b1a11b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a12207fc42b1a1220 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a12887fc42b1a1288 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a12f07fc42b1a12f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a13587fc42b1a1358 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a13c07fc42b1a13c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a14287fc42b1a1428 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a14907fc42b1a1490 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a14f87fc42b1a14f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a15607fc42b1a1560 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a15c87fc42b1a15c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a16307fc42b1a1630 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a16987fc42b1a1698 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1a17007fc42b1a1700 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0000007fc42c000000 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0000687fc42c000068 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0000d07fc42c0000d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0001387fc42c000138 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0001a07fc42c0001a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0002087fc42c000208 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0002707fc42c000270 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0002d87fc42c0002d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0003407fc42c000340 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0003a87fc42c0003a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0004107fc42c000410 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0004787fc42c000478 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0004e07fc42c0004e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0005487fc42c000548 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0005b07fc42c0005b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0006187fc42c000618 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0006807fc42c000680 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0006e87fc42c0006e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0007507fc42c000750 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0007b87fc42c0007b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0008207fc42c000820 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0008887fc42c000888 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0008f07fc42c0008f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0009587fc42c000958 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0009c07fc42c0009c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c000a287fc42c000a28 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c000a907fc42c000a90 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c000af87fc42c000af8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c000b607fc42c000b60 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c000bc87fc42c000bc8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c000c307fc42c000c30 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c000c987fc42c000c98 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c000d007fc42c000d00 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c000d687fc42c000d68 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c000dd07fc42c000dd0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c000e387fc42c000e38 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bc4007fc42b1bc400 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bc4687fc42b1bc468 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bc4d07fc42b1bc4d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bc5387fc42b1bc538 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bc5a07fc42b1bc5a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bc6087fc42b1bc608 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bc6707fc42b1bc670 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bc6d87fc42b1bc6d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bc7407fc42b1bc740 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bc7a87fc42b1bc7a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bc8107fc42b1bc810 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bc8787fc42b1bc878 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bc8e07fc42b1bc8e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bc9487fc42b1bc948 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bc9b07fc42b1bc9b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bca187fc42b1bca18 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bca807fc42b1bca80 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bcae87fc42b1bcae8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bcb507fc42b1bcb50 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bcbb87fc42b1bcbb8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bcc207fc42b1bcc20 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bcc887fc42b1bcc88 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bccf07fc42b1bccf0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bcd587fc42b1bcd58 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bcdc07fc42b1bcdc0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bce287fc42b1bce28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bce907fc42b1bce90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bcef87fc42b1bcef8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bcf607fc42b1bcf60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bcfc87fc42b1bcfc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd0307fc42b1bd030 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd0987fc42b1bd098 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd1007fc42b1bd100 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd1687fc42b1bd168 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd1d07fc42b1bd1d0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd2387fc42b1bd238 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd2a07fc42b1bd2a0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd3087fc42b1bd308 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd3707fc42b1bd370 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd3d87fc42b1bd3d8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd4407fc42b1bd440 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd4a87fc42b1bd4a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd5107fc42b1bd510 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd5787fc42b1bd578 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd5e07fc42b1bd5e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd6487fc42b1bd648 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd6b07fc42b1bd6b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd7187fc42b1bd718 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd7807fc42b1bd780 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd7e87fc42b1bd7e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd8507fc42b1bd850 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd8b87fc42b1bd8b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bd9207fc42b1bd920 /* 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; }; - FFFD2b1bd9887fc42b1bd988 /* 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; }; - FFFD2b1bd9f07fc42b1bd9f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bda587fc42b1bda58 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bdac07fc42b1bdac0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bdb287fc42b1bdb28 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bdb907fc42b1bdb90 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bdbf87fc42b1bdbf8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bdc607fc42b1bdc60 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bdcc87fc42b1bdcc8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bdd307fc42b1bdd30 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bdd987fc42b1bdd98 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bde007fc42b1bde00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bde687fc42b1bde68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bded07fc42b1bded0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bdf387fc42b1bdf38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bdfa07fc42b1bdfa0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be0087fc42b1be008 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be0707fc42b1be070 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be0d87fc42b1be0d8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be1407fc42b1be140 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be1a87fc42b1be1a8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be2107fc42b1be210 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be2787fc42b1be278 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be2e07fc42b1be2e0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be3487fc42b1be348 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be3b07fc42b1be3b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be4187fc42b1be418 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be4807fc42b1be480 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be4e87fc42b1be4e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be5507fc42b1be550 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be5b87fc42b1be5b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be6207fc42b1be620 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be6887fc42b1be688 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be6f07fc42b1be6f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be7587fc42b1be758 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be7c07fc42b1be7c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be8287fc42b1be828 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be8907fc42b1be890 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be8f87fc42b1be8f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be9607fc42b1be960 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1be9c87fc42b1be9c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bea307fc42b1bea30 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bea987fc42b1bea98 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1beb007fc42b1beb00 /* 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; }; - FFFD2b1beb687fc42b1beb68 /* 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; }; - FFFD2b1bebd07fc42b1bebd0 /* 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; }; - FFFD2b1bec387fc42b1bec38 /* 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; }; - FFFD2b1beca07fc42b1beca0 /* 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; }; - FFFD2b1bed087fc42b1bed08 /* 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; }; - FFFD2b1bed707fc42b1bed70 /* 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; }; - FFFD2b1bedd87fc42b1bedd8 /* 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; }; - FFFD2b1bee407fc42b1bee40 /* 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; }; - FFFD2b1beea87fc42b1beea8 /* 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; }; - FFFD2b1bef107fc42b1bef10 /* 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; }; - FFFD2b1bef787fc42b1bef78 /* 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; }; - FFFD2b1befe07fc42b1befe0 /* 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; }; - FFFD2b1bf0487fc42b1bf048 /* 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; }; - FFFD2b1bf0b07fc42b1bf0b0 /* 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; }; - FFFD2b1bf1187fc42b1bf118 /* 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; }; - FFFD2b1bf1807fc42b1bf180 /* 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; }; - FFFD2b1bf1e87fc42b1bf1e8 /* 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; }; - FFFD2b1bf2507fc42b1bf250 /* 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; }; - FFFD2b1bf2b87fc42b1bf2b8 /* 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; }; - FFFD2b1bf3207fc42b1bf320 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf3887fc42b1bf388 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf3f07fc42b1bf3f0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf4587fc42b1bf458 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf4c07fc42b1bf4c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf5287fc42b1bf528 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf5907fc42b1bf590 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf5f87fc42b1bf5f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf6607fc42b1bf660 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf6c87fc42b1bf6c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf7307fc42b1bf730 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf7987fc42b1bf798 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf8007fc42b1bf800 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf8687fc42b1bf868 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf8d07fc42b1bf8d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf9387fc42b1bf938 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bf9a07fc42b1bf9a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bfa087fc42b1bfa08 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bfa707fc42b1bfa70 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bfad87fc42b1bfad8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bfb407fc42b1bfb40 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bfba87fc42b1bfba8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bfc107fc42b1bfc10 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bfc787fc42b1bfc78 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bfce07fc42b1bfce0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bfd487fc42b1bfd48 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bfdb07fc42b1bfdb0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bfe187fc42b1bfe18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bfe807fc42b1bfe80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bfee87fc42b1bfee8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bff507fc42b1bff50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1bffb87fc42b1bffb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c00207fc42b1c0020 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c00887fc42b1c0088 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c00f07fc42b1c00f0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c01587fc42b1c0158 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c01c07fc42b1c01c0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c02287fc42b1c0228 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c02907fc42b1c0290 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c02f87fc42b1c02f8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c03607fc42b1c0360 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c03c87fc42b1c03c8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c04307fc42b1c0430 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c04987fc42b1c0498 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c05007fc42b1c0500 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c05687fc42b1c0568 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c05d07fc42b1c05d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c06387fc42b1c0638 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c06a07fc42b1c06a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c07087fc42b1c0708 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c07707fc42b1c0770 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c07d87fc42b1c07d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c08407fc42b1c0840 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c08a87fc42b1c08a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c09107fc42b1c0910 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c09787fc42b1c0978 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c09e07fc42b1c09e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c0a487fc42b1c0a48 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c0ab07fc42b1c0ab0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c0b187fc42b1c0b18 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c0b807fc42b1c0b80 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c0be87fc42b1c0be8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c0c507fc42b1c0c50 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c0cb87fc42b1c0cb8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c0d207fc42b1c0d20 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c0d887fc42b1c0d88 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c0df07fc42b1c0df0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c0e587fc42b1c0e58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c0ec07fc42b1c0ec0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c0f287fc42b1c0f28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c0f907fc42b1c0f90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c0ff87fc42b1c0ff8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c10607fc42b1c1060 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c10c87fc42b1c10c8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c11307fc42b1c1130 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c11987fc42b1c1198 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c12007fc42b1c1200 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c12687fc42b1c1268 /* 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; }; - FFFD2b1c12d07fc42b1c12d0 /* 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; }; - FFFD2b1c13387fc42b1c1338 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c13a07fc42b1c13a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c14087fc42b1c1408 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c14707fc42b1c1470 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c14d87fc42b1c14d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c15407fc42b1c1540 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c15a87fc42b1c15a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c16107fc42b1c1610 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c16787fc42b1c1678 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c16e07fc42b1c16e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c17487fc42b1c1748 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c17b07fc42b1c17b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c18187fc42b1c1818 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c18807fc42b1c1880 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c18e87fc42b1c18e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c19507fc42b1c1950 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c19b87fc42b1c19b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c1a207fc42b1c1a20 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c1a887fc42b1c1a88 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c1af07fc42b1c1af0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c1b587fc42b1c1b58 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c1bc07fc42b1c1bc0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c1c287fc42b1c1c28 /* 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; }; - FFFD2b1c1c907fc42b1c1c90 /* 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; }; - FFFD2b1c1cf87fc42b1c1cf8 /* 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; }; - FFFD2b1c1d607fc42b1c1d60 /* 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; }; - FFFD2b1c1dc87fc42b1c1dc8 /* 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; }; - FFFD2b1c1e307fc42b1c1e30 /* 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; }; - FFFD2b1c1e987fc42b1c1e98 /* 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; }; - FFFD2b1c1f007fc42b1c1f00 /* 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; }; - FFFD2b1c1f687fc42b1c1f68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c1fd07fc42b1c1fd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c20387fc42b1c2038 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c20a07fc42b1c20a0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c21087fc42b1c2108 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c21707fc42b1c2170 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c21d87fc42b1c21d8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c22407fc42b1c2240 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c22a87fc42b1c22a8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c23107fc42b1c2310 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c23787fc42b1c2378 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c23e07fc42b1c23e0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c24487fc42b1c2448 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c24b07fc42b1c24b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c25187fc42b1c2518 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c25807fc42b1c2580 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c25e87fc42b1c25e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c26507fc42b1c2650 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c26b87fc42b1c26b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c27207fc42b1c2720 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c27887fc42b1c2788 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c27f07fc42b1c27f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c28587fc42b1c2858 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c28c07fc42b1c28c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c29287fc42b1c2928 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c29907fc42b1c2990 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c29f87fc42b1c29f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c2a607fc42b1c2a60 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c2ac87fc42b1c2ac8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c2b307fc42b1c2b30 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c2b987fc42b1c2b98 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c2c007fc42b1c2c00 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c2c687fc42b1c2c68 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c2cd07fc42b1c2cd0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c2d387fc42b1c2d38 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c2da07fc42b1c2da0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c2e087fc42b1c2e08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c2e707fc42b1c2e70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c2ed87fc42b1c2ed8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c2f407fc42b1c2f40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c2fa87fc42b1c2fa8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1c30107fc42b1c3010 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb43288707f9eb4328870 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb38288007f9eb3828800 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38288687f9eb3828868 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38288d07f9eb38288d0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38289387f9eb3828938 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38289a07f9eb38289a0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3828a087f9eb3828a08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3828a707f9eb3828a70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3828ad87f9eb3828ad8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3828b407f9eb3828b40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3828ba87f9eb3828ba8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3828c107f9eb3828c10 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3828c787f9eb3828c78 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3828ce07f9eb3828ce0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3828d487f9eb3828d48 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3828db07f9eb3828db0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3828e187f9eb3828e18 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3828e807f9eb3828e80 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3828ee87f9eb3828ee8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3828f507f9eb3828f50 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3828fb87f9eb3828fb8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38290207f9eb3829020 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38290887f9eb3829088 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38290f07f9eb38290f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38291587f9eb3829158 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38291c07f9eb38291c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38292287f9eb3829228 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38292907f9eb3829290 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38292f87f9eb38292f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38293607f9eb3829360 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38293c87f9eb38293c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38294307f9eb3829430 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38294987f9eb3829498 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38295007f9eb3829500 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49916007f9eb4991600 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49916687f9eb4991668 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49916d07f9eb49916d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49917387f9eb4991738 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49917a07f9eb49917a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49918087f9eb4991808 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49918707f9eb4991870 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49918d87f9eb49918d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb49919407f9eb4991940 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49919a87f9eb49919a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4991a107f9eb4991a10 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4991a787f9eb4991a78 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4991ae07f9eb4991ae0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4991b487f9eb4991b48 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4991bb07f9eb4991bb0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4991c187f9eb4991c18 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4991c807f9eb4991c80 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4991ce87f9eb4991ce8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4991d507f9eb4991d50 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4991db87f9eb4991db8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4991e207f9eb4991e20 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4991e887f9eb4991e88 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4991ef07f9eb4991ef0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4991f587f9eb4991f58 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4991fc07f9eb4991fc0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49920287f9eb4992028 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49920907f9eb4992090 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49920f87f9eb49920f8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49921607f9eb4992160 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49921c87f9eb49921c8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49922307f9eb4992230 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49922987f9eb4992298 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49923007f9eb4992300 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49923687f9eb4992368 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49923d07f9eb49923d0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb49924387f9eb4992438 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381b8007f9eb381b800 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381b8687f9eb381b868 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381b8d07f9eb381b8d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381b9387f9eb381b938 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381b9a07f9eb381b9a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381ba087f9eb381ba08 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381ba707f9eb381ba70 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381bad87f9eb381bad8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381bb407f9eb381bb40 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381bba87f9eb381bba8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; + FFFDb381bc107f9eb381bc10 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381bc787f9eb381bc78 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381bce07f9eb381bce0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381bd487f9eb381bd48 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381bdb07f9eb381bdb0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381be187f9eb381be18 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381be807f9eb381be80 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381bee87f9eb381bee8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381bf507f9eb381bf50 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381bfb87f9eb381bfb8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c0207f9eb381c020 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c0887f9eb381c088 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c0f07f9eb381c0f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c1587f9eb381c158 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c1c07f9eb381c1c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c2287f9eb381c228 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c2907f9eb381c290 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c2f87f9eb381c2f8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c3607f9eb381c360 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c3c87f9eb381c3c8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c4307f9eb381c430 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c4987f9eb381c498 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c5007f9eb381c500 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c5687f9eb381c568 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c5d07f9eb381c5d0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c6387f9eb381c638 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c6a07f9eb381c6a0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c7087f9eb381c708 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c7707f9eb381c770 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c7d87f9eb381c7d8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c8407f9eb381c840 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c8a87f9eb381c8a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c9107f9eb381c910 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c9787f9eb381c978 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381c9e07f9eb381c9e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381ca487f9eb381ca48 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381cab07f9eb381cab0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381cb187f9eb381cb18 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381cb807f9eb381cb80 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381cbe87f9eb381cbe8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381cc507f9eb381cc50 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381ccb87f9eb381ccb8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381cd207f9eb381cd20 /* 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; }; + FFFDb381cd887f9eb381cd88 /* 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; }; + FFFDb381cdf07f9eb381cdf0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381ce587f9eb381ce58 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381cec07f9eb381cec0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381cf287f9eb381cf28 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381cf907f9eb381cf90 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381cff87f9eb381cff8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d0607f9eb381d060 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d0c87f9eb381d0c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d1307f9eb381d130 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d1987f9eb381d198 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d2007f9eb381d200 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d2687f9eb381d268 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d2d07f9eb381d2d0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d3387f9eb381d338 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d3a07f9eb381d3a0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d4087f9eb381d408 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d4707f9eb381d470 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d4d87f9eb381d4d8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d5407f9eb381d540 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d5a87f9eb381d5a8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d6107f9eb381d610 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d6787f9eb381d678 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d6e07f9eb381d6e0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d7487f9eb381d748 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d7b07f9eb381d7b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d8187f9eb381d818 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d8807f9eb381d880 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d8e87f9eb381d8e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d9507f9eb381d950 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381d9b87f9eb381d9b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381da207f9eb381da20 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381da887f9eb381da88 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381daf07f9eb381daf0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381db587f9eb381db58 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381dbc07f9eb381dbc0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381dc287f9eb381dc28 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381dc907f9eb381dc90 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381dcf87f9eb381dcf8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381dd607f9eb381dd60 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381ddc87f9eb381ddc8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381de307f9eb381de30 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381de987f9eb381de98 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381df007f9eb381df00 /* 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; }; + FFFDb381df687f9eb381df68 /* 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; }; + FFFDb381dfd07f9eb381dfd0 /* 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; }; + FFFDb381e0387f9eb381e038 /* 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; }; + FFFDb381e0a07f9eb381e0a0 /* 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; }; + FFFDb381e1087f9eb381e108 /* 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; }; + FFFDb381e1707f9eb381e170 /* 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; }; + FFFDb381e1d87f9eb381e1d8 /* 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; }; + FFFDb381e2407f9eb381e240 /* 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; }; + FFFDb381e2a87f9eb381e2a8 /* 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; }; + FFFDb381e3107f9eb381e310 /* 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; }; + FFFDb381e3787f9eb381e378 /* 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; }; + FFFDb381e3e07f9eb381e3e0 /* 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; }; + FFFDb381e4487f9eb381e448 /* 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; }; + FFFDb381e4b07f9eb381e4b0 /* 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; }; + FFFDb381e5187f9eb381e518 /* 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; }; + FFFDb381e5807f9eb381e580 /* 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; }; + FFFDb381e5e87f9eb381e5e8 /* 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; }; + FFFDb381e6507f9eb381e650 /* 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; }; + FFFDb381e6b87f9eb381e6b8 /* 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; }; + FFFDb381e7207f9eb381e720 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381e7887f9eb381e788 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381e7f07f9eb381e7f0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381e8587f9eb381e858 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381e8c07f9eb381e8c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381e9287f9eb381e928 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381e9907f9eb381e990 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381e9f87f9eb381e9f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381ea607f9eb381ea60 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381eac87f9eb381eac8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381eb307f9eb381eb30 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381eb987f9eb381eb98 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381ec007f9eb381ec00 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381ec687f9eb381ec68 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381ecd07f9eb381ecd0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381ed387f9eb381ed38 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381eda07f9eb381eda0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381ee087f9eb381ee08 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381ee707f9eb381ee70 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381eed87f9eb381eed8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381ef407f9eb381ef40 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381efa87f9eb381efa8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381f0107f9eb381f010 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381f0787f9eb381f078 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFDb381f0e07f9eb381f0e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f1487f9eb381f148 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f1b07f9eb381f1b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f2187f9eb381f218 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f2807f9eb381f280 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f2e87f9eb381f2e8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f3507f9eb381f350 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f3b87f9eb381f3b8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f4207f9eb381f420 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f4887f9eb381f488 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f4f07f9eb381f4f0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f5587f9eb381f558 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f5c07f9eb381f5c0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f6287f9eb381f628 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f6907f9eb381f690 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f6f87f9eb381f6f8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f7607f9eb381f760 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f7c87f9eb381f7c8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f8307f9eb381f830 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f8987f9eb381f898 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f9007f9eb381f900 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f9687f9eb381f968 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381f9d07f9eb381f9d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381fa387f9eb381fa38 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381faa07f9eb381faa0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381fb087f9eb381fb08 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381fb707f9eb381fb70 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381fbd87f9eb381fbd8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381fc407f9eb381fc40 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381fca87f9eb381fca8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381fd107f9eb381fd10 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381fd787f9eb381fd78 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381fde07f9eb381fde0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381fe487f9eb381fe48 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381feb07f9eb381feb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381ff187f9eb381ff18 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381ff807f9eb381ff80 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb381ffe87f9eb381ffe8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38200507f9eb3820050 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38200b87f9eb38200b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38201207f9eb3820120 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38201887f9eb3820188 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38201f07f9eb38201f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38202587f9eb3820258 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38202c07f9eb38202c0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38203287f9eb3820328 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38203907f9eb3820390 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38203f87f9eb38203f8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38204607f9eb3820460 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38204c87f9eb38204c8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38205307f9eb3820530 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38205987f9eb3820598 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38206007f9eb3820600 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38206687f9eb3820668 /* 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; }; + FFFDb38206d07f9eb38206d0 /* 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; }; + FFFDb38207387f9eb3820738 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38207a07f9eb38207a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38208087f9eb3820808 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38208707f9eb3820870 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38208d87f9eb38208d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38209407f9eb3820940 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38209a87f9eb38209a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3820a107f9eb3820a10 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3820a787f9eb3820a78 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3820ae07f9eb3820ae0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3820b487f9eb3820b48 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3820bb07f9eb3820bb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3820c187f9eb3820c18 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3820c807f9eb3820c80 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3820ce87f9eb3820ce8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3820d507f9eb3820d50 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3820db87f9eb3820db8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3820e207f9eb3820e20 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3820e887f9eb3820e88 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3820ef07f9eb3820ef0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3820f587f9eb3820f58 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3820fc07f9eb3820fc0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38210287f9eb3821028 /* 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; }; + FFFDb38210907f9eb3821090 /* 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; }; + FFFDb38210f87f9eb38210f8 /* 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; }; + FFFDb38211607f9eb3821160 /* 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; }; + FFFDb38211c87f9eb38211c8 /* 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; }; + FFFDb38212307f9eb3821230 /* 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; }; + FFFDb38212987f9eb3821298 /* 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; }; + FFFDb38213007f9eb3821300 /* 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; }; + FFFDb38213687f9eb3821368 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38213d07f9eb38213d0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38214387f9eb3821438 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38214a07f9eb38214a0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38215087f9eb3821508 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38215707f9eb3821570 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38215d87f9eb38215d8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38216407f9eb3821640 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38216a87f9eb38216a8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38217107f9eb3821710 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38217787f9eb3821778 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38217e07f9eb38217e0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38218487f9eb3821848 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38218b07f9eb38218b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38219187f9eb3821918 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38219807f9eb3821980 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38219e87f9eb38219e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3821a507f9eb3821a50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3821ab87f9eb3821ab8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3821b207f9eb3821b20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3821b887f9eb3821b88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3821bf07f9eb3821bf0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3821c587f9eb3821c58 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3821cc07f9eb3821cc0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3821d287f9eb3821d28 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3821d907f9eb3821d90 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3821df87f9eb3821df8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3821e607f9eb3821e60 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3821ec87f9eb3821ec8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3821f307f9eb3821f30 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3821f987f9eb3821f98 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38220007f9eb3822000 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38220687f9eb3822068 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38220d07f9eb38220d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38221387f9eb3822138 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38221a07f9eb38221a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38222087f9eb3822208 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38222707f9eb3822270 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38222d87f9eb38222d8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38223407f9eb3822340 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38223a87f9eb38223a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38224107f9eb3822410 /* 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 */ - FFF22b949d707fc42b949d70 /* Resources */ = { + FFF2b43288707f9eb4328870 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2b1bc7a87fc42b1bc7a8, + FFFFb381bba87f9eb381bba8, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2b949d707fc42b949d70 /* Frameworks */ = { + FFFCb43288707f9eb4328870 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1841,145 +1841,145 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82b949d707fc42b949d70 /* Sources */ = { + FFF8b43288707f9eb4328870 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c0000007fc42c000000, - FFFF2c0000687fc42c000068, - FFFF2c0000d07fc42c0000d0, - FFFF2c0001387fc42c000138, - FFFF2c0001a07fc42c0001a0, - FFFF2c0002087fc42c000208, - FFFF2c0002707fc42c000270, - FFFF2c0002d87fc42c0002d8, - FFFF2b1bfce07fc42b1bfce0, - FFFF2b1bfd487fc42b1bfd48, - FFFF2b1bfdb07fc42b1bfdb0, - FFFF2b1bfe187fc42b1bfe18, - FFFF2b1bfe807fc42b1bfe80, - FFFF2b1bfee87fc42b1bfee8, - FFFF2b1bff507fc42b1bff50, - FFFF2b1bffb87fc42b1bffb8, - FFFF2b1c00207fc42b1c0020, - FFFF2b1c00887fc42b1c0088, - FFFF2b1c00f07fc42b1c00f0, - FFFF2b1c01587fc42b1c0158, - FFFF2b1c01c07fc42b1c01c0, - FFFF2b1c02287fc42b1c0228, - FFFF2b1c02907fc42b1c0290, - FFFF2b1c02f87fc42b1c02f8, - FFFF2b1c03607fc42b1c0360, - FFFF2b1c03c87fc42b1c03c8, - FFFF2b1c04307fc42b1c0430, - FFFF2b1c04987fc42b1c0498, - FFFF2b1c05007fc42b1c0500, - FFFF2b1c05687fc42b1c0568, - FFFF2b1c05d07fc42b1c05d0, - FFFF2b1c06387fc42b1c0638, - FFFF2b1c06a07fc42b1c06a0, - FFFF2b1c07087fc42b1c0708, - FFFF2b1c07707fc42b1c0770, - FFFF2b1c07d87fc42b1c07d8, - FFFF2b1c08407fc42b1c0840, - FFFF2b1c08a87fc42b1c08a8, - FFFF2b1c09107fc42b1c0910, - FFFF2b1c09787fc42b1c0978, - FFFF2b1c09e07fc42b1c09e0, - FFFF2b1c0a487fc42b1c0a48, - FFFF2b1c0ab07fc42b1c0ab0, - FFFF2b1c0b187fc42b1c0b18, - FFFF2b1c0b807fc42b1c0b80, - FFFF2b1c0be87fc42b1c0be8, - FFFF2b1c0c507fc42b1c0c50, - FFFF2b1c0cb87fc42b1c0cb8, - FFFF2b1c0d207fc42b1c0d20, - FFFF2b1c0d887fc42b1c0d88, - FFFF2b1c0df07fc42b1c0df0, - FFFF2b1c0e587fc42b1c0e58, - FFFF2b1c0ec07fc42b1c0ec0, - FFFF2b1c0f287fc42b1c0f28, - FFFF2b1c0f907fc42b1c0f90, - FFFF2b1c0ff87fc42b1c0ff8, - FFFF2b1c10607fc42b1c1060, - FFFF2b1c10c87fc42b1c10c8, - FFFF2b1c11307fc42b1c1130, - FFFF2b1c11987fc42b1c1198, - FFFF2b1c12007fc42b1c1200, - FFFF2b1c12687fc42b1c1268, - FFFF2b1c12d07fc42b1c12d0, - FFFF2b1c13387fc42b1c1338, - FFFF2b1c13a07fc42b1c13a0, - FFFF2b1c14087fc42b1c1408, - FFFF2b1c14707fc42b1c1470, - FFFF2b1c14d87fc42b1c14d8, - FFFF2b1c15407fc42b1c1540, - FFFF2b1c15a87fc42b1c15a8, - FFFF2b1c16107fc42b1c1610, - FFFF2b1c16787fc42b1c1678, - FFFF2b1c16e07fc42b1c16e0, - FFFF2b1c17487fc42b1c1748, - FFFF2b1c17b07fc42b1c17b0, - FFFF2b1c18187fc42b1c1818, - FFFF2b1c18807fc42b1c1880, - FFFF2b1c18e87fc42b1c18e8, - FFFF2b1c19507fc42b1c1950, - FFFF2b1c19b87fc42b1c19b8, - FFFF2b1c1a207fc42b1c1a20, - FFFF2b1c1a887fc42b1c1a88, - FFFF2b1c1af07fc42b1c1af0, - FFFF2b1c1b587fc42b1c1b58, - FFFF2b1c1bc07fc42b1c1bc0, - FFFF2b1c1c287fc42b1c1c28, - FFFF2b1c1c907fc42b1c1c90, - FFFF2b1c1cf87fc42b1c1cf8, - FFFF2b1c1d607fc42b1c1d60, - FFFF2b1c1dc87fc42b1c1dc8, - FFFF2b1c1e307fc42b1c1e30, - FFFF2b1c1e987fc42b1c1e98, - FFFF2b1c1f007fc42b1c1f00, - FFFF2b1c1f687fc42b1c1f68, - FFFF2b1c1fd07fc42b1c1fd0, - FFFF2b1c20387fc42b1c2038, - FFFF2b1c20a07fc42b1c20a0, - FFFF2b1c21087fc42b1c2108, - FFFF2b1c21707fc42b1c2170, - FFFF2b1c21d87fc42b1c21d8, - FFFF2b1c22407fc42b1c2240, - FFFF2b1c22a87fc42b1c22a8, - FFFF2b1c23107fc42b1c2310, - FFFF2b1c23787fc42b1c2378, - FFFF2b1c23e07fc42b1c23e0, - FFFF2b1c24487fc42b1c2448, - FFFF2b1c24b07fc42b1c24b0, - FFFF2b1c25187fc42b1c2518, - FFFF2b1c25807fc42b1c2580, - FFFF2b1c25e87fc42b1c25e8, - FFFF2b1c26507fc42b1c2650, - FFFF2b1c26b87fc42b1c26b8, - FFFF2b1c27207fc42b1c2720, - FFFF2b1c27887fc42b1c2788, - FFFF2b1c27f07fc42b1c27f0, - FFFF2b1c28587fc42b1c2858, - FFFF2b1c28c07fc42b1c28c0, - FFFF2b1c29287fc42b1c2928, - FFFF2b1c29907fc42b1c2990, - FFFF2b1c29f87fc42b1c29f8, - FFFF2b1c2a607fc42b1c2a60, - FFFF2b1c2ac87fc42b1c2ac8, - FFFF2b1c2b307fc42b1c2b30, - FFFF2b1c2b987fc42b1c2b98, - FFFF2b1c2c007fc42b1c2c00, - FFFF2b1c2c687fc42b1c2c68, - FFFF2b1c2cd07fc42b1c2cd0, - FFFF2b1c2d387fc42b1c2d38, - FFFF2b1c2da07fc42b1c2da0, - FFFF2b1c2e087fc42b1c2e08, - FFFF2b1c2e707fc42b1c2e70, - FFFF2b1c2ed87fc42b1c2ed8, - FFFF2b1c2f407fc42b1c2f40, - FFFF2b1c2fa87fc42b1c2fa8, - FFFF2b1c30107fc42b1c3010, + FFFFb49916007f9eb4991600, + FFFFb49916687f9eb4991668, + FFFFb49916d07f9eb49916d0, + FFFFb49917387f9eb4991738, + FFFFb49917a07f9eb49917a0, + FFFFb49918087f9eb4991808, + FFFFb49918707f9eb4991870, + FFFFb49918d87f9eb49918d8, + FFFFb381f0e07f9eb381f0e0, + FFFFb381f1487f9eb381f148, + FFFFb381f1b07f9eb381f1b0, + FFFFb381f2187f9eb381f218, + FFFFb381f2807f9eb381f280, + FFFFb381f2e87f9eb381f2e8, + FFFFb381f3507f9eb381f350, + FFFFb381f3b87f9eb381f3b8, + FFFFb381f4207f9eb381f420, + FFFFb381f4887f9eb381f488, + FFFFb381f4f07f9eb381f4f0, + FFFFb381f5587f9eb381f558, + FFFFb381f5c07f9eb381f5c0, + FFFFb381f6287f9eb381f628, + FFFFb381f6907f9eb381f690, + FFFFb381f6f87f9eb381f6f8, + FFFFb381f7607f9eb381f760, + FFFFb381f7c87f9eb381f7c8, + FFFFb381f8307f9eb381f830, + FFFFb381f8987f9eb381f898, + FFFFb381f9007f9eb381f900, + FFFFb381f9687f9eb381f968, + FFFFb381f9d07f9eb381f9d0, + FFFFb381fa387f9eb381fa38, + FFFFb381faa07f9eb381faa0, + FFFFb381fb087f9eb381fb08, + FFFFb381fb707f9eb381fb70, + FFFFb381fbd87f9eb381fbd8, + FFFFb381fc407f9eb381fc40, + FFFFb381fca87f9eb381fca8, + FFFFb381fd107f9eb381fd10, + FFFFb381fd787f9eb381fd78, + FFFFb381fde07f9eb381fde0, + FFFFb381fe487f9eb381fe48, + FFFFb381feb07f9eb381feb0, + FFFFb381ff187f9eb381ff18, + FFFFb381ff807f9eb381ff80, + FFFFb381ffe87f9eb381ffe8, + FFFFb38200507f9eb3820050, + FFFFb38200b87f9eb38200b8, + FFFFb38201207f9eb3820120, + FFFFb38201887f9eb3820188, + FFFFb38201f07f9eb38201f0, + FFFFb38202587f9eb3820258, + FFFFb38202c07f9eb38202c0, + FFFFb38203287f9eb3820328, + FFFFb38203907f9eb3820390, + FFFFb38203f87f9eb38203f8, + FFFFb38204607f9eb3820460, + FFFFb38204c87f9eb38204c8, + FFFFb38205307f9eb3820530, + FFFFb38205987f9eb3820598, + FFFFb38206007f9eb3820600, + FFFFb38206687f9eb3820668, + FFFFb38206d07f9eb38206d0, + FFFFb38207387f9eb3820738, + FFFFb38207a07f9eb38207a0, + FFFFb38208087f9eb3820808, + FFFFb38208707f9eb3820870, + FFFFb38208d87f9eb38208d8, + FFFFb38209407f9eb3820940, + FFFFb38209a87f9eb38209a8, + FFFFb3820a107f9eb3820a10, + FFFFb3820a787f9eb3820a78, + FFFFb3820ae07f9eb3820ae0, + FFFFb3820b487f9eb3820b48, + FFFFb3820bb07f9eb3820bb0, + FFFFb3820c187f9eb3820c18, + FFFFb3820c807f9eb3820c80, + FFFFb3820ce87f9eb3820ce8, + FFFFb3820d507f9eb3820d50, + FFFFb3820db87f9eb3820db8, + FFFFb3820e207f9eb3820e20, + FFFFb3820e887f9eb3820e88, + FFFFb3820ef07f9eb3820ef0, + FFFFb3820f587f9eb3820f58, + FFFFb3820fc07f9eb3820fc0, + FFFFb38210287f9eb3821028, + FFFFb38210907f9eb3821090, + FFFFb38210f87f9eb38210f8, + FFFFb38211607f9eb3821160, + FFFFb38211c87f9eb38211c8, + FFFFb38212307f9eb3821230, + FFFFb38212987f9eb3821298, + FFFFb38213007f9eb3821300, + FFFFb38213687f9eb3821368, + FFFFb38213d07f9eb38213d0, + FFFFb38214387f9eb3821438, + FFFFb38214a07f9eb38214a0, + FFFFb38215087f9eb3821508, + FFFFb38215707f9eb3821570, + FFFFb38215d87f9eb38215d8, + FFFFb38216407f9eb3821640, + FFFFb38216a87f9eb38216a8, + FFFFb38217107f9eb3821710, + FFFFb38217787f9eb3821778, + FFFFb38217e07f9eb38217e0, + FFFFb38218487f9eb3821848, + FFFFb38218b07f9eb38218b0, + FFFFb38219187f9eb3821918, + FFFFb38219807f9eb3821980, + FFFFb38219e87f9eb38219e8, + FFFFb3821a507f9eb3821a50, + FFFFb3821ab87f9eb3821ab8, + FFFFb3821b207f9eb3821b20, + FFFFb3821b887f9eb3821b88, + FFFFb3821bf07f9eb3821bf0, + FFFFb3821c587f9eb3821c58, + FFFFb3821cc07f9eb3821cc0, + FFFFb3821d287f9eb3821d28, + FFFFb3821d907f9eb3821d90, + FFFFb3821df87f9eb3821df8, + FFFFb3821e607f9eb3821e60, + FFFFb3821ec87f9eb3821ec8, + FFFFb3821f307f9eb3821f30, + FFFFb3821f987f9eb3821f98, + FFFFb38220007f9eb3822000, + FFFFb38220687f9eb3822068, + FFFFb38220d07f9eb38220d0, + FFFFb38221387f9eb3822138, + FFFFb38221a07f9eb38221a0, + FFFFb38222087f9eb3822208, + FFFFb38222707f9eb3822270, + FFFFb38222d87f9eb38222d8, + FFFFb38223407f9eb3822340, + FFFFb38223a87f9eb38223a8, + FFFFb38224107f9eb3822410, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1988,132 +1988,132 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF42b95b6107fc42b95b610 /* PBXTargetDependency */ = { + FFF4b43213307f9eb4321330 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2b95e5907fc42b95e590 /* PxFoundation */; - targetProxy = FFF52b95e5907fc42b95e590 /* PBXContainerItemProxy */; + target = FFFAb430a8607f9eb430a860 /* PxFoundation */; + targetProxy = FFF5b430a8607f9eb430a860 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxFoundation */ - FFFF2b187d187fc42b187d18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b187d187fc42b187d18 /* src/PsAllocator.cpp */; }; - FFFF2b187d807fc42b187d80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b187d807fc42b187d80 /* src/PsAssert.cpp */; }; - FFFF2b187de87fc42b187de8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b187de87fc42b187de8 /* src/PsFoundation.cpp */; }; - FFFF2b187e507fc42b187e50 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b187e507fc42b187e50 /* src/PsMathUtils.cpp */; }; - FFFF2b187eb87fc42b187eb8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b187eb87fc42b187eb8 /* src/PsString.cpp */; }; - FFFF2b187f207fc42b187f20 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b187f207fc42b187f20 /* src/PsTempAllocator.cpp */; }; - FFFF2b187f887fc42b187f88 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b187f887fc42b187f88 /* src/PsUtilities.cpp */; }; - FFFF2b187ff07fc42b187ff0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b187ff07fc42b187ff0 /* src/unix/PsUnixAtomic.cpp */; }; - FFFF2b1880587fc42b188058 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1880587fc42b188058 /* src/unix/PsUnixCpu.cpp */; }; - FFFF2b1880c07fc42b1880c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1880c07fc42b1880c0 /* src/unix/PsUnixFPU.cpp */; }; - FFFF2b1881287fc42b188128 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1881287fc42b188128 /* src/unix/PsUnixMutex.cpp */; }; - FFFF2b1881907fc42b188190 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1881907fc42b188190 /* src/unix/PsUnixPrintString.cpp */; }; - FFFF2b1881f87fc42b1881f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1881f87fc42b1881f8 /* src/unix/PsUnixSList.cpp */; }; - FFFF2b1882607fc42b188260 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1882607fc42b188260 /* src/unix/PsUnixSocket.cpp */; }; - FFFF2b1882c87fc42b1882c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1882c87fc42b1882c8 /* src/unix/PsUnixSync.cpp */; }; - FFFF2b1883307fc42b188330 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1883307fc42b188330 /* src/unix/PsUnixThread.cpp */; }; - FFFF2b1883987fc42b188398 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1883987fc42b188398 /* src/unix/PsUnixTime.cpp */; }; + FFFFb496cb187f9eb496cb18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496cb187f9eb496cb18 /* src/PsAllocator.cpp */; }; + FFFFb496cb807f9eb496cb80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496cb807f9eb496cb80 /* src/PsAssert.cpp */; }; + FFFFb496cbe87f9eb496cbe8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496cbe87f9eb496cbe8 /* src/PsFoundation.cpp */; }; + FFFFb496cc507f9eb496cc50 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496cc507f9eb496cc50 /* src/PsMathUtils.cpp */; }; + FFFFb496ccb87f9eb496ccb8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496ccb87f9eb496ccb8 /* src/PsString.cpp */; }; + FFFFb496cd207f9eb496cd20 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496cd207f9eb496cd20 /* src/PsTempAllocator.cpp */; }; + FFFFb496cd887f9eb496cd88 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496cd887f9eb496cd88 /* src/PsUtilities.cpp */; }; + FFFFb496cdf07f9eb496cdf0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496cdf07f9eb496cdf0 /* src/unix/PsUnixAtomic.cpp */; }; + FFFFb496ce587f9eb496ce58 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496ce587f9eb496ce58 /* src/unix/PsUnixCpu.cpp */; }; + FFFFb496cec07f9eb496cec0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496cec07f9eb496cec0 /* src/unix/PsUnixFPU.cpp */; }; + FFFFb496cf287f9eb496cf28 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496cf287f9eb496cf28 /* src/unix/PsUnixMutex.cpp */; }; + FFFFb496cf907f9eb496cf90 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496cf907f9eb496cf90 /* src/unix/PsUnixPrintString.cpp */; }; + FFFFb496cff87f9eb496cff8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496cff87f9eb496cff8 /* src/unix/PsUnixSList.cpp */; }; + FFFFb496d0607f9eb496d060 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496d0607f9eb496d060 /* src/unix/PsUnixSocket.cpp */; }; + FFFFb496d0c87f9eb496d0c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496d0c87f9eb496d0c8 /* src/unix/PsUnixSync.cpp */; }; + FFFFb496d1307f9eb496d130 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496d1307f9eb496d130 /* src/unix/PsUnixThread.cpp */; }; + FFFFb496d1987f9eb496d198 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb496d1987f9eb496d198 /* src/unix/PsUnixTime.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2b95e5907fc42b95e590 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2b185e007fc42b185e00 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b185e687fc42b185e68 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b185ed07fc42b185ed0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b185f387fc42b185f38 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b185fa07fc42b185fa0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1860087fc42b186008 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1860707fc42b186070 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1860d87fc42b1860d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1861407fc42b186140 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1861a87fc42b1861a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1862107fc42b186210 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1862787fc42b186278 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1862e07fc42b1862e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1863487fc42b186348 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1863b07fc42b1863b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1864187fc42b186418 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1864807fc42b186480 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1864e87fc42b1864e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1865507fc42b186550 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1865b87fc42b1865b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1866207fc42b186620 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1866887fc42b186688 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1866f07fc42b1866f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1867587fc42b186758 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1867c07fc42b1867c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1868287fc42b186828 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1868907fc42b186890 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1868f87fc42b1868f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1869607fc42b186960 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b186a007fc42b186a00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b186a687fc42b186a68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b186ad07fc42b186ad0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b186b387fc42b186b38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b186ba07fc42b186ba0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b186c087fc42b186c08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b186c707fc42b186c70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b186cd87fc42b186cd8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b186d407fc42b186d40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b186da87fc42b186da8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b186e107fc42b186e10 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b186e787fc42b186e78 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b186ee07fc42b186ee0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b186f487fc42b186f48 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b186fb07fc42b186fb0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1870187fc42b187018 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1870807fc42b187080 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1870e87fc42b1870e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1871507fc42b187150 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1871b87fc42b1871b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1872207fc42b187220 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1872887fc42b187288 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1872f07fc42b1872f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1873587fc42b187358 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1873c07fc42b1873c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1874287fc42b187428 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1874907fc42b187490 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1874f87fc42b1874f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1875607fc42b187560 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1875c87fc42b1875c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1876307fc42b187630 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1876987fc42b187698 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1877007fc42b187700 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1877687fc42b187768 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1877d07fc42b1877d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1878387fc42b187838 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1878a07fc42b1878a0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1879087fc42b187908 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1879707fc42b187970 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1879d87fc42b1879d8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b187a407fc42b187a40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b187aa87fc42b187aa8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b187b107fc42b187b10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b187b787fc42b187b78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b187be07fc42b187be0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b187c487fc42b187c48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b187cb07fc42b187cb0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b187d187fc42b187d18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b187d807fc42b187d80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b187de87fc42b187de8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b187e507fc42b187e50 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b187eb87fc42b187eb8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b187f207fc42b187f20 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b187f887fc42b187f88 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b187ff07fc42b187ff0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1880587fc42b188058 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1880c07fc42b1880c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1881287fc42b188128 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1881907fc42b188190 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1881f87fc42b1881f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1882607fc42b188260 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1882c87fc42b1882c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1883307fc42b188330 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1883987fc42b188398 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb430a8607f9eb430a860 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb496ac007f9eb496ac00 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496ac687f9eb496ac68 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496acd07f9eb496acd0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496ad387f9eb496ad38 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496ada07f9eb496ada0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496ae087f9eb496ae08 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496ae707f9eb496ae70 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496aed87f9eb496aed8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496af407f9eb496af40 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496afa87f9eb496afa8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b0107f9eb496b010 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b0787f9eb496b078 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b0e07f9eb496b0e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b1487f9eb496b148 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b1b07f9eb496b1b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b2187f9eb496b218 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b2807f9eb496b280 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b2e87f9eb496b2e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b3507f9eb496b350 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b3b87f9eb496b3b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b4207f9eb496b420 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b4887f9eb496b488 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b4f07f9eb496b4f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b5587f9eb496b558 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b5c07f9eb496b5c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b6287f9eb496b628 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b6907f9eb496b690 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b6f87f9eb496b6f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b7607f9eb496b760 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b8007f9eb496b800 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b8687f9eb496b868 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b8d07f9eb496b8d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b9387f9eb496b938 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496b9a07f9eb496b9a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496ba087f9eb496ba08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496ba707f9eb496ba70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496bad87f9eb496bad8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496bb407f9eb496bb40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496bba87f9eb496bba8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496bc107f9eb496bc10 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496bc787f9eb496bc78 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496bce07f9eb496bce0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496bd487f9eb496bd48 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496bdb07f9eb496bdb0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496be187f9eb496be18 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496be807f9eb496be80 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496bee87f9eb496bee8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496bf507f9eb496bf50 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496bfb87f9eb496bfb8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c0207f9eb496c020 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c0887f9eb496c088 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c0f07f9eb496c0f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c1587f9eb496c158 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c1c07f9eb496c1c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c2287f9eb496c228 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c2907f9eb496c290 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c2f87f9eb496c2f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c3607f9eb496c360 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c3c87f9eb496c3c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c4307f9eb496c430 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c4987f9eb496c498 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c5007f9eb496c500 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c5687f9eb496c568 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c5d07f9eb496c5d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c6387f9eb496c638 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c6a07f9eb496c6a0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c7087f9eb496c708 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c7707f9eb496c770 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c7d87f9eb496c7d8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c8407f9eb496c840 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c8a87f9eb496c8a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c9107f9eb496c910 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c9787f9eb496c978 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496c9e07f9eb496c9e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496ca487f9eb496ca48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496cab07f9eb496cab0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFDb496cb187f9eb496cb18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496cb807f9eb496cb80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496cbe87f9eb496cbe8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496cc507f9eb496cc50 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496ccb87f9eb496ccb8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496cd207f9eb496cd20 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496cd887f9eb496cd88 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496cdf07f9eb496cdf0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496ce587f9eb496ce58 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496cec07f9eb496cec0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496cf287f9eb496cf28 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496cf907f9eb496cf90 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496cff87f9eb496cff8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496d0607f9eb496d060 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496d0c87f9eb496d0c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496d1307f9eb496d130 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb496d1987f9eb496d198 /* 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 */ - FFF22b95e5907fc42b95e590 /* Resources */ = { + FFF2b430a8607f9eb430a860 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2123,7 +2123,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2b95e5907fc42b95e590 /* Frameworks */ = { + FFFCb430a8607f9eb430a860 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2133,27 +2133,27 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82b95e5907fc42b95e590 /* Sources */ = { + FFF8b430a8607f9eb430a860 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2b187d187fc42b187d18, - FFFF2b187d807fc42b187d80, - FFFF2b187de87fc42b187de8, - FFFF2b187e507fc42b187e50, - FFFF2b187eb87fc42b187eb8, - FFFF2b187f207fc42b187f20, - FFFF2b187f887fc42b187f88, - FFFF2b187ff07fc42b187ff0, - FFFF2b1880587fc42b188058, - FFFF2b1880c07fc42b1880c0, - FFFF2b1881287fc42b188128, - FFFF2b1881907fc42b188190, - FFFF2b1881f87fc42b1881f8, - FFFF2b1882607fc42b188260, - FFFF2b1882c87fc42b1882c8, - FFFF2b1883307fc42b188330, - FFFF2b1883987fc42b188398, + FFFFb496cb187f9eb496cb18, + FFFFb496cb807f9eb496cb80, + FFFFb496cbe87f9eb496cbe8, + FFFFb496cc507f9eb496cc50, + FFFFb496ccb87f9eb496ccb8, + FFFFb496cd207f9eb496cd20, + FFFFb496cd887f9eb496cd88, + FFFFb496cdf07f9eb496cdf0, + FFFFb496ce587f9eb496ce58, + FFFFb496cec07f9eb496cec0, + FFFFb496cf287f9eb496cf28, + FFFFb496cf907f9eb496cf90, + FFFFb496cff87f9eb496cff8, + FFFFb496d0607f9eb496d060, + FFFFb496d0c87f9eb496d0c8, + FFFFb496d1307f9eb496d130, + FFFFb496d1987f9eb496d198, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2165,103 +2165,103 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxPvdSDK */ - FFFF2c011da87fc42c011da8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c011da87fc42c011da8 /* src/PxProfileEventImpl.cpp */; }; - FFFF2c011e107fc42c011e10 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c011e107fc42c011e10 /* src/PxPvd.cpp */; }; - FFFF2c011e787fc42c011e78 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c011e787fc42c011e78 /* src/PxPvdDataStream.cpp */; }; - FFFF2c011ee07fc42c011ee0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c011ee07fc42c011ee0 /* src/PxPvdDefaultFileTransport.cpp */; }; - FFFF2c011f487fc42c011f48 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c011f487fc42c011f48 /* src/PxPvdDefaultSocketTransport.cpp */; }; - FFFF2c011fb07fc42c011fb0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c011fb07fc42c011fb0 /* src/PxPvdImpl.cpp */; }; - FFFF2c0120187fc42c012018 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c0120187fc42c012018 /* src/PxPvdMemClient.cpp */; }; - FFFF2c0120807fc42c012080 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c0120807fc42c012080 /* src/PxPvdObjectModelMetaData.cpp */; }; - FFFF2c0120e87fc42c0120e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c0120e87fc42c0120e8 /* src/PxPvdObjectRegistrar.cpp */; }; - FFFF2c0121507fc42c012150 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c0121507fc42c012150 /* src/PxPvdProfileZoneClient.cpp */; }; - FFFF2c0121b87fc42c0121b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c0121b87fc42c0121b8 /* src/PxPvdUserRenderer.cpp */; }; + FFFFb302f5a87f9eb302f5a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb302f5a87f9eb302f5a8 /* src/PxProfileEventImpl.cpp */; }; + FFFFb302f6107f9eb302f610 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb302f6107f9eb302f610 /* src/PxPvd.cpp */; }; + FFFFb302f6787f9eb302f678 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb302f6787f9eb302f678 /* src/PxPvdDataStream.cpp */; }; + FFFFb302f6e07f9eb302f6e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb302f6e07f9eb302f6e0 /* src/PxPvdDefaultFileTransport.cpp */; }; + FFFFb302f7487f9eb302f748 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb302f7487f9eb302f748 /* src/PxPvdDefaultSocketTransport.cpp */; }; + FFFFb302f7b07f9eb302f7b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb302f7b07f9eb302f7b0 /* src/PxPvdImpl.cpp */; }; + FFFFb302f8187f9eb302f818 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb302f8187f9eb302f818 /* src/PxPvdMemClient.cpp */; }; + FFFFb302f8807f9eb302f880 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb302f8807f9eb302f880 /* src/PxPvdObjectModelMetaData.cpp */; }; + FFFFb302f8e87f9eb302f8e8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb302f8e87f9eb302f8e8 /* src/PxPvdObjectRegistrar.cpp */; }; + FFFFb302f9507f9eb302f950 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb302f9507f9eb302f950 /* src/PxPvdProfileZoneClient.cpp */; }; + FFFFb302f9b87f9eb302f9b8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb302f9b87f9eb302f9b8 /* src/PxPvdUserRenderer.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2b8e87e07fc42b8e87e0 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2b8e8fe07fc42b8e8fe0 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b8e90487fc42b8e9048 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c011a007fc42c011a00 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c011a687fc42c011a68 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c011ad07fc42c011ad0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c011b387fc42c011b38 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c011ba07fc42c011ba0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c011c087fc42c011c08 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c011c707fc42c011c70 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c011cd87fc42c011cd8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c011d407fc42c011d40 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c011da87fc42c011da8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c011e107fc42c011e10 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c011e787fc42c011e78 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c011ee07fc42c011ee0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c011f487fc42c011f48 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c011fb07fc42c011fb0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0120187fc42c012018 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0120807fc42c012080 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0120e87fc42c0120e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0121507fc42c012150 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0121b87fc42c0121b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0122207fc42c012220 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0122887fc42c012288 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0122f07fc42c0122f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0123587fc42c012358 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0123c07fc42c0123c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0124287fc42c012428 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0124907fc42c012490 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0124f87fc42c0124f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0125607fc42c012560 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0125c87fc42c0125c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0126307fc42c012630 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0126987fc42c012698 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0127007fc42c012700 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0127687fc42c012768 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0127d07fc42c0127d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0128387fc42c012838 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0128a07fc42c0128a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0129087fc42c012908 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0129707fc42c012970 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0129d87fc42c0129d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c012a407fc42c012a40 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c012aa87fc42c012aa8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c012b107fc42c012b10 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c012b787fc42c012b78 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c012be07fc42c012be0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c012c487fc42c012c48 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c012cb07fc42c012cb0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c012d187fc42c012d18 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c012d807fc42c012d80 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c012de87fc42c012de8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c012e507fc42c012e50 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c012eb87fc42c012eb8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c012f207fc42c012f20 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c012f887fc42c012f88 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c012ff07fc42c012ff0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0130587fc42c013058 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0130c07fc42c0130c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0131287fc42c013128 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0131907fc42c013190 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0131f87fc42c0131f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0132607fc42c013260 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0132c87fc42c0132c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0133307fc42c013330 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0133987fc42c013398 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0134007fc42c013400 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0134687fc42c013468 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0134d07fc42c0134d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0135387fc42c013538 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0135a07fc42c0135a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0136087fc42c013608 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0136707fc42c013670 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0136d87fc42c0136d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0137407fc42c013740 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0137a87fc42c0137a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0138107fc42c013810 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0138787fc42c013878 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2c116407f9eb2c11640 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb2c0d9507f9eb2c0d950 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFDb2c0d9b87f9eb2c0d9b8 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302f2007f9eb302f200 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302f2687f9eb302f268 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302f2d07f9eb302f2d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302f3387f9eb302f338 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302f3a07f9eb302f3a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302f4087f9eb302f408 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302f4707f9eb302f470 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302f4d87f9eb302f4d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302f5407f9eb302f540 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302f5a87f9eb302f5a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb302f6107f9eb302f610 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb302f6787f9eb302f678 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb302f6e07f9eb302f6e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb302f7487f9eb302f748 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb302f7b07f9eb302f7b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb302f8187f9eb302f818 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb302f8807f9eb302f880 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb302f8e87f9eb302f8e8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb302f9507f9eb302f950 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb302f9b87f9eb302f9b8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb302fa207f9eb302fa20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302fa887f9eb302fa88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302faf07f9eb302faf0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302fb587f9eb302fb58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302fbc07f9eb302fbc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302fc287f9eb302fc28 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302fc907f9eb302fc90 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302fcf87f9eb302fcf8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302fd607f9eb302fd60 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302fdc87f9eb302fdc8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302fe307f9eb302fe30 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302fe987f9eb302fe98 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302ff007f9eb302ff00 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302ff687f9eb302ff68 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFDb302ffd07f9eb302ffd0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30300387f9eb3030038 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30300a07f9eb30300a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30301087f9eb3030108 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30301707f9eb3030170 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30301d87f9eb30301d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30302407f9eb3030240 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30302a87f9eb30302a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30303107f9eb3030310 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30303787f9eb3030378 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30303e07f9eb30303e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30304487f9eb3030448 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30304b07f9eb30304b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30305187f9eb3030518 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30305807f9eb3030580 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30305e87f9eb30305e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30306507f9eb3030650 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30306b87f9eb30306b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30307207f9eb3030720 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30307887f9eb3030788 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30307f07f9eb30307f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30308587f9eb3030858 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30308c07f9eb30308c0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30309287f9eb3030928 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30309907f9eb3030990 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30309f87f9eb30309f8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3030a607f9eb3030a60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3030ac87f9eb3030ac8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3030b307f9eb3030b30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3030b987f9eb3030b98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3030c007f9eb3030c00 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3030c687f9eb3030c68 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3030cd07f9eb3030cd0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3030d387f9eb3030d38 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3030da07f9eb3030da0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3030e087f9eb3030e08 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3030e707f9eb3030e70 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3030ed87f9eb3030ed8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3030f407f9eb3030f40 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3030fa87f9eb3030fa8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30310107f9eb3031010 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb30310787f9eb3031078 /* 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 */ - FFF22b8e87e07fc42b8e87e0 /* Resources */ = { + FFF2b2c116407f9eb2c11640 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2271,7 +2271,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2b8e87e07fc42b8e87e0 /* Frameworks */ = { + FFFCb2c116407f9eb2c11640 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2281,21 +2281,21 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82b8e87e07fc42b8e87e0 /* Sources */ = { + FFF8b2c116407f9eb2c11640 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c011da87fc42c011da8, - FFFF2c011e107fc42c011e10, - FFFF2c011e787fc42c011e78, - FFFF2c011ee07fc42c011ee0, - FFFF2c011f487fc42c011f48, - FFFF2c011fb07fc42c011fb0, - FFFF2c0120187fc42c012018, - FFFF2c0120807fc42c012080, - FFFF2c0120e87fc42c0120e8, - FFFF2c0121507fc42c012150, - FFFF2c0121b87fc42c0121b8, + FFFFb302f5a87f9eb302f5a8, + FFFFb302f6107f9eb302f610, + FFFFb302f6787f9eb302f678, + FFFFb302f6e07f9eb302f6e0, + FFFFb302f7487f9eb302f748, + FFFFb302f7b07f9eb302f7b0, + FFFFb302f8187f9eb302f818, + FFFFb302f8807f9eb302f880, + FFFFb302f8e87f9eb302f8e8, + FFFFb302f9507f9eb302f950, + FFFFb302f9b87f9eb302f9b8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2304,108 +2304,108 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF42b8fa5707fc42b8fa570 /* PBXTargetDependency */ = { + FFF4b2c108007f9eb2c10800 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2b95e5907fc42b95e590 /* PxFoundation */; - targetProxy = FFF52b95e5907fc42b95e590 /* PBXContainerItemProxy */; + target = FFFAb430a8607f9eb430a860 /* PxFoundation */; + targetProxy = FFF5b430a8607f9eb430a860 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevel */ - FFFF2b9114f07fc42b9114f0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD2b9114f07fc42b9114f0 /* px_globals.cpp */; }; - FFFF2b908ce07fc42b908ce0 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2b908ce07fc42b908ce0 /* PxsCCD.cpp */; }; - FFFF2b908d487fc42b908d48 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2b908d487fc42b908d48 /* PxsContactManager.cpp */; }; - FFFF2b908db07fc42b908db0 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2b908db07fc42b908db0 /* PxsContext.cpp */; }; - FFFF2b908e187fc42b908e18 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2b908e187fc42b908e18 /* PxsDefaultMemoryManager.cpp */; }; - FFFF2b908e807fc42b908e80 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2b908e807fc42b908e80 /* PxsIslandSim.cpp */; }; - FFFF2b908ee87fc42b908ee8 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2b908ee87fc42b908ee8 /* PxsMaterialCombiner.cpp */; }; - FFFF2b908f507fc42b908f50 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2b908f507fc42b908f50 /* PxsNphaseImplementationContext.cpp */; }; - FFFF2b908fb87fc42b908fb8 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2b908fb87fc42b908fb8 /* PxsSimpleIslandManager.cpp */; }; - FFFF2b1b8e007fc42b1b8e00 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b1b8e007fc42b1b8e00 /* collision/PxcContact.cpp */; }; - FFFF2b1b8e687fc42b1b8e68 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b1b8e687fc42b1b8e68 /* pipeline/PxcContactCache.cpp */; }; - FFFF2b1b8ed07fc42b1b8ed0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b1b8ed07fc42b1b8ed0 /* pipeline/PxcContactMethodImpl.cpp */; }; - FFFF2b1b8f387fc42b1b8f38 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b1b8f387fc42b1b8f38 /* pipeline/PxcMaterialHeightField.cpp */; }; - FFFF2b1b8fa07fc42b1b8fa0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b1b8fa07fc42b1b8fa0 /* pipeline/PxcMaterialMesh.cpp */; }; - FFFF2b1b90087fc42b1b9008 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b1b90087fc42b1b9008 /* pipeline/PxcMaterialMethodImpl.cpp */; }; - FFFF2b1b90707fc42b1b9070 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b1b90707fc42b1b9070 /* pipeline/PxcMaterialShape.cpp */; }; - FFFF2b1b90d87fc42b1b90d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b1b90d87fc42b1b90d8 /* pipeline/PxcNpBatch.cpp */; }; - FFFF2b1b91407fc42b1b9140 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b1b91407fc42b1b9140 /* pipeline/PxcNpCacheStreamPair.cpp */; }; - FFFF2b1b91a87fc42b1b91a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b1b91a87fc42b1b91a8 /* pipeline/PxcNpContactPrepShared.cpp */; }; - FFFF2b1b92107fc42b1b9210 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b1b92107fc42b1b9210 /* pipeline/PxcNpMemBlockPool.cpp */; }; - FFFF2b1b92787fc42b1b9278 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b1b92787fc42b1b9278 /* pipeline/PxcNpThreadContext.cpp */; }; + FFFFb500ef007f9eb500ef00 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFDb500ef007f9eb500ef00 /* px_globals.cpp */; }; + FFFFb50118807f9eb5011880 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb50118807f9eb5011880 /* PxsCCD.cpp */; }; + FFFFb50118e87f9eb50118e8 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb50118e87f9eb50118e8 /* PxsContactManager.cpp */; }; + FFFFb50119507f9eb5011950 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb50119507f9eb5011950 /* PxsContext.cpp */; }; + FFFFb50119b87f9eb50119b8 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb50119b87f9eb50119b8 /* PxsDefaultMemoryManager.cpp */; }; + FFFFb5011a207f9eb5011a20 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb5011a207f9eb5011a20 /* PxsIslandSim.cpp */; }; + FFFFb5011a887f9eb5011a88 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb5011a887f9eb5011a88 /* PxsMaterialCombiner.cpp */; }; + FFFFb5011af07f9eb5011af0 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb5011af07f9eb5011af0 /* PxsNphaseImplementationContext.cpp */; }; + FFFFb5011b587f9eb5011b58 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFDb5011b587f9eb5011b58 /* PxsSimpleIslandManager.cpp */; }; + FFFFb58088007f9eb5808800 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb58088007f9eb5808800 /* collision/PxcContact.cpp */; }; + FFFFb58088687f9eb5808868 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb58088687f9eb5808868 /* pipeline/PxcContactCache.cpp */; }; + FFFFb58088d07f9eb58088d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb58088d07f9eb58088d0 /* pipeline/PxcContactMethodImpl.cpp */; }; + FFFFb58089387f9eb5808938 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb58089387f9eb5808938 /* pipeline/PxcMaterialHeightField.cpp */; }; + FFFFb58089a07f9eb58089a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb58089a07f9eb58089a0 /* pipeline/PxcMaterialMesh.cpp */; }; + FFFFb5808a087f9eb5808a08 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb5808a087f9eb5808a08 /* pipeline/PxcMaterialMethodImpl.cpp */; }; + FFFFb5808a707f9eb5808a70 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb5808a707f9eb5808a70 /* pipeline/PxcMaterialShape.cpp */; }; + FFFFb5808ad87f9eb5808ad8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb5808ad87f9eb5808ad8 /* pipeline/PxcNpBatch.cpp */; }; + FFFFb5808b407f9eb5808b40 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb5808b407f9eb5808b40 /* pipeline/PxcNpCacheStreamPair.cpp */; }; + FFFFb5808ba87f9eb5808ba8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb5808ba87f9eb5808ba8 /* pipeline/PxcNpContactPrepShared.cpp */; }; + FFFFb5808c107f9eb5808c10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb5808c107f9eb5808c10 /* pipeline/PxcNpMemBlockPool.cpp */; }; + FFFFb5808c787f9eb5808c78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFDb5808c787f9eb5808c78 /* pipeline/PxcNpThreadContext.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2b9141107fc42b914110 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2b9114f07fc42b9114f0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b910bb07fc42b910bb0 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b910c187fc42b910c18 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b910c807fc42b910c80 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b910ce87fc42b910ce8 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b910d507fc42b910d50 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b910db87fc42b910db8 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b910e207fc42b910e20 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b910e887fc42b910e88 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b910ef07fc42b910ef0 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b908ce07fc42b908ce0 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b908d487fc42b908d48 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b908db07fc42b908db0 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b908e187fc42b908e18 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b908e807fc42b908e80 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b908ee87fc42b908ee8 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b908f507fc42b908f50 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b908fb87fc42b908fb8 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae0007fc42b1ae000 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae0687fc42b1ae068 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae0d07fc42b1ae0d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae1387fc42b1ae138 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae1a07fc42b1ae1a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae2087fc42b1ae208 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae2707fc42b1ae270 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae2d87fc42b1ae2d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae3407fc42b1ae340 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae3a87fc42b1ae3a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae4107fc42b1ae410 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae4787fc42b1ae478 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae4e07fc42b1ae4e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae5487fc42b1ae548 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae5b07fc42b1ae5b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae6187fc42b1ae618 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae6807fc42b1ae680 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae6e87fc42b1ae6e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae7507fc42b1ae750 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1ae7b87fc42b1ae7b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b8e007fc42b1b8e00 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b8e687fc42b1b8e68 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b8ed07fc42b1b8ed0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b8f387fc42b1b8f38 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b8fa07fc42b1b8fa0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b90087fc42b1b9008 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b90707fc42b1b9070 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b90d87fc42b1b90d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b91407fc42b1b9140 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b91a87fc42b1b91a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b92107fc42b1b9210 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b92787fc42b1b9278 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b96007fc42b1b9600 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b96687fc42b1b9668 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b96d07fc42b1b96d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b97387fc42b1b9738 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b97a07fc42b1b97a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b98087fc42b1b9808 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b98707fc42b1b9870 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b98d87fc42b1b98d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b99407fc42b1b9940 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b99a87fc42b1b99a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b9a107fc42b1b9a10 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b9a787fc42b1b9a78 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b9ae07fc42b1b9ae0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b9b487fc42b1b9b48 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1b9bb07fc42b1b9bb0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb50092607f9eb5009260 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb500ef007f9eb500ef00 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb50107107f9eb5010710 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb50107787f9eb5010778 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb50107e07f9eb50107e0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDb50108487f9eb5010848 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb50108b07f9eb50108b0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb50109187f9eb5010918 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFDb50109807f9eb5010980 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; + FFFDb50109e87f9eb50109e8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb5010a507f9eb5010a50 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFDb50118807f9eb5011880 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb50118e87f9eb50118e8 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb50119507f9eb5011950 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb50119b87f9eb50119b8 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb5011a207f9eb5011a20 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb5011a887f9eb5011a88 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb5011af07f9eb5011af0 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb5011b587f9eb5011b58 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb5809e007f9eb5809e00 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb5809e687f9eb5809e68 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFDb5809ed07f9eb5809ed0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb5809f387f9eb5809f38 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; + FFFDb5809fa07f9eb5809fa0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb580a0087f9eb580a008 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb580a0707f9eb580a070 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb580a0d87f9eb580a0d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; + FFFDb580a1407f9eb580a140 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb580a1a87f9eb580a1a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb580a2107f9eb580a210 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; + FFFDb580a2787f9eb580a278 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; + FFFDb580a2e07f9eb580a2e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb580a3487f9eb580a348 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb580a3b07f9eb580a3b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDb580a4187f9eb580a418 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb580a4807f9eb580a480 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb580a4e87f9eb580a4e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFDb580a5507f9eb580a550 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb580a5b87f9eb580a5b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58088007f9eb5808800 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb58088687f9eb5808868 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb58088d07f9eb58088d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb58089387f9eb5808938 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb58089a07f9eb58089a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb5808a087f9eb5808a08 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb5808a707f9eb5808a70 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb5808ad87f9eb5808ad8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb5808b407f9eb5808b40 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb5808ba87f9eb5808ba8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb5808c107f9eb5808c10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb5808c787f9eb5808c78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb58090007f9eb5809000 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58090687f9eb5809068 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58090d07f9eb58090d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58091387f9eb5809138 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58091a07f9eb58091a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58092087f9eb5809208 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58092707f9eb5809270 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58092d87f9eb58092d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58093407f9eb5809340 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58093a87f9eb58093a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58094107f9eb5809410 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58094787f9eb5809478 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58094e07f9eb58094e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58095487f9eb5809548 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58095b07f9eb58095b0 /* 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 */ - FFF22b9141107fc42b914110 /* Resources */ = { + FFF2b50092607f9eb5009260 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2415,7 +2415,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2b9141107fc42b914110 /* Frameworks */ = { + FFFCb50092607f9eb5009260 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2425,31 +2425,31 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82b9141107fc42b914110 /* Sources */ = { + FFF8b50092607f9eb5009260 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2b9114f07fc42b9114f0, - FFFF2b908ce07fc42b908ce0, - FFFF2b908d487fc42b908d48, - FFFF2b908db07fc42b908db0, - FFFF2b908e187fc42b908e18, - FFFF2b908e807fc42b908e80, - FFFF2b908ee87fc42b908ee8, - FFFF2b908f507fc42b908f50, - FFFF2b908fb87fc42b908fb8, - FFFF2b1b8e007fc42b1b8e00, - FFFF2b1b8e687fc42b1b8e68, - FFFF2b1b8ed07fc42b1b8ed0, - FFFF2b1b8f387fc42b1b8f38, - FFFF2b1b8fa07fc42b1b8fa0, - FFFF2b1b90087fc42b1b9008, - FFFF2b1b90707fc42b1b9070, - FFFF2b1b90d87fc42b1b90d8, - FFFF2b1b91407fc42b1b9140, - FFFF2b1b91a87fc42b1b91a8, - FFFF2b1b92107fc42b1b9210, - FFFF2b1b92787fc42b1b9278, + FFFFb500ef007f9eb500ef00, + FFFFb50118807f9eb5011880, + FFFFb50118e87f9eb50118e8, + FFFFb50119507f9eb5011950, + FFFFb50119b87f9eb50119b8, + FFFFb5011a207f9eb5011a20, + FFFFb5011a887f9eb5011a88, + FFFFb5011af07f9eb5011af0, + FFFFb5011b587f9eb5011b58, + FFFFb58088007f9eb5808800, + FFFFb58088687f9eb5808868, + FFFFb58088d07f9eb58088d0, + FFFFb58089387f9eb5808938, + FFFFb58089a07f9eb58089a0, + FFFFb5808a087f9eb5808a08, + FFFFb5808a707f9eb5808a70, + FFFFb5808ad87f9eb5808ad8, + FFFFb5808b407f9eb5808b40, + FFFFb5808ba87f9eb5808ba8, + FFFFb5808c107f9eb5808c10, + FFFFb5808c787f9eb5808c78, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2461,38 +2461,38 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelAABB */ - FFFF2c826e707fc42c826e70 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c826e707fc42c826e70 /* BpBroadPhase.cpp */; }; - FFFF2c826ed87fc42c826ed8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c826ed87fc42c826ed8 /* BpBroadPhaseMBP.cpp */; }; - FFFF2c826f407fc42c826f40 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c826f407fc42c826f40 /* BpBroadPhaseSap.cpp */; }; - FFFF2c826fa87fc42c826fa8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c826fa87fc42c826fa8 /* BpBroadPhaseSapAux.cpp */; }; - FFFF2c8270107fc42c827010 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8270107fc42c827010 /* BpMBPTasks.cpp */; }; - FFFF2c8270787fc42c827078 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8270787fc42c827078 /* BpSAPTasks.cpp */; }; - FFFF2c8270e07fc42c8270e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8270e07fc42c8270e0 /* BpSimpleAABBManager.cpp */; }; + FFFFb58124707f9eb5812470 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb58124707f9eb5812470 /* BpBroadPhase.cpp */; }; + FFFFb58124d87f9eb58124d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb58124d87f9eb58124d8 /* BpBroadPhaseMBP.cpp */; }; + FFFFb58125407f9eb5812540 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb58125407f9eb5812540 /* BpBroadPhaseSap.cpp */; }; + FFFFb58125a87f9eb58125a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb58125a87f9eb58125a8 /* BpBroadPhaseSapAux.cpp */; }; + FFFFb58126107f9eb5812610 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb58126107f9eb5812610 /* BpMBPTasks.cpp */; }; + FFFFb58126787f9eb5812678 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb58126787f9eb5812678 /* BpSAPTasks.cpp */; }; + FFFFb58126e07f9eb58126e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb58126e07f9eb58126e0 /* BpSimpleAABBManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2bdf89e07fc42bdf89e0 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2be0af107fc42be0af10 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be0af787fc42be0af78 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be0afe07fc42be0afe0 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be0b0487fc42be0b048 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c826c007fc42c826c00 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c826c687fc42c826c68 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c826cd07fc42c826cd0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c826d387fc42c826d38 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c826da07fc42c826da0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c826e087fc42c826e08 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c826e707fc42c826e70 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c826ed87fc42c826ed8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c826f407fc42c826f40 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c826fa87fc42c826fa8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8270107fc42c827010 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8270787fc42c827078 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8270e07fc42c8270e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb5034e907f9eb5034e90 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb502e1707f9eb502e170 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFDb502e1d87f9eb502e1d8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFDb502e2407f9eb502e240 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFDb502e2a87f9eb502e2a8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58122007f9eb5812200 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58122687f9eb5812268 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58122d07f9eb58122d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58123387f9eb5812338 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58123a07f9eb58123a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58124087f9eb5812408 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58124707f9eb5812470 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb58124d87f9eb58124d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb58125407f9eb5812540 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb58125a87f9eb58125a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb58126107f9eb5812610 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb58126787f9eb5812678 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb58126e07f9eb58126e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF22bdf89e07fc42bdf89e0 /* Resources */ = { + FFF2b5034e907f9eb5034e90 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2502,7 +2502,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2bdf89e07fc42bdf89e0 /* Frameworks */ = { + FFFCb5034e907f9eb5034e90 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2512,17 +2512,17 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82bdf89e07fc42bdf89e0 /* Sources */ = { + FFF8b5034e907f9eb5034e90 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c826e707fc42c826e70, - FFFF2c826ed87fc42c826ed8, - FFFF2c826f407fc42c826f40, - FFFF2c826fa87fc42c826fa8, - FFFF2c8270107fc42c827010, - FFFF2c8270787fc42c827078, - FFFF2c8270e07fc42c8270e0, + FFFFb58124707f9eb5812470, + FFFFb58124d87f9eb58124d8, + FFFFb58125407f9eb5812540, + FFFFb58125a87f9eb58125a8, + FFFFb58126107f9eb5812610, + FFFFb58126787f9eb5812678, + FFFFb58126e07f9eb58126e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2534,105 +2534,105 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelDynamics */ - FFFF2c0194007fc42c019400 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c0194007fc42c019400 /* DyArticulation.cpp */; }; - FFFF2c0194687fc42c019468 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c0194687fc42c019468 /* DyArticulationContactPrep.cpp */; }; - FFFF2c0194d07fc42c0194d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c0194d07fc42c0194d0 /* DyArticulationContactPrepPF.cpp */; }; - FFFF2c0195387fc42c019538 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c0195387fc42c019538 /* DyArticulationHelper.cpp */; }; - FFFF2c0195a07fc42c0195a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c0195a07fc42c0195a0 /* DyArticulationSIMD.cpp */; }; - FFFF2c0196087fc42c019608 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c0196087fc42c019608 /* DyArticulationScalar.cpp */; }; - FFFF2c0196707fc42c019670 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c0196707fc42c019670 /* DyConstraintPartition.cpp */; }; - FFFF2c0196d87fc42c0196d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c0196d87fc42c0196d8 /* DyConstraintSetup.cpp */; }; - FFFF2c0197407fc42c019740 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c0197407fc42c019740 /* DyConstraintSetupBlock.cpp */; }; - FFFF2c0197a87fc42c0197a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c0197a87fc42c0197a8 /* DyContactPrep.cpp */; }; - FFFF2c0198107fc42c019810 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c0198107fc42c019810 /* DyContactPrep4.cpp */; }; - FFFF2c0198787fc42c019878 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c0198787fc42c019878 /* DyContactPrep4PF.cpp */; }; - FFFF2c0198e07fc42c0198e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c0198e07fc42c0198e0 /* DyContactPrepPF.cpp */; }; - FFFF2c0199487fc42c019948 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c0199487fc42c019948 /* DyDynamics.cpp */; }; - FFFF2c0199b07fc42c0199b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c0199b07fc42c0199b0 /* DyFrictionCorrelation.cpp */; }; - FFFF2c019a187fc42c019a18 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c019a187fc42c019a18 /* DyRigidBodyToSolverBody.cpp */; }; - FFFF2c019a807fc42c019a80 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c019a807fc42c019a80 /* DySolverConstraints.cpp */; }; - FFFF2c019ae87fc42c019ae8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c019ae87fc42c019ae8 /* DySolverConstraintsBlock.cpp */; }; - FFFF2c019b507fc42c019b50 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c019b507fc42c019b50 /* DySolverControl.cpp */; }; - FFFF2c019bb87fc42c019bb8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c019bb87fc42c019bb8 /* DySolverControlPF.cpp */; }; - FFFF2c019c207fc42c019c20 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c019c207fc42c019c20 /* DySolverPFConstraints.cpp */; }; - FFFF2c019c887fc42c019c88 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c019c887fc42c019c88 /* DySolverPFConstraintsBlock.cpp */; }; - FFFF2c019cf07fc42c019cf0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c019cf07fc42c019cf0 /* DyThreadContext.cpp */; }; - FFFF2c019d587fc42c019d58 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c019d587fc42c019d58 /* DyThresholdTable.cpp */; }; + FFFFb38314007f9eb3831400 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb38314007f9eb3831400 /* DyArticulation.cpp */; }; + FFFFb38314687f9eb3831468 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb38314687f9eb3831468 /* DyArticulationContactPrep.cpp */; }; + FFFFb38314d07f9eb38314d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb38314d07f9eb38314d0 /* DyArticulationContactPrepPF.cpp */; }; + FFFFb38315387f9eb3831538 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb38315387f9eb3831538 /* DyArticulationHelper.cpp */; }; + FFFFb38315a07f9eb38315a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb38315a07f9eb38315a0 /* DyArticulationSIMD.cpp */; }; + FFFFb38316087f9eb3831608 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb38316087f9eb3831608 /* DyArticulationScalar.cpp */; }; + FFFFb38316707f9eb3831670 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb38316707f9eb3831670 /* DyConstraintPartition.cpp */; }; + FFFFb38316d87f9eb38316d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb38316d87f9eb38316d8 /* DyConstraintSetup.cpp */; }; + FFFFb38317407f9eb3831740 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb38317407f9eb3831740 /* DyConstraintSetupBlock.cpp */; }; + FFFFb38317a87f9eb38317a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb38317a87f9eb38317a8 /* DyContactPrep.cpp */; }; + FFFFb38318107f9eb3831810 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb38318107f9eb3831810 /* DyContactPrep4.cpp */; }; + FFFFb38318787f9eb3831878 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb38318787f9eb3831878 /* DyContactPrep4PF.cpp */; }; + FFFFb38318e07f9eb38318e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb38318e07f9eb38318e0 /* DyContactPrepPF.cpp */; }; + FFFFb38319487f9eb3831948 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb38319487f9eb3831948 /* DyDynamics.cpp */; }; + FFFFb38319b07f9eb38319b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb38319b07f9eb38319b0 /* DyFrictionCorrelation.cpp */; }; + FFFFb3831a187f9eb3831a18 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb3831a187f9eb3831a18 /* DyRigidBodyToSolverBody.cpp */; }; + FFFFb3831a807f9eb3831a80 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb3831a807f9eb3831a80 /* DySolverConstraints.cpp */; }; + FFFFb3831ae87f9eb3831ae8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb3831ae87f9eb3831ae8 /* DySolverConstraintsBlock.cpp */; }; + FFFFb3831b507f9eb3831b50 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb3831b507f9eb3831b50 /* DySolverControl.cpp */; }; + FFFFb3831bb87f9eb3831bb8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb3831bb87f9eb3831bb8 /* DySolverControlPF.cpp */; }; + FFFFb3831c207f9eb3831c20 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb3831c207f9eb3831c20 /* DySolverPFConstraints.cpp */; }; + FFFFb3831c887f9eb3831c88 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb3831c887f9eb3831c88 /* DySolverPFConstraintsBlock.cpp */; }; + FFFFb3831cf07f9eb3831cf0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb3831cf07f9eb3831cf0 /* DyThreadContext.cpp */; }; + FFFFb3831d587f9eb3831d58 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFDb3831d587f9eb3831d58 /* DyThresholdTable.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2b8ca5207fc42b8ca520 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c0194007fc42c019400 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0194687fc42c019468 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0194d07fc42c0194d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0195387fc42c019538 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0195a07fc42c0195a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0196087fc42c019608 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0196707fc42c019670 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0196d87fc42c0196d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0197407fc42c019740 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0197a87fc42c0197a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0198107fc42c019810 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0198787fc42c019878 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0198e07fc42c0198e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0199487fc42c019948 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c0199b07fc42c0199b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c019a187fc42c019a18 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c019a807fc42c019a80 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c019ae87fc42c019ae8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c019b507fc42c019b50 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c019bb87fc42c019bb8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c019c207fc42c019c20 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c019c887fc42c019c88 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c019cf07fc42c019cf0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c019d587fc42c019d58 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b8dc1b07fc42b8dc1b0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b8dc2187fc42b8dc218 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b8dc2807fc42b8dc280 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b8dc2e87fc42b8dc2e8 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b8dc3507fc42b8dc350 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b8dc3b87fc42b8dc3b8 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01a6007fc42c01a600 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01a6687fc42c01a668 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01a6d07fc42c01a6d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01a7387fc42c01a738 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01a7a07fc42c01a7a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01a8087fc42c01a808 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01a8707fc42c01a870 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01a8d87fc42c01a8d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01a9407fc42c01a940 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01a9a87fc42c01a9a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01aa107fc42c01aa10 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01aa787fc42c01aa78 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01aae07fc42c01aae0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01ab487fc42c01ab48 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01abb07fc42c01abb0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01ac187fc42c01ac18 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01ac807fc42c01ac80 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01ace87fc42c01ace8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01ad507fc42c01ad50 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01adb87fc42c01adb8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01ae207fc42c01ae20 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01ae887fc42c01ae88 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01aef07fc42c01aef0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01af587fc42c01af58 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01afc07fc42c01afc0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01b0287fc42c01b028 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01b0907fc42c01b090 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01b0f87fc42c01b0f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01b1607fc42c01b160 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01b1c87fc42c01b1c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01b2307fc42c01b230 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01b2987fc42c01b298 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01b3007fc42c01b300 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01b3687fc42c01b368 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01b3d07fc42c01b3d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01b4387fc42c01b438 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c01b4a07fc42c01b4a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb40739207f9eb4073920 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb38314007f9eb3831400 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38314687f9eb3831468 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38314d07f9eb38314d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38315387f9eb3831538 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38315a07f9eb38315a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38316087f9eb3831608 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38316707f9eb3831670 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38316d87f9eb38316d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38317407f9eb3831740 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38317a87f9eb38317a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38318107f9eb3831810 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38318787f9eb3831878 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38318e07f9eb38318e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38319487f9eb3831948 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb38319b07f9eb38319b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3831a187f9eb3831a18 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3831a807f9eb3831a80 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3831ae87f9eb3831ae8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3831b507f9eb3831b50 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3831bb87f9eb3831bb8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3831c207f9eb3831c20 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3831c887f9eb3831c88 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3831cf07f9eb3831cf0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb3831d587f9eb3831d58 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb407c3e07f9eb407c3e0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb407c4487f9eb407c448 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFDb407c4b07f9eb407c4b0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; + FFFDb407c5187f9eb407c518 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb407c5807f9eb407c580 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; + FFFDb407c5e87f9eb407c5e8 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3832c007f9eb3832c00 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3832c687f9eb3832c68 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3832cd07f9eb3832cd0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3832d387f9eb3832d38 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3832da07f9eb3832da0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3832e087f9eb3832e08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3832e707f9eb3832e70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3832ed87f9eb3832ed8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3832f407f9eb3832f40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3832fa87f9eb3832fa8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38330107f9eb3833010 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38330787f9eb3833078 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38330e07f9eb38330e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38331487f9eb3833148 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38331b07f9eb38331b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38332187f9eb3833218 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38332807f9eb3833280 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38332e87f9eb38332e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38333507f9eb3833350 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38333b87f9eb38333b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38334207f9eb3833420 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38334887f9eb3833488 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38334f07f9eb38334f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38335587f9eb3833558 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38335c07f9eb38335c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38336287f9eb3833628 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38336907f9eb3833690 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38336f87f9eb38336f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38337607f9eb3833760 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38337c87f9eb38337c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38338307f9eb3833830 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38338987f9eb3833898 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38339007f9eb3833900 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38339687f9eb3833968 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb38339d07f9eb38339d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3833a387f9eb3833a38 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; + FFFDb3833aa07f9eb3833aa0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF22b8ca5207fc42b8ca520 /* Resources */ = { + FFF2b40739207f9eb4073920 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2642,7 +2642,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2b8ca5207fc42b8ca520 /* Frameworks */ = { + FFFCb40739207f9eb4073920 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2652,34 +2652,34 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82b8ca5207fc42b8ca520 /* Sources */ = { + FFF8b40739207f9eb4073920 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c0194007fc42c019400, - FFFF2c0194687fc42c019468, - FFFF2c0194d07fc42c0194d0, - FFFF2c0195387fc42c019538, - FFFF2c0195a07fc42c0195a0, - FFFF2c0196087fc42c019608, - FFFF2c0196707fc42c019670, - FFFF2c0196d87fc42c0196d8, - FFFF2c0197407fc42c019740, - FFFF2c0197a87fc42c0197a8, - FFFF2c0198107fc42c019810, - FFFF2c0198787fc42c019878, - FFFF2c0198e07fc42c0198e0, - FFFF2c0199487fc42c019948, - FFFF2c0199b07fc42c0199b0, - FFFF2c019a187fc42c019a18, - FFFF2c019a807fc42c019a80, - FFFF2c019ae87fc42c019ae8, - FFFF2c019b507fc42c019b50, - FFFF2c019bb87fc42c019bb8, - FFFF2c019c207fc42c019c20, - FFFF2c019c887fc42c019c88, - FFFF2c019cf07fc42c019cf0, - FFFF2c019d587fc42c019d58, + FFFFb38314007f9eb3831400, + FFFFb38314687f9eb3831468, + FFFFb38314d07f9eb38314d0, + FFFFb38315387f9eb3831538, + FFFFb38315a07f9eb38315a0, + FFFFb38316087f9eb3831608, + FFFFb38316707f9eb3831670, + FFFFb38316d87f9eb38316d8, + FFFFb38317407f9eb3831740, + FFFFb38317a87f9eb38317a8, + FFFFb38318107f9eb3831810, + FFFFb38318787f9eb3831878, + FFFFb38318e07f9eb38318e0, + FFFFb38319487f9eb3831948, + FFFFb38319b07f9eb38319b0, + FFFFb3831a187f9eb3831a18, + FFFFb3831a807f9eb3831a80, + FFFFb3831ae87f9eb3831ae8, + FFFFb3831b507f9eb3831b50, + FFFFb3831bb87f9eb3831bb8, + FFFFb3831c207f9eb3831c20, + FFFFb3831c887f9eb3831c88, + FFFFb3831cf07f9eb3831cf0, + FFFFb3831d587f9eb3831d58, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2691,73 +2691,73 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelCloth */ - FFFF2b1d1e907fc42b1d1e90 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1d1e907fc42b1d1e90 /* Allocator.cpp */; }; - FFFF2b1d1ef87fc42b1d1ef8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1d1ef87fc42b1d1ef8 /* Factory.cpp */; }; - FFFF2b1d1f607fc42b1d1f60 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1d1f607fc42b1d1f60 /* PhaseConfig.cpp */; }; - FFFF2b1d1fc87fc42b1d1fc8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1d1fc87fc42b1d1fc8 /* SwCloth.cpp */; }; - FFFF2b1d20307fc42b1d2030 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1d20307fc42b1d2030 /* SwClothData.cpp */; }; - FFFF2b1d20987fc42b1d2098 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1d20987fc42b1d2098 /* SwCollision.cpp */; }; - FFFF2b1d21007fc42b1d2100 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1d21007fc42b1d2100 /* SwFabric.cpp */; }; - FFFF2b1d21687fc42b1d2168 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1d21687fc42b1d2168 /* SwFactory.cpp */; }; - FFFF2b1d21d07fc42b1d21d0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1d21d07fc42b1d21d0 /* SwInterCollision.cpp */; }; - FFFF2b1d22387fc42b1d2238 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1d22387fc42b1d2238 /* SwSelfCollision.cpp */; }; - FFFF2b1d22a07fc42b1d22a0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1d22a07fc42b1d22a0 /* SwSolver.cpp */; }; - FFFF2b1d23087fc42b1d2308 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1d23087fc42b1d2308 /* SwSolverKernel.cpp */; }; - FFFF2b1d23707fc42b1d2370 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b1d23707fc42b1d2370 /* TripletScheduler.cpp */; }; + FFFFb499d2907f9eb499d290 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb499d2907f9eb499d290 /* Allocator.cpp */; }; + FFFFb499d2f87f9eb499d2f8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb499d2f87f9eb499d2f8 /* Factory.cpp */; }; + FFFFb499d3607f9eb499d360 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb499d3607f9eb499d360 /* PhaseConfig.cpp */; }; + FFFFb499d3c87f9eb499d3c8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb499d3c87f9eb499d3c8 /* SwCloth.cpp */; }; + FFFFb499d4307f9eb499d430 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb499d4307f9eb499d430 /* SwClothData.cpp */; }; + FFFFb499d4987f9eb499d498 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb499d4987f9eb499d498 /* SwCollision.cpp */; }; + FFFFb499d5007f9eb499d500 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb499d5007f9eb499d500 /* SwFabric.cpp */; }; + FFFFb499d5687f9eb499d568 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb499d5687f9eb499d568 /* SwFactory.cpp */; }; + FFFFb499d5d07f9eb499d5d0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb499d5d07f9eb499d5d0 /* SwInterCollision.cpp */; }; + FFFFb499d6387f9eb499d638 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb499d6387f9eb499d638 /* SwSelfCollision.cpp */; }; + FFFFb499d6a07f9eb499d6a0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb499d6a07f9eb499d6a0 /* SwSolver.cpp */; }; + FFFFb499d7087f9eb499d708 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb499d7087f9eb499d708 /* SwSolverKernel.cpp */; }; + FFFFb499d7707f9eb499d770 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb499d7707f9eb499d770 /* TripletScheduler.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2bf138507fc42bf13850 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2bf00c107fc42bf00c10 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD2bf00c787fc42bf00c78 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD2bf00ce07fc42bf00ce0 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; - FFFD2bf00d487fc42bf00d48 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD2bf00db07fc42bf00db0 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; - FFFD2bf00e187fc42bf00e18 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; - FFFD2bf00e807fc42bf00e80 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d14007fc42b1d1400 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d14687fc42b1d1468 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d14d07fc42b1d14d0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d15387fc42b1d1538 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d15a07fc42b1d15a0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d16087fc42b1d1608 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d16707fc42b1d1670 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d16d87fc42b1d16d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d17407fc42b1d1740 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d17a87fc42b1d17a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d18107fc42b1d1810 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d18787fc42b1d1878 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d18e07fc42b1d18e0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d19487fc42b1d1948 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d19b07fc42b1d19b0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d1a187fc42b1d1a18 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d1a807fc42b1d1a80 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d1ae87fc42b1d1ae8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d1b507fc42b1d1b50 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d1bb87fc42b1d1bb8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d1c207fc42b1d1c20 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d1c887fc42b1d1c88 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d1cf07fc42b1d1cf0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d1d587fc42b1d1d58 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d1dc07fc42b1d1dc0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d1e287fc42b1d1e28 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d1e907fc42b1d1e90 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d1ef87fc42b1d1ef8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d1f607fc42b1d1f60 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d1fc87fc42b1d1fc8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d20307fc42b1d2030 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d20987fc42b1d2098 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d21007fc42b1d2100 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d21687fc42b1d2168 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d21d07fc42b1d21d0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d22387fc42b1d2238 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d22a07fc42b1d22a0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d23087fc42b1d2308 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b1d23707fc42b1d2370 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb43314607f9eb4331460 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb4338aa07f9eb4338aa0 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4338b087f9eb4338b08 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4338b707f9eb4338b70 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4338bd87f9eb4338bd8 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4338c407f9eb4338c40 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4338ca87f9eb4338ca8 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4338d107f9eb4338d10 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499c8007f9eb499c800 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499c8687f9eb499c868 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499c8d07f9eb499c8d0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499c9387f9eb499c938 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499c9a07f9eb499c9a0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499ca087f9eb499ca08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499ca707f9eb499ca70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499cad87f9eb499cad8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499cb407f9eb499cb40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499cba87f9eb499cba8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499cc107f9eb499cc10 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499cc787f9eb499cc78 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499cce07f9eb499cce0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499cd487f9eb499cd48 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499cdb07f9eb499cdb0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499ce187f9eb499ce18 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499ce807f9eb499ce80 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499cee87f9eb499cee8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499cf507f9eb499cf50 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499cfb87f9eb499cfb8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499d0207f9eb499d020 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499d0887f9eb499d088 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499d0f07f9eb499d0f0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499d1587f9eb499d158 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499d1c07f9eb499d1c0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499d2287f9eb499d228 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; + FFFDb499d2907f9eb499d290 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb499d2f87f9eb499d2f8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb499d3607f9eb499d360 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb499d3c87f9eb499d3c8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb499d4307f9eb499d430 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb499d4987f9eb499d498 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb499d5007f9eb499d500 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb499d5687f9eb499d568 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb499d5d07f9eb499d5d0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb499d6387f9eb499d638 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb499d6a07f9eb499d6a0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb499d7087f9eb499d708 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb499d7707f9eb499d770 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF22bf138507fc42bf13850 /* Resources */ = { + FFF2b43314607f9eb4331460 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2767,7 +2767,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2bf138507fc42bf13850 /* Frameworks */ = { + FFFCb43314607f9eb4331460 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2777,23 +2777,23 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82bf138507fc42bf13850 /* Sources */ = { + FFF8b43314607f9eb4331460 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2b1d1e907fc42b1d1e90, - FFFF2b1d1ef87fc42b1d1ef8, - FFFF2b1d1f607fc42b1d1f60, - FFFF2b1d1fc87fc42b1d1fc8, - FFFF2b1d20307fc42b1d2030, - FFFF2b1d20987fc42b1d2098, - FFFF2b1d21007fc42b1d2100, - FFFF2b1d21687fc42b1d2168, - FFFF2b1d21d07fc42b1d21d0, - FFFF2b1d22387fc42b1d2238, - FFFF2b1d22a07fc42b1d22a0, - FFFF2b1d23087fc42b1d2308, - FFFF2b1d23707fc42b1d2370, + FFFFb499d2907f9eb499d290, + FFFFb499d2f87f9eb499d2f8, + FFFFb499d3607f9eb499d360, + FFFFb499d3c87f9eb499d3c8, + FFFFb499d4307f9eb499d430, + FFFFb499d4987f9eb499d498, + FFFFb499d5007f9eb499d500, + FFFFb499d5687f9eb499d568, + FFFFb499d5d07f9eb499d5d0, + FFFFb499d6387f9eb499d638, + FFFFb499d6a07f9eb499d6a0, + FFFFb499d7087f9eb499d708, + FFFFb499d7707f9eb499d770, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2805,79 +2805,79 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelParticles */ - FFFF2d80a9587fc42d80a958 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80a9587fc42d80a958 /* PtBatcher.cpp */; }; - FFFF2d80a9c07fc42d80a9c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80a9c07fc42d80a9c0 /* PtBodyTransformVault.cpp */; }; - FFFF2d80aa287fc42d80aa28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80aa287fc42d80aa28 /* PtCollision.cpp */; }; - FFFF2d80aa907fc42d80aa90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80aa907fc42d80aa90 /* PtCollisionBox.cpp */; }; - FFFF2d80aaf87fc42d80aaf8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80aaf87fc42d80aaf8 /* PtCollisionCapsule.cpp */; }; - FFFF2d80ab607fc42d80ab60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80ab607fc42d80ab60 /* PtCollisionConvex.cpp */; }; - FFFF2d80abc87fc42d80abc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80abc87fc42d80abc8 /* PtCollisionMesh.cpp */; }; - FFFF2d80ac307fc42d80ac30 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80ac307fc42d80ac30 /* PtCollisionPlane.cpp */; }; - FFFF2d80ac987fc42d80ac98 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80ac987fc42d80ac98 /* PtCollisionSphere.cpp */; }; - FFFF2d80ad007fc42d80ad00 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80ad007fc42d80ad00 /* PtContextCpu.cpp */; }; - FFFF2d80ad687fc42d80ad68 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80ad687fc42d80ad68 /* PtDynamics.cpp */; }; - FFFF2d80add07fc42d80add0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80add07fc42d80add0 /* PtParticleData.cpp */; }; - FFFF2d80ae387fc42d80ae38 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80ae387fc42d80ae38 /* PtParticleShapeCpu.cpp */; }; - FFFF2d80aea07fc42d80aea0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80aea07fc42d80aea0 /* PtParticleSystemSimCpu.cpp */; }; - FFFF2d80af087fc42d80af08 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80af087fc42d80af08 /* PtSpatialHash.cpp */; }; - FFFF2d80af707fc42d80af70 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d80af707fc42d80af70 /* PtSpatialLocalHash.cpp */; }; + FFFFb581d9587f9eb581d958 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581d9587f9eb581d958 /* PtBatcher.cpp */; }; + FFFFb581d9c07f9eb581d9c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581d9c07f9eb581d9c0 /* PtBodyTransformVault.cpp */; }; + FFFFb581da287f9eb581da28 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581da287f9eb581da28 /* PtCollision.cpp */; }; + FFFFb581da907f9eb581da90 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581da907f9eb581da90 /* PtCollisionBox.cpp */; }; + FFFFb581daf87f9eb581daf8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581daf87f9eb581daf8 /* PtCollisionCapsule.cpp */; }; + FFFFb581db607f9eb581db60 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581db607f9eb581db60 /* PtCollisionConvex.cpp */; }; + FFFFb581dbc87f9eb581dbc8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581dbc87f9eb581dbc8 /* PtCollisionMesh.cpp */; }; + FFFFb581dc307f9eb581dc30 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581dc307f9eb581dc30 /* PtCollisionPlane.cpp */; }; + FFFFb581dc987f9eb581dc98 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581dc987f9eb581dc98 /* PtCollisionSphere.cpp */; }; + FFFFb581dd007f9eb581dd00 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581dd007f9eb581dd00 /* PtContextCpu.cpp */; }; + FFFFb581dd687f9eb581dd68 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581dd687f9eb581dd68 /* PtDynamics.cpp */; }; + FFFFb581ddd07f9eb581ddd0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581ddd07f9eb581ddd0 /* PtParticleData.cpp */; }; + FFFFb581de387f9eb581de38 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581de387f9eb581de38 /* PtParticleShapeCpu.cpp */; }; + FFFFb581dea07f9eb581dea0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581dea07f9eb581dea0 /* PtParticleSystemSimCpu.cpp */; }; + FFFFb581df087f9eb581df08 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581df087f9eb581df08 /* PtSpatialHash.cpp */; }; + FFFFb581df707f9eb581df70 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb581df707f9eb581df70 /* PtSpatialLocalHash.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2d1093507fc42d109350 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2d8040007fc42d804000 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d8040687fc42d804068 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d8040d07fc42d8040d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d8041387fc42d804138 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d8041a07fc42d8041a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d8042087fc42d804208 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d8042707fc42d804270 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d8042d87fc42d8042d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d8043407fc42d804340 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d8043a87fc42d8043a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a0007fc42d80a000 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a0687fc42d80a068 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a0d07fc42d80a0d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a1387fc42d80a138 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a1a07fc42d80a1a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a2087fc42d80a208 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a2707fc42d80a270 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a2d87fc42d80a2d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a3407fc42d80a340 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a3a87fc42d80a3a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a4107fc42d80a410 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a4787fc42d80a478 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a4e07fc42d80a4e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a5487fc42d80a548 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a5b07fc42d80a5b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a6187fc42d80a618 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a6807fc42d80a680 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a6e87fc42d80a6e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a7507fc42d80a750 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a7b87fc42d80a7b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a8207fc42d80a820 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a8887fc42d80a888 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a8f07fc42d80a8f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a9587fc42d80a958 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d80a9c07fc42d80a9c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d80aa287fc42d80aa28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d80aa907fc42d80aa90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d80aaf87fc42d80aaf8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d80ab607fc42d80ab60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d80abc87fc42d80abc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d80ac307fc42d80ac30 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d80ac987fc42d80ac98 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d80ad007fc42d80ad00 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d80ad687fc42d80ad68 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d80add07fc42d80add0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d80ae387fc42d80ae38 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d80aea07fc42d80aea0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d80af087fc42d80af08 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d80af707fc42d80af70 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb50414c07f9eb50414c0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb58104007f9eb5810400 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58104687f9eb5810468 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58104d07f9eb58104d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58105387f9eb5810538 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58105a07f9eb58105a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58106087f9eb5810608 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58106707f9eb5810670 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58106d87f9eb58106d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58107407f9eb5810740 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFDb58107a87f9eb58107a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d0007f9eb581d000 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d0687f9eb581d068 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d0d07f9eb581d0d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d1387f9eb581d138 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d1a07f9eb581d1a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d2087f9eb581d208 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d2707f9eb581d270 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d2d87f9eb581d2d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d3407f9eb581d340 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d3a87f9eb581d3a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d4107f9eb581d410 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d4787f9eb581d478 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d4e07f9eb581d4e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d5487f9eb581d548 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d5b07f9eb581d5b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d6187f9eb581d618 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d6807f9eb581d680 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d6e87f9eb581d6e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d7507f9eb581d750 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d7b87f9eb581d7b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d8207f9eb581d820 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d8887f9eb581d888 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d8f07f9eb581d8f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; + FFFDb581d9587f9eb581d958 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb581d9c07f9eb581d9c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb581da287f9eb581da28 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb581da907f9eb581da90 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb581daf87f9eb581daf8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb581db607f9eb581db60 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb581dbc87f9eb581dbc8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb581dc307f9eb581dc30 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb581dc987f9eb581dc98 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb581dd007f9eb581dd00 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb581dd687f9eb581dd68 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb581ddd07f9eb581ddd0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb581de387f9eb581de38 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb581dea07f9eb581dea0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb581df087f9eb581df08 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb581df707f9eb581df70 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF22d1093507fc42d109350 /* Resources */ = { + FFF2b50414c07f9eb50414c0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2887,7 +2887,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2d1093507fc42d109350 /* Frameworks */ = { + FFFCb50414c07f9eb50414c0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2897,26 +2897,26 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82d1093507fc42d109350 /* Sources */ = { + FFF8b50414c07f9eb50414c0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2d80a9587fc42d80a958, - FFFF2d80a9c07fc42d80a9c0, - FFFF2d80aa287fc42d80aa28, - FFFF2d80aa907fc42d80aa90, - FFFF2d80aaf87fc42d80aaf8, - FFFF2d80ab607fc42d80ab60, - FFFF2d80abc87fc42d80abc8, - FFFF2d80ac307fc42d80ac30, - FFFF2d80ac987fc42d80ac98, - FFFF2d80ad007fc42d80ad00, - FFFF2d80ad687fc42d80ad68, - FFFF2d80add07fc42d80add0, - FFFF2d80ae387fc42d80ae38, - FFFF2d80aea07fc42d80aea0, - FFFF2d80af087fc42d80af08, - FFFF2d80af707fc42d80af70, + FFFFb581d9587f9eb581d958, + FFFFb581d9c07f9eb581d9c0, + FFFFb581da287f9eb581da28, + FFFFb581da907f9eb581da90, + FFFFb581daf87f9eb581daf8, + FFFFb581db607f9eb581db60, + FFFFb581dbc87f9eb581dbc8, + FFFFb581dc307f9eb581dc30, + FFFFb581dc987f9eb581dc98, + FFFFb581dd007f9eb581dd00, + FFFFb581dd687f9eb581dd68, + FFFFb581ddd07f9eb581ddd0, + FFFFb581de387f9eb581de38, + FFFFb581dea07f9eb581dea0, + FFFFb581df087f9eb581df08, + FFFFb581df707f9eb581df70, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2928,22 +2928,22 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxTask */ - FFFF2b852c607fc42b852c60 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b852c607fc42b852c60 /* src/TaskManager.cpp */; }; + FFFFb50aceb07f9eb50aceb0 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb50aceb07f9eb50aceb0 /* src/TaskManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2b858e007fc42b858e00 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2b8529607fc42b852960 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b8529c87fc42b8529c8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b852a307fc42b852a30 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b852a987fc42b852a98 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b852b007fc42b852b00 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b852b687fc42b852b68 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b852c607fc42b852c60 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb50aea707f9eb50aea70 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb50acc407f9eb50acc40 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDb50acca87f9eb50acca8 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFDb50acd107f9eb50acd10 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; + FFFDb50acd787f9eb50acd78 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; + FFFDb50acde07f9eb50acde0 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; + FFFDb50ace487f9eb50ace48 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; + FFFDb50aceb07f9eb50aceb0 /* 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 */ - FFF22b858e007fc42b858e00 /* Resources */ = { + FFF2b50aea707f9eb50aea70 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2953,7 +2953,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2b858e007fc42b858e00 /* Frameworks */ = { + FFFCb50aea707f9eb50aea70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2963,11 +2963,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82b858e007fc42b858e00 /* Sources */ = { + FFF8b50aea707f9eb50aea70 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2b852c607fc42b852c60, + FFFFb50aceb07f9eb50aceb0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2979,17 +2979,17 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PsFastXml */ - FFFF2be278907fc42be27890 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2be278907fc42be27890 /* PsFastXml.cpp */; }; + FFFFb4359c507f9eb4359c50 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFDb4359c507f9eb4359c50 /* PsFastXml.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2be271907fc42be27190 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2be277707fc42be27770 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; - FFFD2be278907fc42be27890 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; + FFFDb43575307f9eb4357530 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFDb4359b507f9eb4359b50 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; + FFFDb4359c507f9eb4359c50 /* 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 */ - FFF22be271907fc42be27190 /* Resources */ = { + FFF2b43575307f9eb4357530 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2999,7 +2999,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2be271907fc42be27190 /* Frameworks */ = { + FFFCb43575307f9eb4357530 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3009,11 +3009,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82be271907fc42be27190 /* Sources */ = { + FFF8b43575307f9eb4357530 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2be278907fc42be27890, + FFFFb4359c507f9eb4359c50, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3025,1969 +3025,1969 @@ /* End PBXTargetDependency section */ /* Begin PBXContainerItemProxy section */ - FFF52be2bdd07fc42be2bdd0 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b43495107f9eb4349510 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2be2bdd07fc42be2bdd0 /* PhysX */; + remoteGlobalIDString = FFFAb43495107f9eb4349510 /* PhysX */; remoteInfo = "PhysX"; }; - FFF52be302307fc42be30230 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b43604f07f9eb43604f0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2be302307fc42be30230 /* PhysXCharacterKinematic */; + remoteGlobalIDString = FFFAb43604f07f9eb43604f0 /* PhysXCharacterKinematic */; remoteInfo = "PhysXCharacterKinematic"; }; - FFF52be373c07fc42be373c0 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b435d6307f9eb435d630 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2be373c07fc42be373c0 /* PhysXVehicle */; + remoteGlobalIDString = FFFAb435d6307f9eb435d630 /* PhysXVehicle */; remoteInfo = "PhysXVehicle"; }; - FFF52be415207fc42be41520 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b57071d07f9eb57071d0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2be415207fc42be41520 /* PhysXExtensions */; + remoteGlobalIDString = FFFAb57071d07f9eb57071d0 /* PhysXExtensions */; remoteInfo = "PhysXExtensions"; }; - FFF52be53ef07fc42be53ef0 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b5719ba07f9eb5719ba0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2be53ef07fc42be53ef0 /* SceneQuery */; + remoteGlobalIDString = FFFAb5719ba07f9eb5719ba0 /* SceneQuery */; remoteInfo = "SceneQuery"; }; - FFF52be585307fc42be58530 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b571e1e07f9eb571e1e0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2be585307fc42be58530 /* SimulationController */; + remoteGlobalIDString = FFFAb571e1e07f9eb571e1e0 /* SimulationController */; remoteInfo = "SimulationController"; }; - FFF52be5ccd07fc42be5ccd0 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b472b3907f9eb472b390 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2be5ccd07fc42be5ccd0 /* PhysXCooking */; + remoteGlobalIDString = FFFAb472b3907f9eb472b390 /* PhysXCooking */; remoteInfo = "PhysXCooking"; }; - FFF52b949d707fc42b949d70 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b43288707f9eb4328870 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2b949d707fc42b949d70 /* PhysXCommon */; + remoteGlobalIDString = FFFAb43288707f9eb4328870 /* PhysXCommon */; remoteInfo = "PhysXCommon"; }; - FFF52b95e5907fc42b95e590 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b430a8607f9eb430a860 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2b95e5907fc42b95e590 /* PxFoundation */; + remoteGlobalIDString = FFFAb430a8607f9eb430a860 /* PxFoundation */; remoteInfo = "PxFoundation"; }; - FFF52b8e87e07fc42b8e87e0 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b2c116407f9eb2c11640 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2b8e87e07fc42b8e87e0 /* PxPvdSDK */; + remoteGlobalIDString = FFFAb2c116407f9eb2c11640 /* PxPvdSDK */; remoteInfo = "PxPvdSDK"; }; - FFF52b9141107fc42b914110 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b50092607f9eb5009260 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2b9141107fc42b914110 /* LowLevel */; + remoteGlobalIDString = FFFAb50092607f9eb5009260 /* LowLevel */; remoteInfo = "LowLevel"; }; - FFF52bdf89e07fc42bdf89e0 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b5034e907f9eb5034e90 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2bdf89e07fc42bdf89e0 /* LowLevelAABB */; + remoteGlobalIDString = FFFAb5034e907f9eb5034e90 /* LowLevelAABB */; remoteInfo = "LowLevelAABB"; }; - FFF52b8ca5207fc42b8ca520 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b40739207f9eb4073920 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2b8ca5207fc42b8ca520 /* LowLevelDynamics */; + remoteGlobalIDString = FFFAb40739207f9eb4073920 /* LowLevelDynamics */; remoteInfo = "LowLevelDynamics"; }; - FFF52bf138507fc42bf13850 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b43314607f9eb4331460 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2bf138507fc42bf13850 /* LowLevelCloth */; + remoteGlobalIDString = FFFAb43314607f9eb4331460 /* LowLevelCloth */; remoteInfo = "LowLevelCloth"; }; - FFF52d1093507fc42d109350 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b50414c07f9eb50414c0 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2d1093507fc42d109350 /* LowLevelParticles */; + remoteGlobalIDString = FFFAb50414c07f9eb50414c0 /* LowLevelParticles */; remoteInfo = "LowLevelParticles"; }; - FFF52b858e007fc42b858e00 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b50aea707f9eb50aea70 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2b858e007fc42b858e00 /* PxTask */; + remoteGlobalIDString = FFFAb50aea707f9eb50aea70 /* PxTask */; remoteInfo = "PxTask"; }; - FFF52be271907fc42be27190 /* PBXContainerItemProxy */ = { - containerPortal = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + FFF5b43575307f9eb4357530 /* PBXContainerItemProxy */ = { + containerPortal = FFF9b4106fb07f9eb4106fb0 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2be271907fc42be27190 /* PsFastXml */; + remoteGlobalIDString = FFFAb43575307f9eb4357530 /* PsFastXml */; remoteInfo = "PsFastXml"; }; /* End PBXContainerItemProxy section */ /* Begin PBXGroup section */ - FFFB2ac7d2287fc42ac7d228 /* PhysX */ = { + FFFBb41070187f9eb4107018 /* PhysX */ = { isa = PBXGroup; children = ( - FFF02ac7d1c07fc42ac7d1c0 /* Source */, - FFEE2ac7d1c07fc42ac7d1c0 /* Products */, + FFF0b4106fb07f9eb4106fb0 /* Source */, + FFEEb4106fb07f9eb4106fb0 /* Products */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFF02ac7d1c07fc42ac7d1c0 /* Source */ = { + FFF0b4106fb07f9eb4106fb0 /* Source */ = { isa = PBXGroup; children = ( - FFFB2be2bdd07fc42be2bdd0, - FFFB2be302307fc42be30230, - FFFB2be373c07fc42be373c0, - FFFB2be415207fc42be41520, - FFFB2be53ef07fc42be53ef0, - FFFB2be585307fc42be58530, - FFFB2be5ccd07fc42be5ccd0, - FFFB2b949d707fc42b949d70, - FFFB2b95e5907fc42b95e590, - FFFB2b8e87e07fc42b8e87e0, - FFFB2b9141107fc42b914110, - FFFB2bdf89e07fc42bdf89e0, - FFFB2b8ca5207fc42b8ca520, - FFFB2bf138507fc42bf13850, - FFFB2d1093507fc42d109350, - FFFB2b858e007fc42b858e00, - FFFB2be271907fc42be27190, + FFFBb43495107f9eb4349510, + FFFBb43604f07f9eb43604f0, + FFFBb435d6307f9eb435d630, + FFFBb57071d07f9eb57071d0, + FFFBb5719ba07f9eb5719ba0, + FFFBb571e1e07f9eb571e1e0, + FFFBb472b3907f9eb472b390, + FFFBb43288707f9eb4328870, + FFFBb430a8607f9eb430a860, + FFFBb2c116407f9eb2c11640, + FFFBb50092607f9eb5009260, + FFFBb5034e907f9eb5034e90, + FFFBb40739207f9eb4073920, + FFFBb43314607f9eb4331460, + FFFBb50414c07f9eb50414c0, + FFFBb50aea707f9eb50aea70, + FFFBb43575307f9eb4357530, ); name = Source; sourceTree = "<group>"; }; - FFEE2ac7d1c07fc42ac7d1c0 /* Products */ = { + FFEEb4106fb07f9eb4106fb0 /* Products */ = { isa = PBXGroup; children = ( - FFFD2be2bdd07fc42be2bdd0, - FFFD2be302307fc42be30230, - FFFD2be373c07fc42be373c0, - FFFD2be415207fc42be41520, - FFFD2be53ef07fc42be53ef0, - FFFD2be585307fc42be58530, - FFFD2be5ccd07fc42be5ccd0, - FFFD2b949d707fc42b949d70, - FFFD2b95e5907fc42b95e590, - FFFD2b8e87e07fc42b8e87e0, - FFFD2b9141107fc42b914110, - FFFD2bdf89e07fc42bdf89e0, - FFFD2b8ca5207fc42b8ca520, - FFFD2bf138507fc42bf13850, - FFFD2d1093507fc42d109350, - FFFD2b858e007fc42b858e00, - FFFD2be271907fc42be27190, + FFFDb43495107f9eb4349510, + FFFDb43604f07f9eb43604f0, + FFFDb435d6307f9eb435d630, + FFFDb57071d07f9eb57071d0, + FFFDb5719ba07f9eb5719ba0, + FFFDb571e1e07f9eb571e1e0, + FFFDb472b3907f9eb472b390, + FFFDb43288707f9eb4328870, + FFFDb430a8607f9eb430a860, + FFFDb2c116407f9eb2c11640, + FFFDb50092607f9eb5009260, + FFFDb5034e907f9eb5034e90, + FFFDb40739207f9eb4073920, + FFFDb43314607f9eb4331460, + FFFDb50414c07f9eb50414c0, + FFFDb50aea707f9eb50aea70, + FFFDb43575307f9eb4357530, ); name = Products; sourceTree = "<group>"; }; - FFFB2be2bdd07fc42be2bdd0 /* PhysX */ = { + FFFBb43495107f9eb4349510 /* PhysX */ = { isa = PBXGroup; children = ( - FFFB2be381d07fc42be381d0 /* src */, - FFFB2be381f87fc42be381f8 /* include */, - FFFB2be382207fc42be38220 /* metadata */, + FFFBb4363ff07f9eb4363ff0 /* src */, + FFFBb43640187f9eb4364018 /* include */, + FFFBb43640407f9eb4364040 /* metadata */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFFB2be381d07fc42be381d0 /* src */ = { + FFFBb4363ff07f9eb4363ff0 /* src */ = { isa = PBXGroup; children = ( - FFFD2c835a007fc42c835a00 /* NpActor.h */, - FFFD2c835a687fc42c835a68 /* NpActorTemplate.h */, - FFFD2c835ad07fc42c835ad0 /* NpAggregate.h */, - FFFD2c835b387fc42c835b38 /* NpArticulation.h */, - FFFD2c835ba07fc42c835ba0 /* NpArticulationJoint.h */, - FFFD2c835c087fc42c835c08 /* NpArticulationLink.h */, - FFFD2c835c707fc42c835c70 /* NpBatchQuery.h */, - FFFD2c835cd87fc42c835cd8 /* NpCast.h */, - FFFD2c835d407fc42c835d40 /* NpConnector.h */, - FFFD2c835da87fc42c835da8 /* NpConstraint.h */, - FFFD2c835e107fc42c835e10 /* NpFactory.h */, - FFFD2c835e787fc42c835e78 /* NpMaterial.h */, - FFFD2c835ee07fc42c835ee0 /* NpMaterialManager.h */, - FFFD2c835f487fc42c835f48 /* NpPhysics.h */, - FFFD2c835fb07fc42c835fb0 /* NpPhysicsInsertionCallback.h */, - FFFD2c8360187fc42c836018 /* NpPtrTableStorageManager.h */, - FFFD2c8360807fc42c836080 /* NpPvdSceneQueryCollector.h */, - FFFD2c8360e87fc42c8360e8 /* NpQueryShared.h */, - FFFD2c8361507fc42c836150 /* NpReadCheck.h */, - FFFD2c8361b87fc42c8361b8 /* NpRigidActorTemplate.h */, - FFFD2c8362207fc42c836220 /* NpRigidActorTemplateInternal.h */, - FFFD2c8362887fc42c836288 /* NpRigidBodyTemplate.h */, - FFFD2c8362f07fc42c8362f0 /* NpRigidDynamic.h */, - FFFD2c8363587fc42c836358 /* NpRigidStatic.h */, - FFFD2c8363c07fc42c8363c0 /* NpScene.h */, - FFFD2c8364287fc42c836428 /* NpSceneQueries.h */, - FFFD2c8364907fc42c836490 /* NpShape.h */, - FFFD2c8364f87fc42c8364f8 /* NpShapeManager.h */, - FFFD2c8365607fc42c836560 /* NpSpatialIndex.h */, - FFFD2c8365c87fc42c8365c8 /* NpVolumeCache.h */, - FFFD2c8366307fc42c836630 /* NpWriteCheck.h */, - FFFD2c8366987fc42c836698 /* PvdMetaDataBindingData.h */, - FFFD2c8367007fc42c836700 /* PvdMetaDataPvdBinding.h */, - FFFD2c8367687fc42c836768 /* PvdPhysicsClient.h */, - FFFD2c8367d07fc42c8367d0 /* PvdTypeNames.h */, - FFFD2c8368387fc42c836838 /* NpActor.cpp */, - FFFD2c8368a07fc42c8368a0 /* NpAggregate.cpp */, - FFFD2c8369087fc42c836908 /* NpArticulation.cpp */, - FFFD2c8369707fc42c836970 /* NpArticulationJoint.cpp */, - FFFD2c8369d87fc42c8369d8 /* NpArticulationLink.cpp */, - FFFD2c836a407fc42c836a40 /* NpBatchQuery.cpp */, - FFFD2c836aa87fc42c836aa8 /* NpConstraint.cpp */, - FFFD2c836b107fc42c836b10 /* NpFactory.cpp */, - FFFD2c836b787fc42c836b78 /* NpMaterial.cpp */, - FFFD2c836be07fc42c836be0 /* NpMetaData.cpp */, - FFFD2c836c487fc42c836c48 /* NpPhysics.cpp */, - FFFD2c836cb07fc42c836cb0 /* NpPvdSceneQueryCollector.cpp */, - FFFD2c836d187fc42c836d18 /* NpReadCheck.cpp */, - FFFD2c836d807fc42c836d80 /* NpRigidDynamic.cpp */, - FFFD2c836de87fc42c836de8 /* NpRigidStatic.cpp */, - FFFD2c836e507fc42c836e50 /* NpScene.cpp */, - FFFD2c836eb87fc42c836eb8 /* NpSceneQueries.cpp */, - FFFD2c836f207fc42c836f20 /* NpSerializerAdapter.cpp */, - FFFD2c836f887fc42c836f88 /* NpShape.cpp */, - FFFD2c836ff07fc42c836ff0 /* NpShapeManager.cpp */, - FFFD2c8370587fc42c837058 /* NpSpatialIndex.cpp */, - FFFD2c8370c07fc42c8370c0 /* NpVolumeCache.cpp */, - FFFD2c8371287fc42c837128 /* NpWriteCheck.cpp */, - FFFD2c8371907fc42c837190 /* PvdMetaDataPvdBinding.cpp */, - FFFD2c8371f87fc42c8371f8 /* PvdPhysicsClient.cpp */, - FFFD2c8372607fc42c837260 /* particles/NpParticleBaseTemplate.h */, - FFFD2c8372c87fc42c8372c8 /* particles/NpParticleFluid.h */, - FFFD2c8373307fc42c837330 /* particles/NpParticleFluidReadData.h */, - FFFD2c8373987fc42c837398 /* particles/NpParticleSystem.h */, - FFFD2c8374007fc42c837400 /* particles/NpParticleFluid.cpp */, - FFFD2c8374687fc42c837468 /* particles/NpParticleSystem.cpp */, - FFFD2c8374d07fc42c8374d0 /* buffering/ScbActor.h */, - FFFD2c8375387fc42c837538 /* buffering/ScbAggregate.h */, - FFFD2c8375a07fc42c8375a0 /* buffering/ScbArticulation.h */, - FFFD2c8376087fc42c837608 /* buffering/ScbArticulationJoint.h */, - FFFD2c8376707fc42c837670 /* buffering/ScbBase.h */, - FFFD2c8376d87fc42c8376d8 /* buffering/ScbBody.h */, - FFFD2c8377407fc42c837740 /* buffering/ScbCloth.h */, - FFFD2c8377a87fc42c8377a8 /* buffering/ScbConstraint.h */, - FFFD2c8378107fc42c837810 /* buffering/ScbDefs.h */, - FFFD2c8378787fc42c837878 /* buffering/ScbNpDeps.h */, - FFFD2c8378e07fc42c8378e0 /* buffering/ScbParticleSystem.h */, - FFFD2c8379487fc42c837948 /* buffering/ScbRigidObject.h */, - FFFD2c8379b07fc42c8379b0 /* buffering/ScbRigidStatic.h */, - FFFD2c837a187fc42c837a18 /* buffering/ScbScene.h */, - FFFD2c837a807fc42c837a80 /* buffering/ScbSceneBuffer.h */, - FFFD2c837ae87fc42c837ae8 /* buffering/ScbScenePvdClient.h */, - FFFD2c837b507fc42c837b50 /* buffering/ScbShape.h */, - FFFD2c837bb87fc42c837bb8 /* buffering/ScbType.h */, - FFFD2c837c207fc42c837c20 /* buffering/ScbActor.cpp */, - FFFD2c837c887fc42c837c88 /* buffering/ScbAggregate.cpp */, - FFFD2c837cf07fc42c837cf0 /* buffering/ScbBase.cpp */, - FFFD2c837d587fc42c837d58 /* buffering/ScbCloth.cpp */, - FFFD2c837dc07fc42c837dc0 /* buffering/ScbMetaData.cpp */, - FFFD2c837e287fc42c837e28 /* buffering/ScbParticleSystem.cpp */, - FFFD2c837e907fc42c837e90 /* buffering/ScbScene.cpp */, - FFFD2c837ef87fc42c837ef8 /* buffering/ScbScenePvdClient.cpp */, - FFFD2c837f607fc42c837f60 /* buffering/ScbShape.cpp */, - FFFD2c837fc87fc42c837fc8 /* cloth/NpCloth.h */, - FFFD2c8380307fc42c838030 /* cloth/NpClothFabric.h */, - FFFD2c8380987fc42c838098 /* cloth/NpClothParticleData.h */, - FFFD2c8381007fc42c838100 /* cloth/NpCloth.cpp */, - FFFD2c8381687fc42c838168 /* cloth/NpClothFabric.cpp */, - FFFD2c8381d07fc42c8381d0 /* cloth/NpClothParticleData.cpp */, - FFFD2c8382387fc42c838238 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, + FFFDb49acc007f9eb49acc00 /* NpActor.h */, + FFFDb49acc687f9eb49acc68 /* NpActorTemplate.h */, + FFFDb49accd07f9eb49accd0 /* NpAggregate.h */, + FFFDb49acd387f9eb49acd38 /* NpArticulation.h */, + FFFDb49acda07f9eb49acda0 /* NpArticulationJoint.h */, + FFFDb49ace087f9eb49ace08 /* NpArticulationLink.h */, + FFFDb49ace707f9eb49ace70 /* NpBatchQuery.h */, + FFFDb49aced87f9eb49aced8 /* NpCast.h */, + FFFDb49acf407f9eb49acf40 /* NpConnector.h */, + FFFDb49acfa87f9eb49acfa8 /* NpConstraint.h */, + FFFDb49ad0107f9eb49ad010 /* NpFactory.h */, + FFFDb49ad0787f9eb49ad078 /* NpMaterial.h */, + FFFDb49ad0e07f9eb49ad0e0 /* NpMaterialManager.h */, + FFFDb49ad1487f9eb49ad148 /* NpPhysics.h */, + FFFDb49ad1b07f9eb49ad1b0 /* NpPhysicsInsertionCallback.h */, + FFFDb49ad2187f9eb49ad218 /* NpPtrTableStorageManager.h */, + FFFDb49ad2807f9eb49ad280 /* NpPvdSceneQueryCollector.h */, + FFFDb49ad2e87f9eb49ad2e8 /* NpQueryShared.h */, + FFFDb49ad3507f9eb49ad350 /* NpReadCheck.h */, + FFFDb49ad3b87f9eb49ad3b8 /* NpRigidActorTemplate.h */, + FFFDb49ad4207f9eb49ad420 /* NpRigidActorTemplateInternal.h */, + FFFDb49ad4887f9eb49ad488 /* NpRigidBodyTemplate.h */, + FFFDb49ad4f07f9eb49ad4f0 /* NpRigidDynamic.h */, + FFFDb49ad5587f9eb49ad558 /* NpRigidStatic.h */, + FFFDb49ad5c07f9eb49ad5c0 /* NpScene.h */, + FFFDb49ad6287f9eb49ad628 /* NpSceneQueries.h */, + FFFDb49ad6907f9eb49ad690 /* NpShape.h */, + FFFDb49ad6f87f9eb49ad6f8 /* NpShapeManager.h */, + FFFDb49ad7607f9eb49ad760 /* NpSpatialIndex.h */, + FFFDb49ad7c87f9eb49ad7c8 /* NpVolumeCache.h */, + FFFDb49ad8307f9eb49ad830 /* NpWriteCheck.h */, + FFFDb49ad8987f9eb49ad898 /* PvdMetaDataBindingData.h */, + FFFDb49ad9007f9eb49ad900 /* PvdMetaDataPvdBinding.h */, + FFFDb49ad9687f9eb49ad968 /* PvdPhysicsClient.h */, + FFFDb49ad9d07f9eb49ad9d0 /* PvdTypeNames.h */, + FFFDb49ada387f9eb49ada38 /* NpActor.cpp */, + FFFDb49adaa07f9eb49adaa0 /* NpAggregate.cpp */, + FFFDb49adb087f9eb49adb08 /* NpArticulation.cpp */, + FFFDb49adb707f9eb49adb70 /* NpArticulationJoint.cpp */, + FFFDb49adbd87f9eb49adbd8 /* NpArticulationLink.cpp */, + FFFDb49adc407f9eb49adc40 /* NpBatchQuery.cpp */, + FFFDb49adca87f9eb49adca8 /* NpConstraint.cpp */, + FFFDb49add107f9eb49add10 /* NpFactory.cpp */, + FFFDb49add787f9eb49add78 /* NpMaterial.cpp */, + FFFDb49adde07f9eb49adde0 /* NpMetaData.cpp */, + FFFDb49ade487f9eb49ade48 /* NpPhysics.cpp */, + FFFDb49adeb07f9eb49adeb0 /* NpPvdSceneQueryCollector.cpp */, + FFFDb49adf187f9eb49adf18 /* NpReadCheck.cpp */, + FFFDb49adf807f9eb49adf80 /* NpRigidDynamic.cpp */, + FFFDb49adfe87f9eb49adfe8 /* NpRigidStatic.cpp */, + FFFDb49ae0507f9eb49ae050 /* NpScene.cpp */, + FFFDb49ae0b87f9eb49ae0b8 /* NpSceneQueries.cpp */, + FFFDb49ae1207f9eb49ae120 /* NpSerializerAdapter.cpp */, + FFFDb49ae1887f9eb49ae188 /* NpShape.cpp */, + FFFDb49ae1f07f9eb49ae1f0 /* NpShapeManager.cpp */, + FFFDb49ae2587f9eb49ae258 /* NpSpatialIndex.cpp */, + FFFDb49ae2c07f9eb49ae2c0 /* NpVolumeCache.cpp */, + FFFDb49ae3287f9eb49ae328 /* NpWriteCheck.cpp */, + FFFDb49ae3907f9eb49ae390 /* PvdMetaDataPvdBinding.cpp */, + FFFDb49ae3f87f9eb49ae3f8 /* PvdPhysicsClient.cpp */, + FFFDb49ae4607f9eb49ae460 /* particles/NpParticleBaseTemplate.h */, + FFFDb49ae4c87f9eb49ae4c8 /* particles/NpParticleFluid.h */, + FFFDb49ae5307f9eb49ae530 /* particles/NpParticleFluidReadData.h */, + FFFDb49ae5987f9eb49ae598 /* particles/NpParticleSystem.h */, + FFFDb49ae6007f9eb49ae600 /* particles/NpParticleFluid.cpp */, + FFFDb49ae6687f9eb49ae668 /* particles/NpParticleSystem.cpp */, + FFFDb49ae6d07f9eb49ae6d0 /* buffering/ScbActor.h */, + FFFDb49ae7387f9eb49ae738 /* buffering/ScbAggregate.h */, + FFFDb49ae7a07f9eb49ae7a0 /* buffering/ScbArticulation.h */, + FFFDb49ae8087f9eb49ae808 /* buffering/ScbArticulationJoint.h */, + FFFDb49ae8707f9eb49ae870 /* buffering/ScbBase.h */, + FFFDb49ae8d87f9eb49ae8d8 /* buffering/ScbBody.h */, + FFFDb49ae9407f9eb49ae940 /* buffering/ScbCloth.h */, + FFFDb49ae9a87f9eb49ae9a8 /* buffering/ScbConstraint.h */, + FFFDb49aea107f9eb49aea10 /* buffering/ScbDefs.h */, + FFFDb49aea787f9eb49aea78 /* buffering/ScbNpDeps.h */, + FFFDb49aeae07f9eb49aeae0 /* buffering/ScbParticleSystem.h */, + FFFDb49aeb487f9eb49aeb48 /* buffering/ScbRigidObject.h */, + FFFDb49aebb07f9eb49aebb0 /* buffering/ScbRigidStatic.h */, + FFFDb49aec187f9eb49aec18 /* buffering/ScbScene.h */, + FFFDb49aec807f9eb49aec80 /* buffering/ScbSceneBuffer.h */, + FFFDb49aece87f9eb49aece8 /* buffering/ScbScenePvdClient.h */, + FFFDb49aed507f9eb49aed50 /* buffering/ScbShape.h */, + FFFDb49aedb87f9eb49aedb8 /* buffering/ScbType.h */, + FFFDb49aee207f9eb49aee20 /* buffering/ScbActor.cpp */, + FFFDb49aee887f9eb49aee88 /* buffering/ScbAggregate.cpp */, + FFFDb49aeef07f9eb49aeef0 /* buffering/ScbBase.cpp */, + FFFDb49aef587f9eb49aef58 /* buffering/ScbCloth.cpp */, + FFFDb49aefc07f9eb49aefc0 /* buffering/ScbMetaData.cpp */, + FFFDb49af0287f9eb49af028 /* buffering/ScbParticleSystem.cpp */, + FFFDb49af0907f9eb49af090 /* buffering/ScbScene.cpp */, + FFFDb49af0f87f9eb49af0f8 /* buffering/ScbScenePvdClient.cpp */, + FFFDb49af1607f9eb49af160 /* buffering/ScbShape.cpp */, + FFFDb49af1c87f9eb49af1c8 /* cloth/NpCloth.h */, + FFFDb49af2307f9eb49af230 /* cloth/NpClothFabric.h */, + FFFDb49af2987f9eb49af298 /* cloth/NpClothParticleData.h */, + FFFDb49af3007f9eb49af300 /* cloth/NpCloth.cpp */, + FFFDb49af3687f9eb49af368 /* cloth/NpClothFabric.cpp */, + FFFDb49af3d07f9eb49af3d0 /* cloth/NpClothParticleData.cpp */, + FFFDb49af4387f9eb49af438 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2be381f87fc42be381f8 /* include */ = { + FFFBb43640187f9eb4364018 /* include */ = { isa = PBXGroup; children = ( - FFFD2c8384007fc42c838400 /* PxActor.h */, - FFFD2c8384687fc42c838468 /* PxAggregate.h */, - FFFD2c8384d07fc42c8384d0 /* PxArticulation.h */, - FFFD2c8385387fc42c838538 /* PxArticulationJoint.h */, - FFFD2c8385a07fc42c8385a0 /* PxArticulationLink.h */, - FFFD2c8386087fc42c838608 /* PxBatchQuery.h */, - FFFD2c8386707fc42c838670 /* PxBatchQueryDesc.h */, - FFFD2c8386d87fc42c8386d8 /* PxBroadPhase.h */, - FFFD2c8387407fc42c838740 /* PxClient.h */, - FFFD2c8387a87fc42c8387a8 /* PxConstraint.h */, - FFFD2c8388107fc42c838810 /* PxConstraintDesc.h */, - FFFD2c8388787fc42c838878 /* PxContact.h */, - FFFD2c8388e07fc42c8388e0 /* PxContactModifyCallback.h */, - FFFD2c8389487fc42c838948 /* PxDeletionListener.h */, - FFFD2c8389b07fc42c8389b0 /* PxFiltering.h */, - FFFD2c838a187fc42c838a18 /* PxForceMode.h */, - FFFD2c838a807fc42c838a80 /* PxImmediateMode.h */, - FFFD2c838ae87fc42c838ae8 /* PxLockedData.h */, - FFFD2c838b507fc42c838b50 /* PxMaterial.h */, - FFFD2c838bb87fc42c838bb8 /* PxPhysXConfig.h */, - FFFD2c838c207fc42c838c20 /* PxPhysics.h */, - FFFD2c838c887fc42c838c88 /* PxPhysicsAPI.h */, - FFFD2c838cf07fc42c838cf0 /* PxPhysicsSerialization.h */, - FFFD2c838d587fc42c838d58 /* PxPhysicsVersion.h */, - FFFD2c838dc07fc42c838dc0 /* PxPruningStructure.h */, - FFFD2c838e287fc42c838e28 /* PxQueryFiltering.h */, - FFFD2c838e907fc42c838e90 /* PxQueryReport.h */, - FFFD2c838ef87fc42c838ef8 /* PxRigidActor.h */, - FFFD2c838f607fc42c838f60 /* PxRigidBody.h */, - FFFD2c838fc87fc42c838fc8 /* PxRigidDynamic.h */, - FFFD2c8390307fc42c839030 /* PxRigidStatic.h */, - FFFD2c8390987fc42c839098 /* PxScene.h */, - FFFD2c8391007fc42c839100 /* PxSceneDesc.h */, - FFFD2c8391687fc42c839168 /* PxSceneLock.h */, - FFFD2c8391d07fc42c8391d0 /* PxShape.h */, - FFFD2c8392387fc42c839238 /* PxSimulationEventCallback.h */, - FFFD2c8392a07fc42c8392a0 /* PxSimulationStatistics.h */, - FFFD2c8393087fc42c839308 /* PxSpatialIndex.h */, - FFFD2c8393707fc42c839370 /* PxVisualizationParameter.h */, - FFFD2c8393d87fc42c8393d8 /* PxVolumeCache.h */, - FFFD2c8394407fc42c839440 /* particles/PxParticleBase.h */, - FFFD2c8394a87fc42c8394a8 /* particles/PxParticleBaseFlag.h */, - FFFD2c8395107fc42c839510 /* particles/PxParticleCreationData.h */, - FFFD2c8395787fc42c839578 /* particles/PxParticleFlag.h */, - FFFD2c8395e07fc42c8395e0 /* particles/PxParticleFluid.h */, - FFFD2c8396487fc42c839648 /* particles/PxParticleFluidReadData.h */, - FFFD2c8396b07fc42c8396b0 /* particles/PxParticleReadData.h */, - FFFD2c8397187fc42c839718 /* particles/PxParticleSystem.h */, - FFFD2c8397807fc42c839780 /* pvd/PxPvdSceneClient.h */, - FFFD2c8397e87fc42c8397e8 /* cloth/PxCloth.h */, - FFFD2c8398507fc42c839850 /* cloth/PxClothCollisionData.h */, - FFFD2c8398b87fc42c8398b8 /* cloth/PxClothFabric.h */, - FFFD2c8399207fc42c839920 /* cloth/PxClothParticleData.h */, - FFFD2c8399887fc42c839988 /* cloth/PxClothTypes.h */, + FFFDb49af6007f9eb49af600 /* PxActor.h */, + FFFDb49af6687f9eb49af668 /* PxAggregate.h */, + FFFDb49af6d07f9eb49af6d0 /* PxArticulation.h */, + FFFDb49af7387f9eb49af738 /* PxArticulationJoint.h */, + FFFDb49af7a07f9eb49af7a0 /* PxArticulationLink.h */, + FFFDb49af8087f9eb49af808 /* PxBatchQuery.h */, + FFFDb49af8707f9eb49af870 /* PxBatchQueryDesc.h */, + FFFDb49af8d87f9eb49af8d8 /* PxBroadPhase.h */, + FFFDb49af9407f9eb49af940 /* PxClient.h */, + FFFDb49af9a87f9eb49af9a8 /* PxConstraint.h */, + FFFDb49afa107f9eb49afa10 /* PxConstraintDesc.h */, + FFFDb49afa787f9eb49afa78 /* PxContact.h */, + FFFDb49afae07f9eb49afae0 /* PxContactModifyCallback.h */, + FFFDb49afb487f9eb49afb48 /* PxDeletionListener.h */, + FFFDb49afbb07f9eb49afbb0 /* PxFiltering.h */, + FFFDb49afc187f9eb49afc18 /* PxForceMode.h */, + FFFDb49afc807f9eb49afc80 /* PxImmediateMode.h */, + FFFDb49afce87f9eb49afce8 /* PxLockedData.h */, + FFFDb49afd507f9eb49afd50 /* PxMaterial.h */, + FFFDb49afdb87f9eb49afdb8 /* PxPhysXConfig.h */, + FFFDb49afe207f9eb49afe20 /* PxPhysics.h */, + FFFDb49afe887f9eb49afe88 /* PxPhysicsAPI.h */, + FFFDb49afef07f9eb49afef0 /* PxPhysicsSerialization.h */, + FFFDb49aff587f9eb49aff58 /* PxPhysicsVersion.h */, + FFFDb49affc07f9eb49affc0 /* PxPruningStructure.h */, + FFFDb49b00287f9eb49b0028 /* PxQueryFiltering.h */, + FFFDb49b00907f9eb49b0090 /* PxQueryReport.h */, + FFFDb49b00f87f9eb49b00f8 /* PxRigidActor.h */, + FFFDb49b01607f9eb49b0160 /* PxRigidBody.h */, + FFFDb49b01c87f9eb49b01c8 /* PxRigidDynamic.h */, + FFFDb49b02307f9eb49b0230 /* PxRigidStatic.h */, + FFFDb49b02987f9eb49b0298 /* PxScene.h */, + FFFDb49b03007f9eb49b0300 /* PxSceneDesc.h */, + FFFDb49b03687f9eb49b0368 /* PxSceneLock.h */, + FFFDb49b03d07f9eb49b03d0 /* PxShape.h */, + FFFDb49b04387f9eb49b0438 /* PxSimulationEventCallback.h */, + FFFDb49b04a07f9eb49b04a0 /* PxSimulationStatistics.h */, + FFFDb49b05087f9eb49b0508 /* PxSpatialIndex.h */, + FFFDb49b05707f9eb49b0570 /* PxVisualizationParameter.h */, + FFFDb49b05d87f9eb49b05d8 /* PxVolumeCache.h */, + FFFDb49b06407f9eb49b0640 /* particles/PxParticleBase.h */, + FFFDb49b06a87f9eb49b06a8 /* particles/PxParticleBaseFlag.h */, + FFFDb49b07107f9eb49b0710 /* particles/PxParticleCreationData.h */, + FFFDb49b07787f9eb49b0778 /* particles/PxParticleFlag.h */, + FFFDb49b07e07f9eb49b07e0 /* particles/PxParticleFluid.h */, + FFFDb49b08487f9eb49b0848 /* particles/PxParticleFluidReadData.h */, + FFFDb49b08b07f9eb49b08b0 /* particles/PxParticleReadData.h */, + FFFDb49b09187f9eb49b0918 /* particles/PxParticleSystem.h */, + FFFDb49b09807f9eb49b0980 /* pvd/PxPvdSceneClient.h */, + FFFDb49b09e87f9eb49b09e8 /* cloth/PxCloth.h */, + FFFDb49b0a507f9eb49b0a50 /* cloth/PxClothCollisionData.h */, + FFFDb49b0ab87f9eb49b0ab8 /* cloth/PxClothFabric.h */, + FFFDb49b0b207f9eb49b0b20 /* cloth/PxClothParticleData.h */, + FFFDb49b0b887f9eb49b0b88 /* cloth/PxClothTypes.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2be382207fc42be38220 /* metadata */ = { + FFFBb43640407f9eb4364040 /* metadata */ = { isa = PBXGroup; children = ( - FFFD2c839a007fc42c839a00 /* core/include/PvdMetaDataDefineProperties.h */, - FFFD2c839a687fc42c839a68 /* core/include/PvdMetaDataExtensions.h */, - FFFD2c839ad07fc42c839ad0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFD2c839b387fc42c839b38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFD2c839ba07fc42c839ba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFD2c839c087fc42c839c08 /* core/include/PxMetaDataCompare.h */, - FFFD2c839c707fc42c839c70 /* core/include/PxMetaDataCppPrefix.h */, - FFFD2c839cd87fc42c839cd8 /* core/include/PxMetaDataObjects.h */, - FFFD2c839d407fc42c839d40 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFD2c839da87fc42c839da8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, - FFFD2c839e107fc42c839e10 /* core/src/PxMetaDataObjects.cpp */, + FFFDb49a78007f9eb49a7800 /* core/include/PvdMetaDataDefineProperties.h */, + FFFDb49a78687f9eb49a7868 /* core/include/PvdMetaDataExtensions.h */, + FFFDb49a78d07f9eb49a78d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFDb49a79387f9eb49a7938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFDb49a79a07f9eb49a79a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFDb49a7a087f9eb49a7a08 /* core/include/PxMetaDataCompare.h */, + FFFDb49a7a707f9eb49a7a70 /* core/include/PxMetaDataCppPrefix.h */, + FFFDb49a7ad87f9eb49a7ad8 /* core/include/PxMetaDataObjects.h */, + FFFDb49a7b407f9eb49a7b40 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFDb49a7ba87f9eb49a7ba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, + FFFDb49a7c107f9eb49a7c10 /* core/src/PxMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB2be302307fc42be30230 /* PhysXCharacterKinematic */ = { + FFFBb43604f07f9eb43604f0 /* PhysXCharacterKinematic */ = { isa = PBXGroup; children = ( - FFFB2be34f307fc42be34f30 /* include */, - FFFB2be34f587fc42be34f58 /* src */, + FFFBb4361a707f9eb4361a70 /* include */, + FFFBb4361a987f9eb4361a98 /* src */, ); name = "PhysXCharacterKinematic"; sourceTree = "<group>"; }; - FFFB2be34f307fc42be34f30 /* include */ = { + FFFBb4361a707f9eb4361a70 /* include */ = { isa = PBXGroup; children = ( - FFFD2be362007fc42be36200 /* PxBoxController.h */, - FFFD2be362687fc42be36268 /* PxCapsuleController.h */, - FFFD2be362d07fc42be362d0 /* PxCharacter.h */, - FFFD2be363387fc42be36338 /* PxController.h */, - FFFD2be363a07fc42be363a0 /* PxControllerBehavior.h */, - FFFD2be364087fc42be36408 /* PxControllerManager.h */, - FFFD2be364707fc42be36470 /* PxControllerObstacles.h */, - FFFD2be364d87fc42be364d8 /* PxExtended.h */, + FFFDb43633307f9eb4363330 /* PxBoxController.h */, + FFFDb43633987f9eb4363398 /* PxCapsuleController.h */, + FFFDb43634007f9eb4363400 /* PxCharacter.h */, + FFFDb43634687f9eb4363468 /* PxController.h */, + FFFDb43634d07f9eb43634d0 /* PxControllerBehavior.h */, + FFFDb43635387f9eb4363538 /* PxControllerManager.h */, + FFFDb43635a07f9eb43635a0 /* PxControllerObstacles.h */, + FFFDb43636087f9eb4363608 /* PxExtended.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2be34f587fc42be34f58 /* src */ = { + FFFBb4361a987f9eb4361a98 /* src */ = { isa = PBXGroup; children = ( - FFFD2c8338007fc42c833800 /* CctBoxController.h */, - FFFD2c8338687fc42c833868 /* CctCapsuleController.h */, - FFFD2c8338d07fc42c8338d0 /* CctCharacterController.h */, - FFFD2c8339387fc42c833938 /* CctCharacterControllerManager.h */, - FFFD2c8339a07fc42c8339a0 /* CctController.h */, - FFFD2c833a087fc42c833a08 /* CctInternalStructs.h */, - FFFD2c833a707fc42c833a70 /* CctObstacleContext.h */, - FFFD2c833ad87fc42c833ad8 /* CctSweptBox.h */, - FFFD2c833b407fc42c833b40 /* CctSweptCapsule.h */, - FFFD2c833ba87fc42c833ba8 /* CctSweptVolume.h */, - FFFD2c833c107fc42c833c10 /* CctUtils.h */, - FFFD2c833c787fc42c833c78 /* CctBoxController.cpp */, - FFFD2c833ce07fc42c833ce0 /* CctCapsuleController.cpp */, - FFFD2c833d487fc42c833d48 /* CctCharacterController.cpp */, - FFFD2c833db07fc42c833db0 /* CctCharacterControllerCallbacks.cpp */, - FFFD2c833e187fc42c833e18 /* CctCharacterControllerManager.cpp */, - FFFD2c833e807fc42c833e80 /* CctController.cpp */, - FFFD2c833ee87fc42c833ee8 /* CctObstacleContext.cpp */, - FFFD2c833f507fc42c833f50 /* CctSweptBox.cpp */, - FFFD2c833fb87fc42c833fb8 /* CctSweptCapsule.cpp */, - FFFD2c8340207fc42c834020 /* CctSweptVolume.cpp */, + FFFDb49b0c007f9eb49b0c00 /* CctBoxController.h */, + FFFDb49b0c687f9eb49b0c68 /* CctCapsuleController.h */, + FFFDb49b0cd07f9eb49b0cd0 /* CctCharacterController.h */, + FFFDb49b0d387f9eb49b0d38 /* CctCharacterControllerManager.h */, + FFFDb49b0da07f9eb49b0da0 /* CctController.h */, + FFFDb49b0e087f9eb49b0e08 /* CctInternalStructs.h */, + FFFDb49b0e707f9eb49b0e70 /* CctObstacleContext.h */, + FFFDb49b0ed87f9eb49b0ed8 /* CctSweptBox.h */, + FFFDb49b0f407f9eb49b0f40 /* CctSweptCapsule.h */, + FFFDb49b0fa87f9eb49b0fa8 /* CctSweptVolume.h */, + FFFDb49b10107f9eb49b1010 /* CctUtils.h */, + FFFDb49b10787f9eb49b1078 /* CctBoxController.cpp */, + FFFDb49b10e07f9eb49b10e0 /* CctCapsuleController.cpp */, + FFFDb49b11487f9eb49b1148 /* CctCharacterController.cpp */, + FFFDb49b11b07f9eb49b11b0 /* CctCharacterControllerCallbacks.cpp */, + FFFDb49b12187f9eb49b1218 /* CctCharacterControllerManager.cpp */, + FFFDb49b12807f9eb49b1280 /* CctController.cpp */, + FFFDb49b12e87f9eb49b12e8 /* CctObstacleContext.cpp */, + FFFDb49b13507f9eb49b1350 /* CctSweptBox.cpp */, + FFFDb49b13b87f9eb49b13b8 /* CctSweptCapsule.cpp */, + FFFDb49b14207f9eb49b1420 /* CctSweptVolume.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2be373c07fc42be373c0 /* PhysXVehicle */ = { + FFFBb435d6307f9eb435d630 /* PhysXVehicle */ = { isa = PBXGroup; children = ( - FFFB2be425707fc42be42570 /* include */, - FFFB2be425987fc42be42598 /* src */, - FFFB2be425c07fc42be425c0 /* metadata */, + FFFBb57082207f9eb5708220 /* include */, + FFFBb57082487f9eb5708248 /* src */, + FFFBb57082707f9eb5708270 /* metadata */, ); name = "PhysXVehicle"; sourceTree = "<group>"; }; - FFFB2be425707fc42be42570 /* include */ = { + FFFBb57082207f9eb5708220 /* include */ = { isa = PBXGroup; children = ( - FFFD2c83da007fc42c83da00 /* PxVehicleComponents.h */, - FFFD2c83da687fc42c83da68 /* PxVehicleDrive.h */, - FFFD2c83dad07fc42c83dad0 /* PxVehicleDrive4W.h */, - FFFD2c83db387fc42c83db38 /* PxVehicleDriveNW.h */, - FFFD2c83dba07fc42c83dba0 /* PxVehicleDriveTank.h */, - FFFD2c83dc087fc42c83dc08 /* PxVehicleNoDrive.h */, - FFFD2c83dc707fc42c83dc70 /* PxVehicleSDK.h */, - FFFD2c83dcd87fc42c83dcd8 /* PxVehicleShaders.h */, - FFFD2c83dd407fc42c83dd40 /* PxVehicleTireFriction.h */, - FFFD2c83dda87fc42c83dda8 /* PxVehicleUpdate.h */, - FFFD2c83de107fc42c83de10 /* PxVehicleUtil.h */, - FFFD2c83de787fc42c83de78 /* PxVehicleUtilControl.h */, - FFFD2c83dee07fc42c83dee0 /* PxVehicleUtilSetup.h */, - FFFD2c83df487fc42c83df48 /* PxVehicleUtilTelemetry.h */, - FFFD2c83dfb07fc42c83dfb0 /* PxVehicleWheels.h */, + FFFDb49b32007f9eb49b3200 /* PxVehicleComponents.h */, + FFFDb49b32687f9eb49b3268 /* PxVehicleDrive.h */, + FFFDb49b32d07f9eb49b32d0 /* PxVehicleDrive4W.h */, + FFFDb49b33387f9eb49b3338 /* PxVehicleDriveNW.h */, + FFFDb49b33a07f9eb49b33a0 /* PxVehicleDriveTank.h */, + FFFDb49b34087f9eb49b3408 /* PxVehicleNoDrive.h */, + FFFDb49b34707f9eb49b3470 /* PxVehicleSDK.h */, + FFFDb49b34d87f9eb49b34d8 /* PxVehicleShaders.h */, + FFFDb49b35407f9eb49b3540 /* PxVehicleTireFriction.h */, + FFFDb49b35a87f9eb49b35a8 /* PxVehicleUpdate.h */, + FFFDb49b36107f9eb49b3610 /* PxVehicleUtil.h */, + FFFDb49b36787f9eb49b3678 /* PxVehicleUtilControl.h */, + FFFDb49b36e07f9eb49b36e0 /* PxVehicleUtilSetup.h */, + FFFDb49b37487f9eb49b3748 /* PxVehicleUtilTelemetry.h */, + FFFDb49b37b07f9eb49b37b0 /* PxVehicleWheels.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2be425987fc42be42598 /* src */ = { + FFFBb57082487f9eb5708248 /* src */ = { isa = PBXGroup; children = ( - FFFD2c83f8007fc42c83f800 /* PxVehicleDefaults.h */, - FFFD2c83f8687fc42c83f868 /* PxVehicleLinearMath.h */, - FFFD2c83f8d07fc42c83f8d0 /* PxVehicleSerialization.h */, - FFFD2c83f9387fc42c83f938 /* PxVehicleSuspLimitConstraintShader.h */, - FFFD2c83f9a07fc42c83f9a0 /* PxVehicleSuspWheelTire4.h */, - FFFD2c83fa087fc42c83fa08 /* PxVehicleComponents.cpp */, - FFFD2c83fa707fc42c83fa70 /* PxVehicleDrive.cpp */, - FFFD2c83fad87fc42c83fad8 /* PxVehicleDrive4W.cpp */, - FFFD2c83fb407fc42c83fb40 /* PxVehicleDriveNW.cpp */, - FFFD2c83fba87fc42c83fba8 /* PxVehicleDriveTank.cpp */, - FFFD2c83fc107fc42c83fc10 /* PxVehicleMetaData.cpp */, - FFFD2c83fc787fc42c83fc78 /* PxVehicleNoDrive.cpp */, - FFFD2c83fce07fc42c83fce0 /* PxVehicleSDK.cpp */, - FFFD2c83fd487fc42c83fd48 /* PxVehicleSerialization.cpp */, - FFFD2c83fdb07fc42c83fdb0 /* PxVehicleSuspWheelTire4.cpp */, - FFFD2c83fe187fc42c83fe18 /* PxVehicleTireFriction.cpp */, - FFFD2c83fe807fc42c83fe80 /* PxVehicleUpdate.cpp */, - FFFD2c83fee87fc42c83fee8 /* PxVehicleWheels.cpp */, - FFFD2c83ff507fc42c83ff50 /* VehicleUtilControl.cpp */, - FFFD2c83ffb87fc42c83ffb8 /* VehicleUtilSetup.cpp */, - FFFD2c8400207fc42c840020 /* VehicleUtilTelemetry.cpp */, + FFFDb49b50007f9eb49b5000 /* PxVehicleDefaults.h */, + FFFDb49b50687f9eb49b5068 /* PxVehicleLinearMath.h */, + FFFDb49b50d07f9eb49b50d0 /* PxVehicleSerialization.h */, + FFFDb49b51387f9eb49b5138 /* PxVehicleSuspLimitConstraintShader.h */, + FFFDb49b51a07f9eb49b51a0 /* PxVehicleSuspWheelTire4.h */, + FFFDb49b52087f9eb49b5208 /* PxVehicleComponents.cpp */, + FFFDb49b52707f9eb49b5270 /* PxVehicleDrive.cpp */, + FFFDb49b52d87f9eb49b52d8 /* PxVehicleDrive4W.cpp */, + FFFDb49b53407f9eb49b5340 /* PxVehicleDriveNW.cpp */, + FFFDb49b53a87f9eb49b53a8 /* PxVehicleDriveTank.cpp */, + FFFDb49b54107f9eb49b5410 /* PxVehicleMetaData.cpp */, + FFFDb49b54787f9eb49b5478 /* PxVehicleNoDrive.cpp */, + FFFDb49b54e07f9eb49b54e0 /* PxVehicleSDK.cpp */, + FFFDb49b55487f9eb49b5548 /* PxVehicleSerialization.cpp */, + FFFDb49b55b07f9eb49b55b0 /* PxVehicleSuspWheelTire4.cpp */, + FFFDb49b56187f9eb49b5618 /* PxVehicleTireFriction.cpp */, + FFFDb49b56807f9eb49b5680 /* PxVehicleUpdate.cpp */, + FFFDb49b56e87f9eb49b56e8 /* PxVehicleWheels.cpp */, + FFFDb49b57507f9eb49b5750 /* VehicleUtilControl.cpp */, + FFFDb49b57b87f9eb49b57b8 /* VehicleUtilSetup.cpp */, + FFFDb49b58207f9eb49b5820 /* VehicleUtilTelemetry.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2be425c07fc42be425c0 /* metadata */ = { + FFFBb57082707f9eb5708270 /* metadata */ = { isa = PBXGroup; children = ( - FFFD2be432c07fc42be432c0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, - FFFD2be433287fc42be43328 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, - FFFD2be433907fc42be43390 /* include/PxVehicleMetaDataObjects.h */, - FFFD2be433f87fc42be433f8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, - FFFD2be434607fc42be43460 /* src/PxVehicleMetaDataObjects.cpp */, + FFFDb5708f707f9eb5708f70 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, + FFFDb5708fd87f9eb5708fd8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, + FFFDb57090407f9eb5709040 /* include/PxVehicleMetaDataObjects.h */, + FFFDb57090a87f9eb57090a8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, + FFFDb57091107f9eb5709110 /* src/PxVehicleMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB2be415207fc42be41520 /* PhysXExtensions */ = { + FFFBb57071d07f9eb57071d0 /* PhysXExtensions */ = { isa = PBXGroup; children = ( - FFFB2be4a3c07fc42be4a3c0 /* include */, - FFFB2be4a3e87fc42be4a3e8 /* src */, - FFFB2be4a4107fc42be4a410 /* serialization */, - FFFB2be4a4387fc42be4a438 /* metadata */, + FFFBb57100707f9eb5710070 /* include */, + FFFBb57100987f9eb5710098 /* src */, + FFFBb57100c07f9eb57100c0 /* serialization */, + FFFBb57100e87f9eb57100e8 /* metadata */, ); name = "PhysXExtensions"; sourceTree = "<group>"; }; - FFFB2be4a3c07fc42be4a3c0 /* include */ = { + FFFBb57100707f9eb5710070 /* include */ = { isa = PBXGroup; children = ( - FFFD2c8430007fc42c843000 /* PxBinaryConverter.h */, - FFFD2c8430687fc42c843068 /* PxBroadPhaseExt.h */, - FFFD2c8430d07fc42c8430d0 /* PxClothFabricCooker.h */, - FFFD2c8431387fc42c843138 /* PxClothMeshDesc.h */, - FFFD2c8431a07fc42c8431a0 /* PxClothMeshQuadifier.h */, - FFFD2c8432087fc42c843208 /* PxClothTetherCooker.h */, - FFFD2c8432707fc42c843270 /* PxCollectionExt.h */, - FFFD2c8432d87fc42c8432d8 /* PxConstraintExt.h */, - FFFD2c8433407fc42c843340 /* PxConvexMeshExt.h */, - FFFD2c8433a87fc42c8433a8 /* PxD6Joint.h */, - FFFD2c8434107fc42c843410 /* PxDefaultAllocator.h */, - FFFD2c8434787fc42c843478 /* PxDefaultCpuDispatcher.h */, - FFFD2c8434e07fc42c8434e0 /* PxDefaultErrorCallback.h */, - FFFD2c8435487fc42c843548 /* PxDefaultSimulationFilterShader.h */, - FFFD2c8435b07fc42c8435b0 /* PxDefaultStreams.h */, - FFFD2c8436187fc42c843618 /* PxDistanceJoint.h */, - FFFD2c8436807fc42c843680 /* PxExtensionsAPI.h */, - FFFD2c8436e87fc42c8436e8 /* PxFixedJoint.h */, - FFFD2c8437507fc42c843750 /* PxJoint.h */, - FFFD2c8437b87fc42c8437b8 /* PxJointLimit.h */, - FFFD2c8438207fc42c843820 /* PxMassProperties.h */, - FFFD2c8438887fc42c843888 /* PxParticleExt.h */, - FFFD2c8438f07fc42c8438f0 /* PxPrismaticJoint.h */, - FFFD2c8439587fc42c843958 /* PxRaycastCCD.h */, - FFFD2c8439c07fc42c8439c0 /* PxRepXSerializer.h */, - FFFD2c843a287fc42c843a28 /* PxRepXSimpleType.h */, - FFFD2c843a907fc42c843a90 /* PxRevoluteJoint.h */, - FFFD2c843af87fc42c843af8 /* PxRigidActorExt.h */, - FFFD2c843b607fc42c843b60 /* PxRigidBodyExt.h */, - FFFD2c843bc87fc42c843bc8 /* PxSceneQueryExt.h */, - FFFD2c843c307fc42c843c30 /* PxSerialization.h */, - FFFD2c843c987fc42c843c98 /* PxShapeExt.h */, - FFFD2c843d007fc42c843d00 /* PxSimpleFactory.h */, - FFFD2c843d687fc42c843d68 /* PxSmoothNormals.h */, - FFFD2c843dd07fc42c843dd0 /* PxSphericalJoint.h */, - FFFD2c843e387fc42c843e38 /* PxStringTableExt.h */, - FFFD2c843ea07fc42c843ea0 /* PxTriangleMeshExt.h */, + FFFDb49b88007f9eb49b8800 /* PxBinaryConverter.h */, + FFFDb49b88687f9eb49b8868 /* PxBroadPhaseExt.h */, + FFFDb49b88d07f9eb49b88d0 /* PxClothFabricCooker.h */, + FFFDb49b89387f9eb49b8938 /* PxClothMeshDesc.h */, + FFFDb49b89a07f9eb49b89a0 /* PxClothMeshQuadifier.h */, + FFFDb49b8a087f9eb49b8a08 /* PxClothTetherCooker.h */, + FFFDb49b8a707f9eb49b8a70 /* PxCollectionExt.h */, + FFFDb49b8ad87f9eb49b8ad8 /* PxConstraintExt.h */, + FFFDb49b8b407f9eb49b8b40 /* PxConvexMeshExt.h */, + FFFDb49b8ba87f9eb49b8ba8 /* PxD6Joint.h */, + FFFDb49b8c107f9eb49b8c10 /* PxDefaultAllocator.h */, + FFFDb49b8c787f9eb49b8c78 /* PxDefaultCpuDispatcher.h */, + FFFDb49b8ce07f9eb49b8ce0 /* PxDefaultErrorCallback.h */, + FFFDb49b8d487f9eb49b8d48 /* PxDefaultSimulationFilterShader.h */, + FFFDb49b8db07f9eb49b8db0 /* PxDefaultStreams.h */, + FFFDb49b8e187f9eb49b8e18 /* PxDistanceJoint.h */, + FFFDb49b8e807f9eb49b8e80 /* PxExtensionsAPI.h */, + FFFDb49b8ee87f9eb49b8ee8 /* PxFixedJoint.h */, + FFFDb49b8f507f9eb49b8f50 /* PxJoint.h */, + FFFDb49b8fb87f9eb49b8fb8 /* PxJointLimit.h */, + FFFDb49b90207f9eb49b9020 /* PxMassProperties.h */, + FFFDb49b90887f9eb49b9088 /* PxParticleExt.h */, + FFFDb49b90f07f9eb49b90f0 /* PxPrismaticJoint.h */, + FFFDb49b91587f9eb49b9158 /* PxRaycastCCD.h */, + FFFDb49b91c07f9eb49b91c0 /* PxRepXSerializer.h */, + FFFDb49b92287f9eb49b9228 /* PxRepXSimpleType.h */, + FFFDb49b92907f9eb49b9290 /* PxRevoluteJoint.h */, + FFFDb49b92f87f9eb49b92f8 /* PxRigidActorExt.h */, + FFFDb49b93607f9eb49b9360 /* PxRigidBodyExt.h */, + FFFDb49b93c87f9eb49b93c8 /* PxSceneQueryExt.h */, + FFFDb49b94307f9eb49b9430 /* PxSerialization.h */, + FFFDb49b94987f9eb49b9498 /* PxShapeExt.h */, + FFFDb49b95007f9eb49b9500 /* PxSimpleFactory.h */, + FFFDb49b95687f9eb49b9568 /* PxSmoothNormals.h */, + FFFDb49b95d07f9eb49b95d0 /* PxSphericalJoint.h */, + FFFDb49b96387f9eb49b9638 /* PxStringTableExt.h */, + FFFDb49b96a07f9eb49b96a0 /* PxTriangleMeshExt.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2be4a3e87fc42be4a3e8 /* src */ = { + FFFBb57100987f9eb5710098 /* src */ = { isa = PBXGroup; children = ( - FFFD2c841a007fc42c841a00 /* ExtConstraintHelper.h */, - FFFD2c841a687fc42c841a68 /* ExtCpuWorkerThread.h */, - FFFD2c841ad07fc42c841ad0 /* ExtD6Joint.h */, - FFFD2c841b387fc42c841b38 /* ExtDefaultCpuDispatcher.h */, - FFFD2c841ba07fc42c841ba0 /* ExtDistanceJoint.h */, - FFFD2c841c087fc42c841c08 /* ExtFixedJoint.h */, - FFFD2c841c707fc42c841c70 /* ExtInertiaTensor.h */, - FFFD2c841cd87fc42c841cd8 /* ExtJoint.h */, - FFFD2c841d407fc42c841d40 /* ExtJointMetaDataExtensions.h */, - FFFD2c841da87fc42c841da8 /* ExtPlatform.h */, - FFFD2c841e107fc42c841e10 /* ExtPrismaticJoint.h */, - FFFD2c841e787fc42c841e78 /* ExtPvd.h */, - FFFD2c841ee07fc42c841ee0 /* ExtRevoluteJoint.h */, - FFFD2c841f487fc42c841f48 /* ExtSerialization.h */, - FFFD2c841fb07fc42c841fb0 /* ExtSharedQueueEntryPool.h */, - FFFD2c8420187fc42c842018 /* ExtSphericalJoint.h */, - FFFD2c8420807fc42c842080 /* ExtTaskQueueHelper.h */, - FFFD2c8420e87fc42c8420e8 /* ExtBroadPhase.cpp */, - FFFD2c8421507fc42c842150 /* ExtClothFabricCooker.cpp */, - FFFD2c8421b87fc42c8421b8 /* ExtClothGeodesicTetherCooker.cpp */, - FFFD2c8422207fc42c842220 /* ExtClothMeshQuadifier.cpp */, - FFFD2c8422887fc42c842288 /* ExtClothSimpleTetherCooker.cpp */, - FFFD2c8422f07fc42c8422f0 /* ExtCollection.cpp */, - FFFD2c8423587fc42c842358 /* ExtConvexMeshExt.cpp */, - FFFD2c8423c07fc42c8423c0 /* ExtCpuWorkerThread.cpp */, - FFFD2c8424287fc42c842428 /* ExtD6Joint.cpp */, - FFFD2c8424907fc42c842490 /* ExtD6JointSolverPrep.cpp */, - FFFD2c8424f87fc42c8424f8 /* ExtDefaultCpuDispatcher.cpp */, - FFFD2c8425607fc42c842560 /* ExtDefaultErrorCallback.cpp */, - FFFD2c8425c87fc42c8425c8 /* ExtDefaultSimulationFilterShader.cpp */, - FFFD2c8426307fc42c842630 /* ExtDefaultStreams.cpp */, - FFFD2c8426987fc42c842698 /* ExtDistanceJoint.cpp */, - FFFD2c8427007fc42c842700 /* ExtDistanceJointSolverPrep.cpp */, - FFFD2c8427687fc42c842768 /* ExtExtensions.cpp */, - FFFD2c8427d07fc42c8427d0 /* ExtFixedJoint.cpp */, - FFFD2c8428387fc42c842838 /* ExtFixedJointSolverPrep.cpp */, - FFFD2c8428a07fc42c8428a0 /* ExtJoint.cpp */, - FFFD2c8429087fc42c842908 /* ExtMetaData.cpp */, - FFFD2c8429707fc42c842970 /* ExtParticleExt.cpp */, - FFFD2c8429d87fc42c8429d8 /* ExtPrismaticJoint.cpp */, - FFFD2c842a407fc42c842a40 /* ExtPrismaticJointSolverPrep.cpp */, - FFFD2c842aa87fc42c842aa8 /* ExtPvd.cpp */, - FFFD2c842b107fc42c842b10 /* ExtPxStringTable.cpp */, - FFFD2c842b787fc42c842b78 /* ExtRaycastCCD.cpp */, - FFFD2c842be07fc42c842be0 /* ExtRevoluteJoint.cpp */, - FFFD2c842c487fc42c842c48 /* ExtRevoluteJointSolverPrep.cpp */, - FFFD2c842cb07fc42c842cb0 /* ExtRigidBodyExt.cpp */, - FFFD2c842d187fc42c842d18 /* ExtSceneQueryExt.cpp */, - FFFD2c842d807fc42c842d80 /* ExtSimpleFactory.cpp */, - FFFD2c842de87fc42c842de8 /* ExtSmoothNormals.cpp */, - FFFD2c842e507fc42c842e50 /* ExtSphericalJoint.cpp */, - FFFD2c842eb87fc42c842eb8 /* ExtSphericalJointSolverPrep.cpp */, - FFFD2c842f207fc42c842f20 /* ExtTriangleMeshExt.cpp */, + FFFDb49b72007f9eb49b7200 /* ExtConstraintHelper.h */, + FFFDb49b72687f9eb49b7268 /* ExtCpuWorkerThread.h */, + FFFDb49b72d07f9eb49b72d0 /* ExtD6Joint.h */, + FFFDb49b73387f9eb49b7338 /* ExtDefaultCpuDispatcher.h */, + FFFDb49b73a07f9eb49b73a0 /* ExtDistanceJoint.h */, + FFFDb49b74087f9eb49b7408 /* ExtFixedJoint.h */, + FFFDb49b74707f9eb49b7470 /* ExtInertiaTensor.h */, + FFFDb49b74d87f9eb49b74d8 /* ExtJoint.h */, + FFFDb49b75407f9eb49b7540 /* ExtJointMetaDataExtensions.h */, + FFFDb49b75a87f9eb49b75a8 /* ExtPlatform.h */, + FFFDb49b76107f9eb49b7610 /* ExtPrismaticJoint.h */, + FFFDb49b76787f9eb49b7678 /* ExtPvd.h */, + FFFDb49b76e07f9eb49b76e0 /* ExtRevoluteJoint.h */, + FFFDb49b77487f9eb49b7748 /* ExtSerialization.h */, + FFFDb49b77b07f9eb49b77b0 /* ExtSharedQueueEntryPool.h */, + FFFDb49b78187f9eb49b7818 /* ExtSphericalJoint.h */, + FFFDb49b78807f9eb49b7880 /* ExtTaskQueueHelper.h */, + FFFDb49b78e87f9eb49b78e8 /* ExtBroadPhase.cpp */, + FFFDb49b79507f9eb49b7950 /* ExtClothFabricCooker.cpp */, + FFFDb49b79b87f9eb49b79b8 /* ExtClothGeodesicTetherCooker.cpp */, + FFFDb49b7a207f9eb49b7a20 /* ExtClothMeshQuadifier.cpp */, + FFFDb49b7a887f9eb49b7a88 /* ExtClothSimpleTetherCooker.cpp */, + FFFDb49b7af07f9eb49b7af0 /* ExtCollection.cpp */, + FFFDb49b7b587f9eb49b7b58 /* ExtConvexMeshExt.cpp */, + FFFDb49b7bc07f9eb49b7bc0 /* ExtCpuWorkerThread.cpp */, + FFFDb49b7c287f9eb49b7c28 /* ExtD6Joint.cpp */, + FFFDb49b7c907f9eb49b7c90 /* ExtD6JointSolverPrep.cpp */, + FFFDb49b7cf87f9eb49b7cf8 /* ExtDefaultCpuDispatcher.cpp */, + FFFDb49b7d607f9eb49b7d60 /* ExtDefaultErrorCallback.cpp */, + FFFDb49b7dc87f9eb49b7dc8 /* ExtDefaultSimulationFilterShader.cpp */, + FFFDb49b7e307f9eb49b7e30 /* ExtDefaultStreams.cpp */, + FFFDb49b7e987f9eb49b7e98 /* ExtDistanceJoint.cpp */, + FFFDb49b7f007f9eb49b7f00 /* ExtDistanceJointSolverPrep.cpp */, + FFFDb49b7f687f9eb49b7f68 /* ExtExtensions.cpp */, + FFFDb49b7fd07f9eb49b7fd0 /* ExtFixedJoint.cpp */, + FFFDb49b80387f9eb49b8038 /* ExtFixedJointSolverPrep.cpp */, + FFFDb49b80a07f9eb49b80a0 /* ExtJoint.cpp */, + FFFDb49b81087f9eb49b8108 /* ExtMetaData.cpp */, + FFFDb49b81707f9eb49b8170 /* ExtParticleExt.cpp */, + FFFDb49b81d87f9eb49b81d8 /* ExtPrismaticJoint.cpp */, + FFFDb49b82407f9eb49b8240 /* ExtPrismaticJointSolverPrep.cpp */, + FFFDb49b82a87f9eb49b82a8 /* ExtPvd.cpp */, + FFFDb49b83107f9eb49b8310 /* ExtPxStringTable.cpp */, + FFFDb49b83787f9eb49b8378 /* ExtRaycastCCD.cpp */, + FFFDb49b83e07f9eb49b83e0 /* ExtRevoluteJoint.cpp */, + FFFDb49b84487f9eb49b8448 /* ExtRevoluteJointSolverPrep.cpp */, + FFFDb49b84b07f9eb49b84b0 /* ExtRigidBodyExt.cpp */, + FFFDb49b85187f9eb49b8518 /* ExtSceneQueryExt.cpp */, + FFFDb49b85807f9eb49b8580 /* ExtSimpleFactory.cpp */, + FFFDb49b85e87f9eb49b85e8 /* ExtSmoothNormals.cpp */, + FFFDb49b86507f9eb49b8650 /* ExtSphericalJoint.cpp */, + FFFDb49b86b87f9eb49b86b8 /* ExtSphericalJointSolverPrep.cpp */, + FFFDb49b87207f9eb49b8720 /* ExtTriangleMeshExt.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2be4a4107fc42be4a410 /* serialization */ = { + FFFBb57100c07f9eb57100c0 /* serialization */ = { isa = PBXGroup; children = ( - FFFD2c8464007fc42c846400 /* SnSerialUtils.h */, - FFFD2c8464687fc42c846468 /* SnSerializationRegistry.h */, - FFFD2c8464d07fc42c8464d0 /* SnSerialUtils.cpp */, - FFFD2c8465387fc42c846538 /* SnSerialization.cpp */, - FFFD2c8465a07fc42c8465a0 /* SnSerializationRegistry.cpp */, - FFFD2c8466087fc42c846608 /* Binary/SnConvX.h */, - FFFD2c8466707fc42c846670 /* Binary/SnConvX_Align.h */, - FFFD2c8466d87fc42c8466d8 /* Binary/SnConvX_Common.h */, - FFFD2c8467407fc42c846740 /* Binary/SnConvX_MetaData.h */, - FFFD2c8467a87fc42c8467a8 /* Binary/SnConvX_Output.h */, - FFFD2c8468107fc42c846810 /* Binary/SnConvX_Union.h */, - FFFD2c8468787fc42c846878 /* Binary/SnSerializationContext.h */, - FFFD2c8468e07fc42c8468e0 /* Binary/SnBinaryDeserialization.cpp */, - FFFD2c8469487fc42c846948 /* Binary/SnBinarySerialization.cpp */, - FFFD2c8469b07fc42c8469b0 /* Binary/SnConvX.cpp */, - FFFD2c846a187fc42c846a18 /* Binary/SnConvX_Align.cpp */, - FFFD2c846a807fc42c846a80 /* Binary/SnConvX_Convert.cpp */, - FFFD2c846ae87fc42c846ae8 /* Binary/SnConvX_Error.cpp */, - FFFD2c846b507fc42c846b50 /* Binary/SnConvX_MetaData.cpp */, - FFFD2c846bb87fc42c846bb8 /* Binary/SnConvX_Output.cpp */, - FFFD2c846c207fc42c846c20 /* Binary/SnConvX_Union.cpp */, - FFFD2c846c887fc42c846c88 /* Binary/SnSerializationContext.cpp */, - FFFD2c846cf07fc42c846cf0 /* Xml/SnJointRepXSerializer.h */, - FFFD2c846d587fc42c846d58 /* Xml/SnPxStreamOperators.h */, - FFFD2c846dc07fc42c846dc0 /* Xml/SnRepX1_0Defaults.h */, - FFFD2c846e287fc42c846e28 /* Xml/SnRepX3_1Defaults.h */, - FFFD2c846e907fc42c846e90 /* Xml/SnRepX3_2Defaults.h */, - FFFD2c846ef87fc42c846ef8 /* Xml/SnRepXCollection.h */, - FFFD2c846f607fc42c846f60 /* Xml/SnRepXCoreSerializer.h */, - FFFD2c846fc87fc42c846fc8 /* Xml/SnRepXSerializerImpl.h */, - FFFD2c8470307fc42c847030 /* Xml/SnRepXUpgrader.h */, - FFFD2c8470987fc42c847098 /* Xml/SnSimpleXmlWriter.h */, - FFFD2c8471007fc42c847100 /* Xml/SnXmlDeserializer.h */, - FFFD2c8471687fc42c847168 /* Xml/SnXmlImpl.h */, - FFFD2c8471d07fc42c8471d0 /* Xml/SnXmlMemoryAllocator.h */, - FFFD2c8472387fc42c847238 /* Xml/SnXmlMemoryPool.h */, - FFFD2c8472a07fc42c8472a0 /* Xml/SnXmlMemoryPoolStreams.h */, - FFFD2c8473087fc42c847308 /* Xml/SnXmlReader.h */, - FFFD2c8473707fc42c847370 /* Xml/SnXmlSerializer.h */, - FFFD2c8473d87fc42c8473d8 /* Xml/SnXmlSimpleXmlWriter.h */, - FFFD2c8474407fc42c847440 /* Xml/SnXmlStringToType.h */, - FFFD2c8474a87fc42c8474a8 /* Xml/SnXmlVisitorReader.h */, - FFFD2c8475107fc42c847510 /* Xml/SnXmlVisitorWriter.h */, - FFFD2c8475787fc42c847578 /* Xml/SnXmlWriter.h */, - FFFD2c8475e07fc42c8475e0 /* Xml/SnJointRepXSerializer.cpp */, - FFFD2c8476487fc42c847648 /* Xml/SnRepXCoreSerializer.cpp */, - FFFD2c8476b07fc42c8476b0 /* Xml/SnRepXUpgrader.cpp */, - FFFD2c8477187fc42c847718 /* Xml/SnXmlSerialization.cpp */, - FFFD2c8477807fc42c847780 /* File/SnFile.h */, + FFFDb49bae007f9eb49bae00 /* SnSerialUtils.h */, + FFFDb49bae687f9eb49bae68 /* SnSerializationRegistry.h */, + FFFDb49baed07f9eb49baed0 /* SnSerialUtils.cpp */, + FFFDb49baf387f9eb49baf38 /* SnSerialization.cpp */, + FFFDb49bafa07f9eb49bafa0 /* SnSerializationRegistry.cpp */, + FFFDb49bb0087f9eb49bb008 /* Binary/SnConvX.h */, + FFFDb49bb0707f9eb49bb070 /* Binary/SnConvX_Align.h */, + FFFDb49bb0d87f9eb49bb0d8 /* Binary/SnConvX_Common.h */, + FFFDb49bb1407f9eb49bb140 /* Binary/SnConvX_MetaData.h */, + FFFDb49bb1a87f9eb49bb1a8 /* Binary/SnConvX_Output.h */, + FFFDb49bb2107f9eb49bb210 /* Binary/SnConvX_Union.h */, + FFFDb49bb2787f9eb49bb278 /* Binary/SnSerializationContext.h */, + FFFDb49bb2e07f9eb49bb2e0 /* Binary/SnBinaryDeserialization.cpp */, + FFFDb49bb3487f9eb49bb348 /* Binary/SnBinarySerialization.cpp */, + FFFDb49bb3b07f9eb49bb3b0 /* Binary/SnConvX.cpp */, + FFFDb49bb4187f9eb49bb418 /* Binary/SnConvX_Align.cpp */, + FFFDb49bb4807f9eb49bb480 /* Binary/SnConvX_Convert.cpp */, + FFFDb49bb4e87f9eb49bb4e8 /* Binary/SnConvX_Error.cpp */, + FFFDb49bb5507f9eb49bb550 /* Binary/SnConvX_MetaData.cpp */, + FFFDb49bb5b87f9eb49bb5b8 /* Binary/SnConvX_Output.cpp */, + FFFDb49bb6207f9eb49bb620 /* Binary/SnConvX_Union.cpp */, + FFFDb49bb6887f9eb49bb688 /* Binary/SnSerializationContext.cpp */, + FFFDb49bb6f07f9eb49bb6f0 /* Xml/SnJointRepXSerializer.h */, + FFFDb49bb7587f9eb49bb758 /* Xml/SnPxStreamOperators.h */, + FFFDb49bb7c07f9eb49bb7c0 /* Xml/SnRepX1_0Defaults.h */, + FFFDb49bb8287f9eb49bb828 /* Xml/SnRepX3_1Defaults.h */, + FFFDb49bb8907f9eb49bb890 /* Xml/SnRepX3_2Defaults.h */, + FFFDb49bb8f87f9eb49bb8f8 /* Xml/SnRepXCollection.h */, + FFFDb49bb9607f9eb49bb960 /* Xml/SnRepXCoreSerializer.h */, + FFFDb49bb9c87f9eb49bb9c8 /* Xml/SnRepXSerializerImpl.h */, + FFFDb49bba307f9eb49bba30 /* Xml/SnRepXUpgrader.h */, + FFFDb49bba987f9eb49bba98 /* Xml/SnSimpleXmlWriter.h */, + FFFDb49bbb007f9eb49bbb00 /* Xml/SnXmlDeserializer.h */, + FFFDb49bbb687f9eb49bbb68 /* Xml/SnXmlImpl.h */, + FFFDb49bbbd07f9eb49bbbd0 /* Xml/SnXmlMemoryAllocator.h */, + FFFDb49bbc387f9eb49bbc38 /* Xml/SnXmlMemoryPool.h */, + FFFDb49bbca07f9eb49bbca0 /* Xml/SnXmlMemoryPoolStreams.h */, + FFFDb49bbd087f9eb49bbd08 /* Xml/SnXmlReader.h */, + FFFDb49bbd707f9eb49bbd70 /* Xml/SnXmlSerializer.h */, + FFFDb49bbdd87f9eb49bbdd8 /* Xml/SnXmlSimpleXmlWriter.h */, + FFFDb49bbe407f9eb49bbe40 /* Xml/SnXmlStringToType.h */, + FFFDb49bbea87f9eb49bbea8 /* Xml/SnXmlVisitorReader.h */, + FFFDb49bbf107f9eb49bbf10 /* Xml/SnXmlVisitorWriter.h */, + FFFDb49bbf787f9eb49bbf78 /* Xml/SnXmlWriter.h */, + FFFDb49bbfe07f9eb49bbfe0 /* Xml/SnJointRepXSerializer.cpp */, + FFFDb49bc0487f9eb49bc048 /* Xml/SnRepXCoreSerializer.cpp */, + FFFDb49bc0b07f9eb49bc0b0 /* Xml/SnRepXUpgrader.cpp */, + FFFDb49bc1187f9eb49bc118 /* Xml/SnXmlSerialization.cpp */, + FFFDb49bc1807f9eb49bc180 /* File/SnFile.h */, ); name = "serialization"; sourceTree = SOURCE_ROOT; }; - FFFB2be4a4387fc42be4a438 /* metadata */ = { + FFFBb57100e87f9eb57100e8 /* metadata */ = { isa = PBXGroup; children = ( - FFFD2c8440007fc42c844000 /* core/include/PvdMetaDataDefineProperties.h */, - FFFD2c8440687fc42c844068 /* core/include/PvdMetaDataExtensions.h */, - FFFD2c8440d07fc42c8440d0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFD2c8441387fc42c844138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFD2c8441a07fc42c8441a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFD2c8442087fc42c844208 /* core/include/PxMetaDataCompare.h */, - FFFD2c8442707fc42c844270 /* core/include/PxMetaDataCppPrefix.h */, - FFFD2c8442d87fc42c8442d8 /* core/include/PxMetaDataObjects.h */, - FFFD2c8443407fc42c844340 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFD2c8443a87fc42c8443a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, - FFFD2c8444107fc42c844410 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, - FFFD2c8444787fc42c844478 /* extensions/include/PxExtensionMetaDataObjects.h */, - FFFD2c8444e07fc42c8444e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, + FFFDb49b98007f9eb49b9800 /* core/include/PvdMetaDataDefineProperties.h */, + FFFDb49b98687f9eb49b9868 /* core/include/PvdMetaDataExtensions.h */, + FFFDb49b98d07f9eb49b98d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFDb49b99387f9eb49b9938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFDb49b99a07f9eb49b99a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFDb49b9a087f9eb49b9a08 /* core/include/PxMetaDataCompare.h */, + FFFDb49b9a707f9eb49b9a70 /* core/include/PxMetaDataCppPrefix.h */, + FFFDb49b9ad87f9eb49b9ad8 /* core/include/PxMetaDataObjects.h */, + FFFDb49b9b407f9eb49b9b40 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFDb49b9ba87f9eb49b9ba8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, + FFFDb49b9c107f9eb49b9c10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, + FFFDb49b9c787f9eb49b9c78 /* extensions/include/PxExtensionMetaDataObjects.h */, + FFFDb49b9ce07f9eb49b9ce0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB2be53ef07fc42be53ef0 /* SceneQuery */ = { + FFFBb5719ba07f9eb5719ba0 /* SceneQuery */ = { isa = PBXGroup; children = ( - FFFB2be560307fc42be56030 /* src */, - FFFB2be560587fc42be56058 /* include */, + FFFBb571bce07f9eb571bce0 /* src */, + FFFBb571bd087f9eb571bd08 /* include */, ); name = "SceneQuery"; sourceTree = "<group>"; }; - FFFB2be560307fc42be56030 /* src */ = { + FFFBb571bce07f9eb571bce0 /* src */ = { isa = PBXGroup; children = ( - FFFD2c84a4007fc42c84a400 /* SqAABBPruner.cpp */, - FFFD2c84a4687fc42c84a468 /* SqAABBTree.cpp */, - FFFD2c84a4d07fc42c84a4d0 /* SqAABBTreeUpdateMap.cpp */, - FFFD2c84a5387fc42c84a538 /* SqBounds.cpp */, - FFFD2c84a5a07fc42c84a5a0 /* SqBucketPruner.cpp */, - FFFD2c84a6087fc42c84a608 /* SqExtendedBucketPruner.cpp */, - FFFD2c84a6707fc42c84a670 /* SqMetaData.cpp */, - FFFD2c84a6d87fc42c84a6d8 /* SqPruningPool.cpp */, - FFFD2c84a7407fc42c84a740 /* SqPruningStructure.cpp */, - FFFD2c84a7a87fc42c84a7a8 /* SqSceneQueryManager.cpp */, - FFFD2c84a8107fc42c84a810 /* SqAABBPruner.h */, - FFFD2c84a8787fc42c84a878 /* SqAABBTree.h */, - FFFD2c84a8e07fc42c84a8e0 /* SqAABBTreeQuery.h */, - FFFD2c84a9487fc42c84a948 /* SqAABBTreeUpdateMap.h */, - FFFD2c84a9b07fc42c84a9b0 /* SqBounds.h */, - FFFD2c84aa187fc42c84aa18 /* SqBucketPruner.h */, - FFFD2c84aa807fc42c84aa80 /* SqExtendedBucketPruner.h */, - FFFD2c84aae87fc42c84aae8 /* SqPrunerTestsSIMD.h */, - FFFD2c84ab507fc42c84ab50 /* SqPruningPool.h */, - FFFD2c84abb87fc42c84abb8 /* SqTypedef.h */, + FFFDb49c00007f9eb49c0000 /* SqAABBPruner.cpp */, + FFFDb49c00687f9eb49c0068 /* SqAABBTree.cpp */, + FFFDb49c00d07f9eb49c00d0 /* SqAABBTreeUpdateMap.cpp */, + FFFDb49c01387f9eb49c0138 /* SqBounds.cpp */, + FFFDb49c01a07f9eb49c01a0 /* SqBucketPruner.cpp */, + FFFDb49c02087f9eb49c0208 /* SqExtendedBucketPruner.cpp */, + FFFDb49c02707f9eb49c0270 /* SqMetaData.cpp */, + FFFDb49c02d87f9eb49c02d8 /* SqPruningPool.cpp */, + FFFDb49c03407f9eb49c0340 /* SqPruningStructure.cpp */, + FFFDb49c03a87f9eb49c03a8 /* SqSceneQueryManager.cpp */, + FFFDb49c04107f9eb49c0410 /* SqAABBPruner.h */, + FFFDb49c04787f9eb49c0478 /* SqAABBTree.h */, + FFFDb49c04e07f9eb49c04e0 /* SqAABBTreeQuery.h */, + FFFDb49c05487f9eb49c0548 /* SqAABBTreeUpdateMap.h */, + FFFDb49c05b07f9eb49c05b0 /* SqBounds.h */, + FFFDb49c06187f9eb49c0618 /* SqBucketPruner.h */, + FFFDb49c06807f9eb49c0680 /* SqExtendedBucketPruner.h */, + FFFDb49c06e87f9eb49c06e8 /* SqPrunerTestsSIMD.h */, + FFFDb49c07507f9eb49c0750 /* SqPruningPool.h */, + FFFDb49c07b87f9eb49c07b8 /* SqTypedef.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2be560587fc42be56058 /* include */ = { + FFFBb571bd087f9eb571bd08 /* include */ = { isa = PBXGroup; children = ( - FFFD2be582707fc42be58270 /* SqPruner.h */, - FFFD2be582d87fc42be582d8 /* SqPrunerMergeData.h */, - FFFD2be583407fc42be58340 /* SqPruningStructure.h */, - FFFD2be583a87fc42be583a8 /* SqSceneQueryManager.h */, + FFFDb571df207f9eb571df20 /* SqPruner.h */, + FFFDb571df887f9eb571df88 /* SqPrunerMergeData.h */, + FFFDb571dff07f9eb571dff0 /* SqPruningStructure.h */, + FFFDb571e0587f9eb571e058 /* SqSceneQueryManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2be585307fc42be58530 /* SimulationController */ = { + FFFBb571e1e07f9eb571e1e0 /* SimulationController */ = { isa = PBXGroup; children = ( - FFFB2be5a4607fc42be5a460 /* include */, - FFFB2be5a4887fc42be5a488 /* src */, + FFFBb47293c07f9eb47293c0 /* include */, + FFFBb47293e87f9eb47293e8 /* src */, ); name = "SimulationController"; sourceTree = "<group>"; }; - FFFB2be5a4607fc42be5a460 /* include */ = { + FFFBb47293c07f9eb47293c0 /* include */ = { isa = PBXGroup; children = ( - FFFD2c84ce007fc42c84ce00 /* ScActorCore.h */, - FFFD2c84ce687fc42c84ce68 /* ScArticulationCore.h */, - FFFD2c84ced07fc42c84ced0 /* ScArticulationJointCore.h */, - FFFD2c84cf387fc42c84cf38 /* ScBodyCore.h */, - FFFD2c84cfa07fc42c84cfa0 /* ScClothCore.h */, - FFFD2c84d0087fc42c84d008 /* ScClothFabricCore.h */, - FFFD2c84d0707fc42c84d070 /* ScConstraintCore.h */, - FFFD2c84d0d87fc42c84d0d8 /* ScIterators.h */, - FFFD2c84d1407fc42c84d140 /* ScMaterialCore.h */, - FFFD2c84d1a87fc42c84d1a8 /* ScParticleSystemCore.h */, - FFFD2c84d2107fc42c84d210 /* ScPhysics.h */, - FFFD2c84d2787fc42c84d278 /* ScRigidCore.h */, - FFFD2c84d2e07fc42c84d2e0 /* ScScene.h */, - FFFD2c84d3487fc42c84d348 /* ScShapeCore.h */, - FFFD2c84d3b07fc42c84d3b0 /* ScStaticCore.h */, + FFFDb3021a007f9eb3021a00 /* ScActorCore.h */, + FFFDb3021a687f9eb3021a68 /* ScArticulationCore.h */, + FFFDb3021ad07f9eb3021ad0 /* ScArticulationJointCore.h */, + FFFDb3021b387f9eb3021b38 /* ScBodyCore.h */, + FFFDb3021ba07f9eb3021ba0 /* ScClothCore.h */, + FFFDb3021c087f9eb3021c08 /* ScClothFabricCore.h */, + FFFDb3021c707f9eb3021c70 /* ScConstraintCore.h */, + FFFDb3021cd87f9eb3021cd8 /* ScIterators.h */, + FFFDb3021d407f9eb3021d40 /* ScMaterialCore.h */, + FFFDb3021da87f9eb3021da8 /* ScParticleSystemCore.h */, + FFFDb3021e107f9eb3021e10 /* ScPhysics.h */, + FFFDb3021e787f9eb3021e78 /* ScRigidCore.h */, + FFFDb3021ee07f9eb3021ee0 /* ScScene.h */, + FFFDb3021f487f9eb3021f48 /* ScShapeCore.h */, + FFFDb3021fb07f9eb3021fb0 /* ScStaticCore.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2be5a4887fc42be5a488 /* src */ = { + FFFBb47293e87f9eb47293e8 /* src */ = { isa = PBXGroup; children = ( - FFFD2c8500007fc42c850000 /* ScActorElementPair.h */, - FFFD2c8500687fc42c850068 /* ScActorInteraction.h */, - FFFD2c8500d07fc42c8500d0 /* ScActorPair.h */, - FFFD2c8501387fc42c850138 /* ScActorSim.h */, - FFFD2c8501a07fc42c8501a0 /* ScArticulationJointSim.h */, - FFFD2c8502087fc42c850208 /* ScArticulationSim.h */, - FFFD2c8502707fc42c850270 /* ScBodySim.h */, - FFFD2c8502d87fc42c8502d8 /* ScClient.h */, - FFFD2c8503407fc42c850340 /* ScConstraintGroupNode.h */, - FFFD2c8503a87fc42c8503a8 /* ScConstraintInteraction.h */, - FFFD2c8504107fc42c850410 /* ScConstraintProjectionManager.h */, - FFFD2c8504787fc42c850478 /* ScConstraintProjectionTree.h */, - FFFD2c8504e07fc42c8504e0 /* ScConstraintSim.h */, - FFFD2c8505487fc42c850548 /* ScContactReportBuffer.h */, - FFFD2c8505b07fc42c8505b0 /* ScContactStream.h */, - FFFD2c8506187fc42c850618 /* ScElementInteractionMarker.h */, - FFFD2c8506807fc42c850680 /* ScElementSim.h */, - FFFD2c8506e87fc42c8506e8 /* ScElementSimInteraction.h */, - FFFD2c8507507fc42c850750 /* ScInteraction.h */, - FFFD2c8507b87fc42c8507b8 /* ScInteractionFlags.h */, - FFFD2c8508207fc42c850820 /* ScNPhaseCore.h */, - FFFD2c8508887fc42c850888 /* ScObjectIDTracker.h */, - FFFD2c8508f07fc42c8508f0 /* ScRbElementInteraction.h */, - FFFD2c8509587fc42c850958 /* ScRigidSim.h */, - FFFD2c8509c07fc42c8509c0 /* ScShapeInteraction.h */, - FFFD2c850a287fc42c850a28 /* ScShapeIterator.h */, - FFFD2c850a907fc42c850a90 /* ScShapeSim.h */, - FFFD2c850af87fc42c850af8 /* ScSimStateData.h */, - FFFD2c850b607fc42c850b60 /* ScSimStats.h */, - FFFD2c850bc87fc42c850bc8 /* ScSimulationController.h */, - FFFD2c850c307fc42c850c30 /* ScSqBoundsManager.h */, - FFFD2c850c987fc42c850c98 /* ScStaticSim.h */, - FFFD2c850d007fc42c850d00 /* ScTriggerInteraction.h */, - FFFD2c850d687fc42c850d68 /* ScTriggerPairs.h */, - FFFD2c850dd07fc42c850dd0 /* ScActorCore.cpp */, - FFFD2c850e387fc42c850e38 /* ScActorSim.cpp */, - FFFD2c850ea07fc42c850ea0 /* ScArticulationCore.cpp */, - FFFD2c850f087fc42c850f08 /* ScArticulationJointCore.cpp */, - FFFD2c850f707fc42c850f70 /* ScArticulationJointSim.cpp */, - FFFD2c850fd87fc42c850fd8 /* ScArticulationSim.cpp */, - FFFD2c8510407fc42c851040 /* ScBodyCore.cpp */, - FFFD2c8510a87fc42c8510a8 /* ScBodyCoreKinematic.cpp */, - FFFD2c8511107fc42c851110 /* ScBodySim.cpp */, - FFFD2c8511787fc42c851178 /* ScConstraintCore.cpp */, - FFFD2c8511e07fc42c8511e0 /* ScConstraintGroupNode.cpp */, - FFFD2c8512487fc42c851248 /* ScConstraintInteraction.cpp */, - FFFD2c8512b07fc42c8512b0 /* ScConstraintProjectionManager.cpp */, - FFFD2c8513187fc42c851318 /* ScConstraintProjectionTree.cpp */, - FFFD2c8513807fc42c851380 /* ScConstraintSim.cpp */, - FFFD2c8513e87fc42c8513e8 /* ScElementInteractionMarker.cpp */, - FFFD2c8514507fc42c851450 /* ScElementSim.cpp */, - FFFD2c8514b87fc42c8514b8 /* ScInteraction.cpp */, - FFFD2c8515207fc42c851520 /* ScIterators.cpp */, - FFFD2c8515887fc42c851588 /* ScMaterialCore.cpp */, - FFFD2c8515f07fc42c8515f0 /* ScMetaData.cpp */, - FFFD2c8516587fc42c851658 /* ScNPhaseCore.cpp */, - FFFD2c8516c07fc42c8516c0 /* ScPhysics.cpp */, - FFFD2c8517287fc42c851728 /* ScRigidCore.cpp */, - FFFD2c8517907fc42c851790 /* ScRigidSim.cpp */, - FFFD2c8517f87fc42c8517f8 /* ScScene.cpp */, - FFFD2c8518607fc42c851860 /* ScShapeCore.cpp */, - FFFD2c8518c87fc42c8518c8 /* ScShapeInteraction.cpp */, - FFFD2c8519307fc42c851930 /* ScShapeSim.cpp */, - FFFD2c8519987fc42c851998 /* ScSimStats.cpp */, - FFFD2c851a007fc42c851a00 /* ScSimulationController.cpp */, - FFFD2c851a687fc42c851a68 /* ScSqBoundsManager.cpp */, - FFFD2c851ad07fc42c851ad0 /* ScStaticCore.cpp */, - FFFD2c851b387fc42c851b38 /* ScStaticSim.cpp */, - FFFD2c851ba07fc42c851ba0 /* ScTriggerInteraction.cpp */, - FFFD2c851c087fc42c851c08 /* particles/ScParticleBodyInteraction.h */, - FFFD2c851c707fc42c851c70 /* particles/ScParticlePacketShape.h */, - FFFD2c851cd87fc42c851cd8 /* particles/ScParticleSystemSim.h */, - FFFD2c851d407fc42c851d40 /* particles/ScParticleBodyInteraction.cpp */, - FFFD2c851da87fc42c851da8 /* particles/ScParticlePacketShape.cpp */, - FFFD2c851e107fc42c851e10 /* particles/ScParticleSystemCore.cpp */, - FFFD2c851e787fc42c851e78 /* particles/ScParticleSystemSim.cpp */, - FFFD2c851ee07fc42c851ee0 /* cloth/ScClothShape.h */, - FFFD2c851f487fc42c851f48 /* cloth/ScClothSim.h */, - FFFD2c851fb07fc42c851fb0 /* cloth/ScClothCore.cpp */, - FFFD2c8520187fc42c852018 /* cloth/ScClothFabricCore.cpp */, - FFFD2c8520807fc42c852080 /* cloth/ScClothShape.cpp */, - FFFD2c8520e87fc42c8520e8 /* cloth/ScClothSim.cpp */, + FFFDb30350007f9eb3035000 /* ScActorElementPair.h */, + FFFDb30350687f9eb3035068 /* ScActorInteraction.h */, + FFFDb30350d07f9eb30350d0 /* ScActorPair.h */, + FFFDb30351387f9eb3035138 /* ScActorSim.h */, + FFFDb30351a07f9eb30351a0 /* ScArticulationJointSim.h */, + FFFDb30352087f9eb3035208 /* ScArticulationSim.h */, + FFFDb30352707f9eb3035270 /* ScBodySim.h */, + FFFDb30352d87f9eb30352d8 /* ScClient.h */, + FFFDb30353407f9eb3035340 /* ScConstraintGroupNode.h */, + FFFDb30353a87f9eb30353a8 /* ScConstraintInteraction.h */, + FFFDb30354107f9eb3035410 /* ScConstraintProjectionManager.h */, + FFFDb30354787f9eb3035478 /* ScConstraintProjectionTree.h */, + FFFDb30354e07f9eb30354e0 /* ScConstraintSim.h */, + FFFDb30355487f9eb3035548 /* ScContactReportBuffer.h */, + FFFDb30355b07f9eb30355b0 /* ScContactStream.h */, + FFFDb30356187f9eb3035618 /* ScElementInteractionMarker.h */, + FFFDb30356807f9eb3035680 /* ScElementSim.h */, + FFFDb30356e87f9eb30356e8 /* ScElementSimInteraction.h */, + FFFDb30357507f9eb3035750 /* ScInteraction.h */, + FFFDb30357b87f9eb30357b8 /* ScInteractionFlags.h */, + FFFDb30358207f9eb3035820 /* ScNPhaseCore.h */, + FFFDb30358887f9eb3035888 /* ScObjectIDTracker.h */, + FFFDb30358f07f9eb30358f0 /* ScRbElementInteraction.h */, + FFFDb30359587f9eb3035958 /* ScRigidSim.h */, + FFFDb30359c07f9eb30359c0 /* ScShapeInteraction.h */, + FFFDb3035a287f9eb3035a28 /* ScShapeIterator.h */, + FFFDb3035a907f9eb3035a90 /* ScShapeSim.h */, + FFFDb3035af87f9eb3035af8 /* ScSimStateData.h */, + FFFDb3035b607f9eb3035b60 /* ScSimStats.h */, + FFFDb3035bc87f9eb3035bc8 /* ScSimulationController.h */, + FFFDb3035c307f9eb3035c30 /* ScSqBoundsManager.h */, + FFFDb3035c987f9eb3035c98 /* ScStaticSim.h */, + FFFDb3035d007f9eb3035d00 /* ScTriggerInteraction.h */, + FFFDb3035d687f9eb3035d68 /* ScTriggerPairs.h */, + FFFDb3035dd07f9eb3035dd0 /* ScActorCore.cpp */, + FFFDb3035e387f9eb3035e38 /* ScActorSim.cpp */, + FFFDb3035ea07f9eb3035ea0 /* ScArticulationCore.cpp */, + FFFDb3035f087f9eb3035f08 /* ScArticulationJointCore.cpp */, + FFFDb3035f707f9eb3035f70 /* ScArticulationJointSim.cpp */, + FFFDb3035fd87f9eb3035fd8 /* ScArticulationSim.cpp */, + FFFDb30360407f9eb3036040 /* ScBodyCore.cpp */, + FFFDb30360a87f9eb30360a8 /* ScBodyCoreKinematic.cpp */, + FFFDb30361107f9eb3036110 /* ScBodySim.cpp */, + FFFDb30361787f9eb3036178 /* ScConstraintCore.cpp */, + FFFDb30361e07f9eb30361e0 /* ScConstraintGroupNode.cpp */, + FFFDb30362487f9eb3036248 /* ScConstraintInteraction.cpp */, + FFFDb30362b07f9eb30362b0 /* ScConstraintProjectionManager.cpp */, + FFFDb30363187f9eb3036318 /* ScConstraintProjectionTree.cpp */, + FFFDb30363807f9eb3036380 /* ScConstraintSim.cpp */, + FFFDb30363e87f9eb30363e8 /* ScElementInteractionMarker.cpp */, + FFFDb30364507f9eb3036450 /* ScElementSim.cpp */, + FFFDb30364b87f9eb30364b8 /* ScInteraction.cpp */, + FFFDb30365207f9eb3036520 /* ScIterators.cpp */, + FFFDb30365887f9eb3036588 /* ScMaterialCore.cpp */, + FFFDb30365f07f9eb30365f0 /* ScMetaData.cpp */, + FFFDb30366587f9eb3036658 /* ScNPhaseCore.cpp */, + FFFDb30366c07f9eb30366c0 /* ScPhysics.cpp */, + FFFDb30367287f9eb3036728 /* ScRigidCore.cpp */, + FFFDb30367907f9eb3036790 /* ScRigidSim.cpp */, + FFFDb30367f87f9eb30367f8 /* ScScene.cpp */, + FFFDb30368607f9eb3036860 /* ScShapeCore.cpp */, + FFFDb30368c87f9eb30368c8 /* ScShapeInteraction.cpp */, + FFFDb30369307f9eb3036930 /* ScShapeSim.cpp */, + FFFDb30369987f9eb3036998 /* ScSimStats.cpp */, + FFFDb3036a007f9eb3036a00 /* ScSimulationController.cpp */, + FFFDb3036a687f9eb3036a68 /* ScSqBoundsManager.cpp */, + FFFDb3036ad07f9eb3036ad0 /* ScStaticCore.cpp */, + FFFDb3036b387f9eb3036b38 /* ScStaticSim.cpp */, + FFFDb3036ba07f9eb3036ba0 /* ScTriggerInteraction.cpp */, + FFFDb3036c087f9eb3036c08 /* particles/ScParticleBodyInteraction.h */, + FFFDb3036c707f9eb3036c70 /* particles/ScParticlePacketShape.h */, + FFFDb3036cd87f9eb3036cd8 /* particles/ScParticleSystemSim.h */, + FFFDb3036d407f9eb3036d40 /* particles/ScParticleBodyInteraction.cpp */, + FFFDb3036da87f9eb3036da8 /* particles/ScParticlePacketShape.cpp */, + FFFDb3036e107f9eb3036e10 /* particles/ScParticleSystemCore.cpp */, + FFFDb3036e787f9eb3036e78 /* particles/ScParticleSystemSim.cpp */, + FFFDb3036ee07f9eb3036ee0 /* cloth/ScClothShape.h */, + FFFDb3036f487f9eb3036f48 /* cloth/ScClothSim.h */, + FFFDb3036fb07f9eb3036fb0 /* cloth/ScClothCore.cpp */, + FFFDb30370187f9eb3037018 /* cloth/ScClothFabricCore.cpp */, + FFFDb30370807f9eb3037080 /* cloth/ScClothShape.cpp */, + FFFDb30370e87f9eb30370e8 /* cloth/ScClothSim.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2be5ccd07fc42be5ccd0 /* PhysXCooking */ = { + FFFBb472b3907f9eb472b390 /* PhysXCooking */ = { isa = PBXGroup; children = ( - FFFB2be60f607fc42be60f60 /* include */, - FFFB2be60f887fc42be60f88 /* src */, + FFFBb4724a607f9eb4724a60 /* include */, + FFFBb4724a887f9eb4724a88 /* src */, ); name = "PhysXCooking"; sourceTree = "<group>"; }; - FFFB2be60f607fc42be60f60 /* include */ = { + FFFBb4724a607f9eb4724a60 /* include */ = { isa = PBXGroup; children = ( - FFFD2be66dd07fc42be66dd0 /* PxBVH33MidphaseDesc.h */, - FFFD2be66e387fc42be66e38 /* PxBVH34MidphaseDesc.h */, - FFFD2be66ea07fc42be66ea0 /* PxConvexMeshDesc.h */, - FFFD2be66f087fc42be66f08 /* PxCooking.h */, - FFFD2be66f707fc42be66f70 /* PxMidphaseDesc.h */, - FFFD2be66fd87fc42be66fd8 /* PxTriangleMeshDesc.h */, - FFFD2be670407fc42be67040 /* Pxc.h */, + FFFDb4724ab07f9eb4724ab0 /* PxBVH33MidphaseDesc.h */, + FFFDb4724b187f9eb4724b18 /* PxBVH34MidphaseDesc.h */, + FFFDb4724b807f9eb4724b80 /* PxConvexMeshDesc.h */, + FFFDb4724be87f9eb4724be8 /* PxCooking.h */, + FFFDb4724c507f9eb4724c50 /* PxMidphaseDesc.h */, + FFFDb4724cb87f9eb4724cb8 /* PxTriangleMeshDesc.h */, + FFFDb4724d207f9eb4724d20 /* Pxc.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2be60f887fc42be60f88 /* src */ = { + FFFBb4724a887f9eb4724a88 /* src */ = { isa = PBXGroup; children = ( - FFFD2c8542007fc42c854200 /* Adjacencies.cpp */, - FFFD2c8542687fc42c854268 /* Cooking.cpp */, - FFFD2c8542d07fc42c8542d0 /* CookingUtils.cpp */, - FFFD2c8543387fc42c854338 /* EdgeList.cpp */, - FFFD2c8543a07fc42c8543a0 /* MeshCleaner.cpp */, - FFFD2c8544087fc42c854408 /* Quantizer.cpp */, - FFFD2c8544707fc42c854470 /* Adjacencies.h */, - FFFD2c8544d87fc42c8544d8 /* Cooking.h */, - FFFD2c8545407fc42c854540 /* CookingUtils.h */, - FFFD2c8545a87fc42c8545a8 /* EdgeList.h */, - FFFD2c8546107fc42c854610 /* MeshCleaner.h */, - FFFD2c8546787fc42c854678 /* Quantizer.h */, - FFFD2c8546e07fc42c8546e0 /* mesh/GrbTriangleMeshCooking.cpp */, - FFFD2c8547487fc42c854748 /* mesh/HeightFieldCooking.cpp */, - FFFD2c8547b07fc42c8547b0 /* mesh/RTreeCooking.cpp */, - FFFD2c8548187fc42c854818 /* mesh/TriangleMeshBuilder.cpp */, - FFFD2c8548807fc42c854880 /* mesh/GrbTriangleMeshCooking.h */, - FFFD2c8548e87fc42c8548e8 /* mesh/HeightFieldCooking.h */, - FFFD2c8549507fc42c854950 /* mesh/QuickSelect.h */, - FFFD2c8549b87fc42c8549b8 /* mesh/RTreeCooking.h */, - FFFD2c854a207fc42c854a20 /* mesh/TriangleMeshBuilder.h */, - FFFD2c854a887fc42c854a88 /* convex/BigConvexDataBuilder.cpp */, - FFFD2c854af07fc42c854af0 /* convex/ConvexHullBuilder.cpp */, - FFFD2c854b587fc42c854b58 /* convex/ConvexHullLib.cpp */, - FFFD2c854bc07fc42c854bc0 /* convex/ConvexHullUtils.cpp */, - FFFD2c854c287fc42c854c28 /* convex/ConvexMeshBuilder.cpp */, - FFFD2c854c907fc42c854c90 /* convex/ConvexPolygonsBuilder.cpp */, - FFFD2c854cf87fc42c854cf8 /* convex/InflationConvexHullLib.cpp */, - FFFD2c854d607fc42c854d60 /* convex/QuickHullConvexHullLib.cpp */, - FFFD2c854dc87fc42c854dc8 /* convex/VolumeIntegration.cpp */, - FFFD2c854e307fc42c854e30 /* convex/BigConvexDataBuilder.h */, - FFFD2c854e987fc42c854e98 /* convex/ConvexHullBuilder.h */, - FFFD2c854f007fc42c854f00 /* convex/ConvexHullLib.h */, - FFFD2c854f687fc42c854f68 /* convex/ConvexHullUtils.h */, - FFFD2c854fd07fc42c854fd0 /* convex/ConvexMeshBuilder.h */, - FFFD2c8550387fc42c855038 /* convex/ConvexPolygonsBuilder.h */, - FFFD2c8550a07fc42c8550a0 /* convex/InflationConvexHullLib.h */, - FFFD2c8551087fc42c855108 /* convex/QuickHullConvexHullLib.h */, - FFFD2c8551707fc42c855170 /* convex/VolumeIntegration.h */, + FFFDb30392007f9eb3039200 /* Adjacencies.cpp */, + FFFDb30392687f9eb3039268 /* Cooking.cpp */, + FFFDb30392d07f9eb30392d0 /* CookingUtils.cpp */, + FFFDb30393387f9eb3039338 /* EdgeList.cpp */, + FFFDb30393a07f9eb30393a0 /* MeshCleaner.cpp */, + FFFDb30394087f9eb3039408 /* Quantizer.cpp */, + FFFDb30394707f9eb3039470 /* Adjacencies.h */, + FFFDb30394d87f9eb30394d8 /* Cooking.h */, + FFFDb30395407f9eb3039540 /* CookingUtils.h */, + FFFDb30395a87f9eb30395a8 /* EdgeList.h */, + FFFDb30396107f9eb3039610 /* MeshCleaner.h */, + FFFDb30396787f9eb3039678 /* Quantizer.h */, + FFFDb30396e07f9eb30396e0 /* mesh/GrbTriangleMeshCooking.cpp */, + FFFDb30397487f9eb3039748 /* mesh/HeightFieldCooking.cpp */, + FFFDb30397b07f9eb30397b0 /* mesh/RTreeCooking.cpp */, + FFFDb30398187f9eb3039818 /* mesh/TriangleMeshBuilder.cpp */, + FFFDb30398807f9eb3039880 /* mesh/GrbTriangleMeshCooking.h */, + FFFDb30398e87f9eb30398e8 /* mesh/HeightFieldCooking.h */, + FFFDb30399507f9eb3039950 /* mesh/QuickSelect.h */, + FFFDb30399b87f9eb30399b8 /* mesh/RTreeCooking.h */, + FFFDb3039a207f9eb3039a20 /* mesh/TriangleMeshBuilder.h */, + FFFDb3039a887f9eb3039a88 /* convex/BigConvexDataBuilder.cpp */, + FFFDb3039af07f9eb3039af0 /* convex/ConvexHullBuilder.cpp */, + FFFDb3039b587f9eb3039b58 /* convex/ConvexHullLib.cpp */, + FFFDb3039bc07f9eb3039bc0 /* convex/ConvexHullUtils.cpp */, + FFFDb3039c287f9eb3039c28 /* convex/ConvexMeshBuilder.cpp */, + FFFDb3039c907f9eb3039c90 /* convex/ConvexPolygonsBuilder.cpp */, + FFFDb3039cf87f9eb3039cf8 /* convex/InflationConvexHullLib.cpp */, + FFFDb3039d607f9eb3039d60 /* convex/QuickHullConvexHullLib.cpp */, + FFFDb3039dc87f9eb3039dc8 /* convex/VolumeIntegration.cpp */, + FFFDb3039e307f9eb3039e30 /* convex/BigConvexDataBuilder.h */, + FFFDb3039e987f9eb3039e98 /* convex/ConvexHullBuilder.h */, + FFFDb3039f007f9eb3039f00 /* convex/ConvexHullLib.h */, + FFFDb3039f687f9eb3039f68 /* convex/ConvexHullUtils.h */, + FFFDb3039fd07f9eb3039fd0 /* convex/ConvexMeshBuilder.h */, + FFFDb303a0387f9eb303a038 /* convex/ConvexPolygonsBuilder.h */, + FFFDb303a0a07f9eb303a0a0 /* convex/InflationConvexHullLib.h */, + FFFDb303a1087f9eb303a108 /* convex/QuickHullConvexHullLib.h */, + FFFDb303a1707f9eb303a170 /* convex/VolumeIntegration.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2b949d707fc42b949d70 /* PhysXCommon */ = { + FFFBb43288707f9eb4328870 /* PhysXCommon */ = { isa = PBXGroup; children = ( - FFFB2b8f70e07fc42b8f70e0 /* include */, - FFFB2b8f71087fc42b8f7108 /* common */, - FFFB2b8f71307fc42b8f7130 /* geomutils */, + FFFBb432b5407f9eb432b540 /* include */, + FFFBb432b5687f9eb432b568 /* common */, + FFFBb432b5907f9eb432b590 /* geomutils */, ); name = "PhysXCommon"; sourceTree = "<group>"; }; - FFFB2b8f70e07fc42b8f70e0 /* include */ = { + FFFBb432b5407f9eb432b540 /* include */ = { isa = PBXGroup; children = ( - FFFD2b1a0a007fc42b1a0a00 /* common/PxBase.h */, - FFFD2b1a0a687fc42b1a0a68 /* common/PxCollection.h */, - FFFD2b1a0ad07fc42b1a0ad0 /* common/PxCoreUtilityTypes.h */, - FFFD2b1a0b387fc42b1a0b38 /* common/PxMetaData.h */, - FFFD2b1a0ba07fc42b1a0ba0 /* common/PxMetaDataFlags.h */, - FFFD2b1a0c087fc42b1a0c08 /* common/PxPhysXCommonConfig.h */, - FFFD2b1a0c707fc42b1a0c70 /* common/PxPhysicsInsertionCallback.h */, - FFFD2b1a0cd87fc42b1a0cd8 /* common/PxRenderBuffer.h */, - FFFD2b1a0d407fc42b1a0d40 /* common/PxSerialFramework.h */, - FFFD2b1a0da87fc42b1a0da8 /* common/PxSerializer.h */, - FFFD2b1a0e107fc42b1a0e10 /* common/PxStringTable.h */, - FFFD2b1a0e787fc42b1a0e78 /* common/PxTolerancesScale.h */, - FFFD2b1a0ee07fc42b1a0ee0 /* common/PxTypeInfo.h */, - FFFD2b1a0f487fc42b1a0f48 /* geometry/PxBoxGeometry.h */, - FFFD2b1a0fb07fc42b1a0fb0 /* geometry/PxCapsuleGeometry.h */, - FFFD2b1a10187fc42b1a1018 /* geometry/PxConvexMesh.h */, - FFFD2b1a10807fc42b1a1080 /* geometry/PxConvexMeshGeometry.h */, - FFFD2b1a10e87fc42b1a10e8 /* geometry/PxGeometry.h */, - FFFD2b1a11507fc42b1a1150 /* geometry/PxGeometryHelpers.h */, - FFFD2b1a11b87fc42b1a11b8 /* geometry/PxGeometryQuery.h */, - FFFD2b1a12207fc42b1a1220 /* geometry/PxHeightField.h */, - FFFD2b1a12887fc42b1a1288 /* geometry/PxHeightFieldDesc.h */, - FFFD2b1a12f07fc42b1a12f0 /* geometry/PxHeightFieldFlag.h */, - FFFD2b1a13587fc42b1a1358 /* geometry/PxHeightFieldGeometry.h */, - FFFD2b1a13c07fc42b1a13c0 /* geometry/PxHeightFieldSample.h */, - FFFD2b1a14287fc42b1a1428 /* geometry/PxMeshQuery.h */, - FFFD2b1a14907fc42b1a1490 /* geometry/PxMeshScale.h */, - FFFD2b1a14f87fc42b1a14f8 /* geometry/PxPlaneGeometry.h */, - FFFD2b1a15607fc42b1a1560 /* geometry/PxSimpleTriangleMesh.h */, - FFFD2b1a15c87fc42b1a15c8 /* geometry/PxSphereGeometry.h */, - FFFD2b1a16307fc42b1a1630 /* geometry/PxTriangle.h */, - FFFD2b1a16987fc42b1a1698 /* geometry/PxTriangleMesh.h */, - FFFD2b1a17007fc42b1a1700 /* geometry/PxTriangleMeshGeometry.h */, + FFFDb38288007f9eb3828800 /* common/PxBase.h */, + FFFDb38288687f9eb3828868 /* common/PxCollection.h */, + FFFDb38288d07f9eb38288d0 /* common/PxCoreUtilityTypes.h */, + FFFDb38289387f9eb3828938 /* common/PxMetaData.h */, + FFFDb38289a07f9eb38289a0 /* common/PxMetaDataFlags.h */, + FFFDb3828a087f9eb3828a08 /* common/PxPhysXCommonConfig.h */, + FFFDb3828a707f9eb3828a70 /* common/PxPhysicsInsertionCallback.h */, + FFFDb3828ad87f9eb3828ad8 /* common/PxRenderBuffer.h */, + FFFDb3828b407f9eb3828b40 /* common/PxSerialFramework.h */, + FFFDb3828ba87f9eb3828ba8 /* common/PxSerializer.h */, + FFFDb3828c107f9eb3828c10 /* common/PxStringTable.h */, + FFFDb3828c787f9eb3828c78 /* common/PxTolerancesScale.h */, + FFFDb3828ce07f9eb3828ce0 /* common/PxTypeInfo.h */, + FFFDb3828d487f9eb3828d48 /* geometry/PxBoxGeometry.h */, + FFFDb3828db07f9eb3828db0 /* geometry/PxCapsuleGeometry.h */, + FFFDb3828e187f9eb3828e18 /* geometry/PxConvexMesh.h */, + FFFDb3828e807f9eb3828e80 /* geometry/PxConvexMeshGeometry.h */, + FFFDb3828ee87f9eb3828ee8 /* geometry/PxGeometry.h */, + FFFDb3828f507f9eb3828f50 /* geometry/PxGeometryHelpers.h */, + FFFDb3828fb87f9eb3828fb8 /* geometry/PxGeometryQuery.h */, + FFFDb38290207f9eb3829020 /* geometry/PxHeightField.h */, + FFFDb38290887f9eb3829088 /* geometry/PxHeightFieldDesc.h */, + FFFDb38290f07f9eb38290f0 /* geometry/PxHeightFieldFlag.h */, + FFFDb38291587f9eb3829158 /* geometry/PxHeightFieldGeometry.h */, + FFFDb38291c07f9eb38291c0 /* geometry/PxHeightFieldSample.h */, + FFFDb38292287f9eb3829228 /* geometry/PxMeshQuery.h */, + FFFDb38292907f9eb3829290 /* geometry/PxMeshScale.h */, + FFFDb38292f87f9eb38292f8 /* geometry/PxPlaneGeometry.h */, + FFFDb38293607f9eb3829360 /* geometry/PxSimpleTriangleMesh.h */, + FFFDb38293c87f9eb38293c8 /* geometry/PxSphereGeometry.h */, + FFFDb38294307f9eb3829430 /* geometry/PxTriangle.h */, + FFFDb38294987f9eb3829498 /* geometry/PxTriangleMesh.h */, + FFFDb38295007f9eb3829500 /* geometry/PxTriangleMeshGeometry.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2b8f71087fc42b8f7108 /* common */ = { + FFFBb432b5687f9eb432b568 /* common */ = { isa = PBXGroup; children = ( - FFFD2c0000007fc42c000000 /* src/CmBoxPruning.cpp */, - FFFD2c0000687fc42c000068 /* src/CmCollection.cpp */, - FFFD2c0000d07fc42c0000d0 /* src/CmMathUtils.cpp */, - FFFD2c0001387fc42c000138 /* src/CmPtrTable.cpp */, - FFFD2c0001a07fc42c0001a0 /* src/CmRadixSort.cpp */, - FFFD2c0002087fc42c000208 /* src/CmRadixSortBuffered.cpp */, - FFFD2c0002707fc42c000270 /* src/CmRenderOutput.cpp */, - FFFD2c0002d87fc42c0002d8 /* src/CmVisualization.cpp */, - FFFD2c0003407fc42c000340 /* src/CmBitMap.h */, - FFFD2c0003a87fc42c0003a8 /* src/CmBoxPruning.h */, - FFFD2c0004107fc42c000410 /* src/CmCollection.h */, - FFFD2c0004787fc42c000478 /* src/CmConeLimitHelper.h */, - FFFD2c0004e07fc42c0004e0 /* src/CmFlushPool.h */, - FFFD2c0005487fc42c000548 /* src/CmIDPool.h */, - FFFD2c0005b07fc42c0005b0 /* src/CmIO.h */, - FFFD2c0006187fc42c000618 /* src/CmMatrix34.h */, - FFFD2c0006807fc42c000680 /* src/CmPhysXCommon.h */, - FFFD2c0006e87fc42c0006e8 /* src/CmPool.h */, - FFFD2c0007507fc42c000750 /* src/CmPreallocatingPool.h */, - FFFD2c0007b87fc42c0007b8 /* src/CmPriorityQueue.h */, - FFFD2c0008207fc42c000820 /* src/CmPtrTable.h */, - FFFD2c0008887fc42c000888 /* src/CmQueue.h */, - FFFD2c0008f07fc42c0008f0 /* src/CmRadixSort.h */, - FFFD2c0009587fc42c000958 /* src/CmRadixSortBuffered.h */, - FFFD2c0009c07fc42c0009c0 /* src/CmReaderWriterLock.h */, - FFFD2c000a287fc42c000a28 /* src/CmRefCountable.h */, - FFFD2c000a907fc42c000a90 /* src/CmRenderBuffer.h */, - FFFD2c000af87fc42c000af8 /* src/CmRenderOutput.h */, - FFFD2c000b607fc42c000b60 /* src/CmScaling.h */, - FFFD2c000bc87fc42c000bc8 /* src/CmSpatialVector.h */, - FFFD2c000c307fc42c000c30 /* src/CmTask.h */, - FFFD2c000c987fc42c000c98 /* src/CmTaskPool.h */, - FFFD2c000d007fc42c000d00 /* src/CmTmpMem.h */, - FFFD2c000d687fc42c000d68 /* src/CmTransformUtils.h */, - FFFD2c000dd07fc42c000dd0 /* src/CmUtils.h */, - FFFD2c000e387fc42c000e38 /* src/CmVisualization.h */, + FFFDb49916007f9eb4991600 /* src/CmBoxPruning.cpp */, + FFFDb49916687f9eb4991668 /* src/CmCollection.cpp */, + FFFDb49916d07f9eb49916d0 /* src/CmMathUtils.cpp */, + FFFDb49917387f9eb4991738 /* src/CmPtrTable.cpp */, + FFFDb49917a07f9eb49917a0 /* src/CmRadixSort.cpp */, + FFFDb49918087f9eb4991808 /* src/CmRadixSortBuffered.cpp */, + FFFDb49918707f9eb4991870 /* src/CmRenderOutput.cpp */, + FFFDb49918d87f9eb49918d8 /* src/CmVisualization.cpp */, + FFFDb49919407f9eb4991940 /* src/CmBitMap.h */, + FFFDb49919a87f9eb49919a8 /* src/CmBoxPruning.h */, + FFFDb4991a107f9eb4991a10 /* src/CmCollection.h */, + FFFDb4991a787f9eb4991a78 /* src/CmConeLimitHelper.h */, + FFFDb4991ae07f9eb4991ae0 /* src/CmFlushPool.h */, + FFFDb4991b487f9eb4991b48 /* src/CmIDPool.h */, + FFFDb4991bb07f9eb4991bb0 /* src/CmIO.h */, + FFFDb4991c187f9eb4991c18 /* src/CmMatrix34.h */, + FFFDb4991c807f9eb4991c80 /* src/CmPhysXCommon.h */, + FFFDb4991ce87f9eb4991ce8 /* src/CmPool.h */, + FFFDb4991d507f9eb4991d50 /* src/CmPreallocatingPool.h */, + FFFDb4991db87f9eb4991db8 /* src/CmPriorityQueue.h */, + FFFDb4991e207f9eb4991e20 /* src/CmPtrTable.h */, + FFFDb4991e887f9eb4991e88 /* src/CmQueue.h */, + FFFDb4991ef07f9eb4991ef0 /* src/CmRadixSort.h */, + FFFDb4991f587f9eb4991f58 /* src/CmRadixSortBuffered.h */, + FFFDb4991fc07f9eb4991fc0 /* src/CmReaderWriterLock.h */, + FFFDb49920287f9eb4992028 /* src/CmRefCountable.h */, + FFFDb49920907f9eb4992090 /* src/CmRenderBuffer.h */, + FFFDb49920f87f9eb49920f8 /* src/CmRenderOutput.h */, + FFFDb49921607f9eb4992160 /* src/CmScaling.h */, + FFFDb49921c87f9eb49921c8 /* src/CmSpatialVector.h */, + FFFDb49922307f9eb4992230 /* src/CmTask.h */, + FFFDb49922987f9eb4992298 /* src/CmTaskPool.h */, + FFFDb49923007f9eb4992300 /* src/CmTmpMem.h */, + FFFDb49923687f9eb4992368 /* src/CmTransformUtils.h */, + FFFDb49923d07f9eb49923d0 /* src/CmUtils.h */, + FFFDb49924387f9eb4992438 /* src/CmVisualization.h */, ); name = "common"; sourceTree = SOURCE_ROOT; }; - FFFB2b8f71307fc42b8f7130 /* geomutils */ = { + FFFBb432b5907f9eb432b590 /* geomutils */ = { isa = PBXGroup; children = ( - FFFD2b1bc4007fc42b1bc400 /* headers/GuAxes.h */, - FFFD2b1bc4687fc42b1bc468 /* headers/GuBox.h */, - FFFD2b1bc4d07fc42b1bc4d0 /* headers/GuDistanceSegmentBox.h */, - FFFD2b1bc5387fc42b1bc538 /* headers/GuDistanceSegmentSegment.h */, - FFFD2b1bc5a07fc42b1bc5a0 /* headers/GuIntersectionBoxBox.h */, - FFFD2b1bc6087fc42b1bc608 /* headers/GuIntersectionTriangleBox.h */, - FFFD2b1bc6707fc42b1bc670 /* headers/GuRaycastTests.h */, - FFFD2b1bc6d87fc42b1bc6d8 /* headers/GuSIMDHelpers.h */, - FFFD2b1bc7407fc42b1bc740 /* headers/GuSegment.h */, - FFFD2b1bc7a87fc42b1bc7a8 /* ../../Include/GeomUtils */, - FFFD2b1bc8107fc42b1bc810 /* src/GuBounds.h */, - FFFD2b1bc8787fc42b1bc878 /* src/GuCapsule.h */, - FFFD2b1bc8e07fc42b1bc8e0 /* src/GuCenterExtents.h */, - FFFD2b1bc9487fc42b1bc948 /* src/GuGeometryUnion.h */, - FFFD2b1bc9b07fc42b1bc9b0 /* src/GuInternal.h */, - FFFD2b1bca187fc42b1bca18 /* src/GuMTD.h */, - FFFD2b1bca807fc42b1bca80 /* src/GuMeshFactory.h */, - FFFD2b1bcae87fc42b1bcae8 /* src/GuOverlapTests.h */, - FFFD2b1bcb507fc42b1bcb50 /* src/GuSerialize.h */, - FFFD2b1bcbb87fc42b1bcbb8 /* src/GuSphere.h */, - FFFD2b1bcc207fc42b1bcc20 /* src/GuSweepMTD.h */, - FFFD2b1bcc887fc42b1bcc88 /* src/GuSweepSharedTests.h */, - FFFD2b1bccf07fc42b1bccf0 /* src/GuSweepTests.h */, - FFFD2b1bcd587fc42b1bcd58 /* src/contact/GuContactMethodImpl.h */, - FFFD2b1bcdc07fc42b1bcdc0 /* src/contact/GuContactPolygonPolygon.h */, - FFFD2b1bce287fc42b1bce28 /* src/contact/GuFeatureCode.h */, - FFFD2b1bce907fc42b1bce90 /* src/contact/GuLegacyTraceLineCallback.h */, - FFFD2b1bcef87fc42b1bcef8 /* src/common/GuBarycentricCoordinates.h */, - FFFD2b1bcf607fc42b1bcf60 /* src/common/GuBoxConversion.h */, - FFFD2b1bcfc87fc42b1bcfc8 /* src/common/GuEdgeCache.h */, - FFFD2b1bd0307fc42b1bd030 /* src/common/GuEdgeListData.h */, - FFFD2b1bd0987fc42b1bd098 /* src/common/GuSeparatingAxes.h */, - FFFD2b1bd1007fc42b1bd100 /* src/convex/GuBigConvexData.h */, - FFFD2b1bd1687fc42b1bd168 /* src/convex/GuBigConvexData2.h */, - FFFD2b1bd1d07fc42b1bd1d0 /* src/convex/GuConvexEdgeFlags.h */, - FFFD2b1bd2387fc42b1bd238 /* src/convex/GuConvexHelper.h */, - FFFD2b1bd2a07fc42b1bd2a0 /* src/convex/GuConvexMesh.h */, - FFFD2b1bd3087fc42b1bd308 /* src/convex/GuConvexMeshData.h */, - FFFD2b1bd3707fc42b1bd370 /* src/convex/GuConvexSupportTable.h */, - FFFD2b1bd3d87fc42b1bd3d8 /* src/convex/GuConvexUtilsInternal.h */, - FFFD2b1bd4407fc42b1bd440 /* src/convex/GuCubeIndex.h */, - FFFD2b1bd4a87fc42b1bd4a8 /* src/convex/GuHillClimbing.h */, - FFFD2b1bd5107fc42b1bd510 /* src/convex/GuShapeConvex.h */, - FFFD2b1bd5787fc42b1bd578 /* src/distance/GuDistancePointBox.h */, - FFFD2b1bd5e07fc42b1bd5e0 /* src/distance/GuDistancePointSegment.h */, - FFFD2b1bd6487fc42b1bd648 /* src/distance/GuDistancePointTriangle.h */, - FFFD2b1bd6b07fc42b1bd6b0 /* src/distance/GuDistancePointTriangleSIMD.h */, - FFFD2b1bd7187fc42b1bd718 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, - FFFD2b1bd7807fc42b1bd780 /* src/distance/GuDistanceSegmentTriangle.h */, - FFFD2b1bd7e87fc42b1bd7e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, - FFFD2b1bd8507fc42b1bd850 /* src/sweep/GuSweepBoxBox.h */, - FFFD2b1bd8b87fc42b1bd8b8 /* src/sweep/GuSweepBoxSphere.h */, - FFFD2b1bd9207fc42b1bd920 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, - FFFD2b1bd9887fc42b1bd988 /* src/sweep/GuSweepBoxTriangle_SAT.h */, - FFFD2b1bd9f07fc42b1bd9f0 /* src/sweep/GuSweepCapsuleBox.h */, - FFFD2b1bda587fc42b1bda58 /* src/sweep/GuSweepCapsuleCapsule.h */, - FFFD2b1bdac07fc42b1bdac0 /* src/sweep/GuSweepCapsuleTriangle.h */, - FFFD2b1bdb287fc42b1bdb28 /* src/sweep/GuSweepSphereCapsule.h */, - FFFD2b1bdb907fc42b1bdb90 /* src/sweep/GuSweepSphereSphere.h */, - FFFD2b1bdbf87fc42b1bdbf8 /* src/sweep/GuSweepSphereTriangle.h */, - FFFD2b1bdc607fc42b1bdc60 /* src/sweep/GuSweepTriangleUtils.h */, - FFFD2b1bdcc87fc42b1bdcc8 /* src/gjk/GuEPA.h */, - FFFD2b1bdd307fc42b1bdd30 /* src/gjk/GuEPAFacet.h */, - FFFD2b1bdd987fc42b1bdd98 /* src/gjk/GuGJK.h */, - FFFD2b1bde007fc42b1bde00 /* src/gjk/GuGJKPenetration.h */, - FFFD2b1bde687fc42b1bde68 /* src/gjk/GuGJKRaycast.h */, - FFFD2b1bded07fc42b1bded0 /* src/gjk/GuGJKSimplex.h */, - FFFD2b1bdf387fc42b1bdf38 /* src/gjk/GuGJKTest.h */, - FFFD2b1bdfa07fc42b1bdfa0 /* src/gjk/GuGJKType.h */, - FFFD2b1be0087fc42b1be008 /* src/gjk/GuGJKUtil.h */, - FFFD2b1be0707fc42b1be070 /* src/gjk/GuVecBox.h */, - FFFD2b1be0d87fc42b1be0d8 /* src/gjk/GuVecCapsule.h */, - FFFD2b1be1407fc42b1be140 /* src/gjk/GuVecConvex.h */, - FFFD2b1be1a87fc42b1be1a8 /* src/gjk/GuVecConvexHull.h */, - FFFD2b1be2107fc42b1be210 /* src/gjk/GuVecConvexHullNoScale.h */, - FFFD2b1be2787fc42b1be278 /* src/gjk/GuVecPlane.h */, - FFFD2b1be2e07fc42b1be2e0 /* src/gjk/GuVecShrunkBox.h */, - FFFD2b1be3487fc42b1be348 /* src/gjk/GuVecShrunkConvexHull.h */, - FFFD2b1be3b07fc42b1be3b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, - FFFD2b1be4187fc42b1be418 /* src/gjk/GuVecSphere.h */, - FFFD2b1be4807fc42b1be480 /* src/gjk/GuVecTriangle.h */, - FFFD2b1be4e87fc42b1be4e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, - FFFD2b1be5507fc42b1be550 /* src/intersection/GuIntersectionEdgeEdge.h */, - FFFD2b1be5b87fc42b1be5b8 /* src/intersection/GuIntersectionRay.h */, - FFFD2b1be6207fc42b1be620 /* src/intersection/GuIntersectionRayBox.h */, - FFFD2b1be6887fc42b1be688 /* src/intersection/GuIntersectionRayBoxSIMD.h */, - FFFD2b1be6f07fc42b1be6f0 /* src/intersection/GuIntersectionRayCapsule.h */, - FFFD2b1be7587fc42b1be758 /* src/intersection/GuIntersectionRayPlane.h */, - FFFD2b1be7c07fc42b1be7c0 /* src/intersection/GuIntersectionRaySphere.h */, - FFFD2b1be8287fc42b1be828 /* src/intersection/GuIntersectionRayTriangle.h */, - FFFD2b1be8907fc42b1be890 /* src/intersection/GuIntersectionSphereBox.h */, - FFFD2b1be8f87fc42b1be8f8 /* src/mesh/GuBV32.h */, - FFFD2b1be9607fc42b1be960 /* src/mesh/GuBV32Build.h */, - FFFD2b1be9c87fc42b1be9c8 /* src/mesh/GuBV4.h */, - FFFD2b1bea307fc42b1bea30 /* src/mesh/GuBV4Build.h */, - FFFD2b1bea987fc42b1bea98 /* src/mesh/GuBV4Settings.h */, - FFFD2b1beb007fc42b1beb00 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, - FFFD2b1beb687fc42b1beb68 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, - FFFD2b1bebd07fc42b1bebd0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, - FFFD2b1bec387fc42b1bec38 /* src/mesh/GuBV4_BoxSweep_Internal.h */, - FFFD2b1beca07fc42b1beca0 /* src/mesh/GuBV4_BoxSweep_Params.h */, - FFFD2b1bed087fc42b1bed08 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, - FFFD2b1bed707fc42b1bed70 /* src/mesh/GuBV4_Common.h */, - FFFD2b1bedd87fc42b1bedd8 /* src/mesh/GuBV4_Internal.h */, - FFFD2b1bee407fc42b1bee40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, - FFFD2b1beea87fc42b1beea8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, - FFFD2b1bef107fc42b1bef10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, - FFFD2b1bef787fc42b1bef78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, - FFFD2b1befe07fc42b1befe0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, - FFFD2b1bf0487fc42b1bf048 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, - FFFD2b1bf0b07fc42b1bf0b0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, - FFFD2b1bf1187fc42b1bf118 /* src/mesh/GuBV4_Slabs.h */, - FFFD2b1bf1807fc42b1bf180 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, - FFFD2b1bf1e87fc42b1bf1e8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, - FFFD2b1bf2507fc42b1bf250 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, - FFFD2b1bf2b87fc42b1bf2b8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, - FFFD2b1bf3207fc42b1bf320 /* src/mesh/GuBVConstants.h */, - FFFD2b1bf3887fc42b1bf388 /* src/mesh/GuMeshData.h */, - FFFD2b1bf3f07fc42b1bf3f0 /* src/mesh/GuMidphaseInterface.h */, - FFFD2b1bf4587fc42b1bf458 /* src/mesh/GuRTree.h */, - FFFD2b1bf4c07fc42b1bf4c0 /* src/mesh/GuSweepConvexTri.h */, - FFFD2b1bf5287fc42b1bf528 /* src/mesh/GuSweepMesh.h */, - FFFD2b1bf5907fc42b1bf590 /* src/mesh/GuTriangle32.h */, - FFFD2b1bf5f87fc42b1bf5f8 /* src/mesh/GuTriangleCache.h */, - FFFD2b1bf6607fc42b1bf660 /* src/mesh/GuTriangleMesh.h */, - FFFD2b1bf6c87fc42b1bf6c8 /* src/mesh/GuTriangleMeshBV4.h */, - FFFD2b1bf7307fc42b1bf730 /* src/mesh/GuTriangleMeshRTree.h */, - FFFD2b1bf7987fc42b1bf798 /* src/mesh/GuTriangleVertexPointers.h */, - FFFD2b1bf8007fc42b1bf800 /* src/hf/GuEntityReport.h */, - FFFD2b1bf8687fc42b1bf868 /* src/hf/GuHeightField.h */, - FFFD2b1bf8d07fc42b1bf8d0 /* src/hf/GuHeightFieldData.h */, - FFFD2b1bf9387fc42b1bf938 /* src/hf/GuHeightFieldUtil.h */, - FFFD2b1bf9a07fc42b1bf9a0 /* src/pcm/GuPCMContactConvexCommon.h */, - FFFD2b1bfa087fc42b1bfa08 /* src/pcm/GuPCMContactGen.h */, - FFFD2b1bfa707fc42b1bfa70 /* src/pcm/GuPCMContactGenUtil.h */, - FFFD2b1bfad87fc42b1bfad8 /* src/pcm/GuPCMContactMeshCallback.h */, - FFFD2b1bfb407fc42b1bfb40 /* src/pcm/GuPCMShapeConvex.h */, - FFFD2b1bfba87fc42b1bfba8 /* src/pcm/GuPCMTriangleContactGen.h */, - FFFD2b1bfc107fc42b1bfc10 /* src/pcm/GuPersistentContactManifold.h */, - FFFD2b1bfc787fc42b1bfc78 /* src/ccd/GuCCDSweepConvexMesh.h */, - FFFD2b1bfce07fc42b1bfce0 /* src/GuBounds.cpp */, - FFFD2b1bfd487fc42b1bfd48 /* src/GuBox.cpp */, - FFFD2b1bfdb07fc42b1bfdb0 /* src/GuCCTSweepTests.cpp */, - FFFD2b1bfe187fc42b1bfe18 /* src/GuCapsule.cpp */, - FFFD2b1bfe807fc42b1bfe80 /* src/GuGeometryQuery.cpp */, - FFFD2b1bfee87fc42b1bfee8 /* src/GuGeometryUnion.cpp */, - FFFD2b1bff507fc42b1bff50 /* src/GuInternal.cpp */, - FFFD2b1bffb87fc42b1bffb8 /* src/GuMTD.cpp */, - FFFD2b1c00207fc42b1c0020 /* src/GuMeshFactory.cpp */, - FFFD2b1c00887fc42b1c0088 /* src/GuMetaData.cpp */, - FFFD2b1c00f07fc42b1c00f0 /* src/GuOverlapTests.cpp */, - FFFD2b1c01587fc42b1c0158 /* src/GuRaycastTests.cpp */, - FFFD2b1c01c07fc42b1c01c0 /* src/GuSerialize.cpp */, - FFFD2b1c02287fc42b1c0228 /* src/GuSweepMTD.cpp */, - FFFD2b1c02907fc42b1c0290 /* src/GuSweepSharedTests.cpp */, - FFFD2b1c02f87fc42b1c02f8 /* src/GuSweepTests.cpp */, - FFFD2b1c03607fc42b1c0360 /* src/contact/GuContactBoxBox.cpp */, - FFFD2b1c03c87fc42b1c03c8 /* src/contact/GuContactCapsuleBox.cpp */, - FFFD2b1c04307fc42b1c0430 /* src/contact/GuContactCapsuleCapsule.cpp */, - FFFD2b1c04987fc42b1c0498 /* src/contact/GuContactCapsuleConvex.cpp */, - FFFD2b1c05007fc42b1c0500 /* src/contact/GuContactCapsuleMesh.cpp */, - FFFD2b1c05687fc42b1c0568 /* src/contact/GuContactConvexConvex.cpp */, - FFFD2b1c05d07fc42b1c05d0 /* src/contact/GuContactConvexMesh.cpp */, - FFFD2b1c06387fc42b1c0638 /* src/contact/GuContactPlaneBox.cpp */, - FFFD2b1c06a07fc42b1c06a0 /* src/contact/GuContactPlaneCapsule.cpp */, - FFFD2b1c07087fc42b1c0708 /* src/contact/GuContactPlaneConvex.cpp */, - FFFD2b1c07707fc42b1c0770 /* src/contact/GuContactPolygonPolygon.cpp */, - FFFD2b1c07d87fc42b1c07d8 /* src/contact/GuContactSphereBox.cpp */, - FFFD2b1c08407fc42b1c0840 /* src/contact/GuContactSphereCapsule.cpp */, - FFFD2b1c08a87fc42b1c08a8 /* src/contact/GuContactSphereMesh.cpp */, - FFFD2b1c09107fc42b1c0910 /* src/contact/GuContactSpherePlane.cpp */, - FFFD2b1c09787fc42b1c0978 /* src/contact/GuContactSphereSphere.cpp */, - FFFD2b1c09e07fc42b1c09e0 /* src/contact/GuFeatureCode.cpp */, - FFFD2b1c0a487fc42b1c0a48 /* src/contact/GuLegacyContactBoxHeightField.cpp */, - FFFD2b1c0ab07fc42b1c0ab0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, - FFFD2b1c0b187fc42b1c0b18 /* src/contact/GuLegacyContactConvexHeightField.cpp */, - FFFD2b1c0b807fc42b1c0b80 /* src/contact/GuLegacyContactSphereHeightField.cpp */, - FFFD2b1c0be87fc42b1c0be8 /* src/common/GuBarycentricCoordinates.cpp */, - FFFD2b1c0c507fc42b1c0c50 /* src/common/GuSeparatingAxes.cpp */, - FFFD2b1c0cb87fc42b1c0cb8 /* src/convex/GuBigConvexData.cpp */, - FFFD2b1c0d207fc42b1c0d20 /* src/convex/GuConvexHelper.cpp */, - FFFD2b1c0d887fc42b1c0d88 /* src/convex/GuConvexMesh.cpp */, - FFFD2b1c0df07fc42b1c0df0 /* src/convex/GuConvexSupportTable.cpp */, - FFFD2b1c0e587fc42b1c0e58 /* src/convex/GuConvexUtilsInternal.cpp */, - FFFD2b1c0ec07fc42b1c0ec0 /* src/convex/GuHillClimbing.cpp */, - FFFD2b1c0f287fc42b1c0f28 /* src/convex/GuShapeConvex.cpp */, - FFFD2b1c0f907fc42b1c0f90 /* src/distance/GuDistancePointBox.cpp */, - FFFD2b1c0ff87fc42b1c0ff8 /* src/distance/GuDistancePointTriangle.cpp */, - FFFD2b1c10607fc42b1c1060 /* src/distance/GuDistanceSegmentBox.cpp */, - FFFD2b1c10c87fc42b1c10c8 /* src/distance/GuDistanceSegmentSegment.cpp */, - FFFD2b1c11307fc42b1c1130 /* src/distance/GuDistanceSegmentTriangle.cpp */, - FFFD2b1c11987fc42b1c1198 /* src/sweep/GuSweepBoxBox.cpp */, - FFFD2b1c12007fc42b1c1200 /* src/sweep/GuSweepBoxSphere.cpp */, - FFFD2b1c12687fc42b1c1268 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, - FFFD2b1c12d07fc42b1c12d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, - FFFD2b1c13387fc42b1c1338 /* src/sweep/GuSweepCapsuleBox.cpp */, - FFFD2b1c13a07fc42b1c13a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, - FFFD2b1c14087fc42b1c1408 /* src/sweep/GuSweepCapsuleTriangle.cpp */, - FFFD2b1c14707fc42b1c1470 /* src/sweep/GuSweepSphereCapsule.cpp */, - FFFD2b1c14d87fc42b1c14d8 /* src/sweep/GuSweepSphereSphere.cpp */, - FFFD2b1c15407fc42b1c1540 /* src/sweep/GuSweepSphereTriangle.cpp */, - FFFD2b1c15a87fc42b1c15a8 /* src/sweep/GuSweepTriangleUtils.cpp */, - FFFD2b1c16107fc42b1c1610 /* src/gjk/GuEPA.cpp */, - FFFD2b1c16787fc42b1c1678 /* src/gjk/GuGJKSimplex.cpp */, - FFFD2b1c16e07fc42b1c16e0 /* src/gjk/GuGJKTest.cpp */, - FFFD2b1c17487fc42b1c1748 /* src/intersection/GuIntersectionBoxBox.cpp */, - FFFD2b1c17b07fc42b1c17b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, - FFFD2b1c18187fc42b1c1818 /* src/intersection/GuIntersectionEdgeEdge.cpp */, - FFFD2b1c18807fc42b1c1880 /* src/intersection/GuIntersectionRayBox.cpp */, - FFFD2b1c18e87fc42b1c18e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, - FFFD2b1c19507fc42b1c1950 /* src/intersection/GuIntersectionRaySphere.cpp */, - FFFD2b1c19b87fc42b1c19b8 /* src/intersection/GuIntersectionSphereBox.cpp */, - FFFD2b1c1a207fc42b1c1a20 /* src/intersection/GuIntersectionTriangleBox.cpp */, - FFFD2b1c1a887fc42b1c1a88 /* src/mesh/GuBV32.cpp */, - FFFD2b1c1af07fc42b1c1af0 /* src/mesh/GuBV32Build.cpp */, - FFFD2b1c1b587fc42b1c1b58 /* src/mesh/GuBV4.cpp */, - FFFD2b1c1bc07fc42b1c1bc0 /* src/mesh/GuBV4Build.cpp */, - FFFD2b1c1c287fc42b1c1c28 /* src/mesh/GuBV4_AABBSweep.cpp */, - FFFD2b1c1c907fc42b1c1c90 /* src/mesh/GuBV4_BoxOverlap.cpp */, - FFFD2b1c1cf87fc42b1c1cf8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, - FFFD2b1c1d607fc42b1c1d60 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, - FFFD2b1c1dc87fc42b1c1dc8 /* src/mesh/GuBV4_OBBSweep.cpp */, - FFFD2b1c1e307fc42b1c1e30 /* src/mesh/GuBV4_Raycast.cpp */, - FFFD2b1c1e987fc42b1c1e98 /* src/mesh/GuBV4_SphereOverlap.cpp */, - FFFD2b1c1f007fc42b1c1f00 /* src/mesh/GuBV4_SphereSweep.cpp */, - FFFD2b1c1f687fc42b1c1f68 /* src/mesh/GuMeshQuery.cpp */, - FFFD2b1c1fd07fc42b1c1fd0 /* src/mesh/GuMidphaseBV4.cpp */, - FFFD2b1c20387fc42b1c2038 /* src/mesh/GuMidphaseRTree.cpp */, - FFFD2b1c20a07fc42b1c20a0 /* src/mesh/GuOverlapTestsMesh.cpp */, - FFFD2b1c21087fc42b1c2108 /* src/mesh/GuRTree.cpp */, - FFFD2b1c21707fc42b1c2170 /* src/mesh/GuRTreeQueries.cpp */, - FFFD2b1c21d87fc42b1c21d8 /* src/mesh/GuSweepsMesh.cpp */, - FFFD2b1c22407fc42b1c2240 /* src/mesh/GuTriangleMesh.cpp */, - FFFD2b1c22a87fc42b1c22a8 /* src/mesh/GuTriangleMeshBV4.cpp */, - FFFD2b1c23107fc42b1c2310 /* src/mesh/GuTriangleMeshRTree.cpp */, - FFFD2b1c23787fc42b1c2378 /* src/hf/GuHeightField.cpp */, - FFFD2b1c23e07fc42b1c23e0 /* src/hf/GuHeightFieldUtil.cpp */, - FFFD2b1c24487fc42b1c2448 /* src/hf/GuOverlapTestsHF.cpp */, - FFFD2b1c24b07fc42b1c24b0 /* src/hf/GuSweepsHF.cpp */, - FFFD2b1c25187fc42b1c2518 /* src/pcm/GuPCMContactBoxBox.cpp */, - FFFD2b1c25807fc42b1c2580 /* src/pcm/GuPCMContactBoxConvex.cpp */, - FFFD2b1c25e87fc42b1c25e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, - FFFD2b1c26507fc42b1c2650 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, - FFFD2b1c26b87fc42b1c26b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, - FFFD2b1c27207fc42b1c2720 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, - FFFD2b1c27887fc42b1c2788 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, - FFFD2b1c27f07fc42b1c27f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, - FFFD2b1c28587fc42b1c2858 /* src/pcm/GuPCMContactConvexConvex.cpp */, - FFFD2b1c28c07fc42b1c28c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, - FFFD2b1c29287fc42b1c2928 /* src/pcm/GuPCMContactConvexMesh.cpp */, - FFFD2b1c29907fc42b1c2990 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, - FFFD2b1c29f87fc42b1c29f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, - FFFD2b1c2a607fc42b1c2a60 /* src/pcm/GuPCMContactPlaneBox.cpp */, - FFFD2b1c2ac87fc42b1c2ac8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, - FFFD2b1c2b307fc42b1c2b30 /* src/pcm/GuPCMContactPlaneConvex.cpp */, - FFFD2b1c2b987fc42b1c2b98 /* src/pcm/GuPCMContactSphereBox.cpp */, - FFFD2b1c2c007fc42b1c2c00 /* src/pcm/GuPCMContactSphereCapsule.cpp */, - FFFD2b1c2c687fc42b1c2c68 /* src/pcm/GuPCMContactSphereConvex.cpp */, - FFFD2b1c2cd07fc42b1c2cd0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, - FFFD2b1c2d387fc42b1c2d38 /* src/pcm/GuPCMContactSphereMesh.cpp */, - FFFD2b1c2da07fc42b1c2da0 /* src/pcm/GuPCMContactSpherePlane.cpp */, - FFFD2b1c2e087fc42b1c2e08 /* src/pcm/GuPCMContactSphereSphere.cpp */, - FFFD2b1c2e707fc42b1c2e70 /* src/pcm/GuPCMShapeConvex.cpp */, - FFFD2b1c2ed87fc42b1c2ed8 /* src/pcm/GuPCMTriangleContactGen.cpp */, - FFFD2b1c2f407fc42b1c2f40 /* src/pcm/GuPersistentContactManifold.cpp */, - FFFD2b1c2fa87fc42b1c2fa8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, - FFFD2b1c30107fc42b1c3010 /* src/ccd/GuCCDSweepPrimitives.cpp */, + FFFDb381b8007f9eb381b800 /* headers/GuAxes.h */, + FFFDb381b8687f9eb381b868 /* headers/GuBox.h */, + FFFDb381b8d07f9eb381b8d0 /* headers/GuDistanceSegmentBox.h */, + FFFDb381b9387f9eb381b938 /* headers/GuDistanceSegmentSegment.h */, + FFFDb381b9a07f9eb381b9a0 /* headers/GuIntersectionBoxBox.h */, + FFFDb381ba087f9eb381ba08 /* headers/GuIntersectionTriangleBox.h */, + FFFDb381ba707f9eb381ba70 /* headers/GuRaycastTests.h */, + FFFDb381bad87f9eb381bad8 /* headers/GuSIMDHelpers.h */, + FFFDb381bb407f9eb381bb40 /* headers/GuSegment.h */, + FFFDb381bba87f9eb381bba8 /* ../../Include/GeomUtils */, + FFFDb381bc107f9eb381bc10 /* src/GuBounds.h */, + FFFDb381bc787f9eb381bc78 /* src/GuCapsule.h */, + FFFDb381bce07f9eb381bce0 /* src/GuCenterExtents.h */, + FFFDb381bd487f9eb381bd48 /* src/GuGeometryUnion.h */, + FFFDb381bdb07f9eb381bdb0 /* src/GuInternal.h */, + FFFDb381be187f9eb381be18 /* src/GuMTD.h */, + FFFDb381be807f9eb381be80 /* src/GuMeshFactory.h */, + FFFDb381bee87f9eb381bee8 /* src/GuOverlapTests.h */, + FFFDb381bf507f9eb381bf50 /* src/GuSerialize.h */, + FFFDb381bfb87f9eb381bfb8 /* src/GuSphere.h */, + FFFDb381c0207f9eb381c020 /* src/GuSweepMTD.h */, + FFFDb381c0887f9eb381c088 /* src/GuSweepSharedTests.h */, + FFFDb381c0f07f9eb381c0f0 /* src/GuSweepTests.h */, + FFFDb381c1587f9eb381c158 /* src/contact/GuContactMethodImpl.h */, + FFFDb381c1c07f9eb381c1c0 /* src/contact/GuContactPolygonPolygon.h */, + FFFDb381c2287f9eb381c228 /* src/contact/GuFeatureCode.h */, + FFFDb381c2907f9eb381c290 /* src/contact/GuLegacyTraceLineCallback.h */, + FFFDb381c2f87f9eb381c2f8 /* src/common/GuBarycentricCoordinates.h */, + FFFDb381c3607f9eb381c360 /* src/common/GuBoxConversion.h */, + FFFDb381c3c87f9eb381c3c8 /* src/common/GuEdgeCache.h */, + FFFDb381c4307f9eb381c430 /* src/common/GuEdgeListData.h */, + FFFDb381c4987f9eb381c498 /* src/common/GuSeparatingAxes.h */, + FFFDb381c5007f9eb381c500 /* src/convex/GuBigConvexData.h */, + FFFDb381c5687f9eb381c568 /* src/convex/GuBigConvexData2.h */, + FFFDb381c5d07f9eb381c5d0 /* src/convex/GuConvexEdgeFlags.h */, + FFFDb381c6387f9eb381c638 /* src/convex/GuConvexHelper.h */, + FFFDb381c6a07f9eb381c6a0 /* src/convex/GuConvexMesh.h */, + FFFDb381c7087f9eb381c708 /* src/convex/GuConvexMeshData.h */, + FFFDb381c7707f9eb381c770 /* src/convex/GuConvexSupportTable.h */, + FFFDb381c7d87f9eb381c7d8 /* src/convex/GuConvexUtilsInternal.h */, + FFFDb381c8407f9eb381c840 /* src/convex/GuCubeIndex.h */, + FFFDb381c8a87f9eb381c8a8 /* src/convex/GuHillClimbing.h */, + FFFDb381c9107f9eb381c910 /* src/convex/GuShapeConvex.h */, + FFFDb381c9787f9eb381c978 /* src/distance/GuDistancePointBox.h */, + FFFDb381c9e07f9eb381c9e0 /* src/distance/GuDistancePointSegment.h */, + FFFDb381ca487f9eb381ca48 /* src/distance/GuDistancePointTriangle.h */, + FFFDb381cab07f9eb381cab0 /* src/distance/GuDistancePointTriangleSIMD.h */, + FFFDb381cb187f9eb381cb18 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, + FFFDb381cb807f9eb381cb80 /* src/distance/GuDistanceSegmentTriangle.h */, + FFFDb381cbe87f9eb381cbe8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, + FFFDb381cc507f9eb381cc50 /* src/sweep/GuSweepBoxBox.h */, + FFFDb381ccb87f9eb381ccb8 /* src/sweep/GuSweepBoxSphere.h */, + FFFDb381cd207f9eb381cd20 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, + FFFDb381cd887f9eb381cd88 /* src/sweep/GuSweepBoxTriangle_SAT.h */, + FFFDb381cdf07f9eb381cdf0 /* src/sweep/GuSweepCapsuleBox.h */, + FFFDb381ce587f9eb381ce58 /* src/sweep/GuSweepCapsuleCapsule.h */, + FFFDb381cec07f9eb381cec0 /* src/sweep/GuSweepCapsuleTriangle.h */, + FFFDb381cf287f9eb381cf28 /* src/sweep/GuSweepSphereCapsule.h */, + FFFDb381cf907f9eb381cf90 /* src/sweep/GuSweepSphereSphere.h */, + FFFDb381cff87f9eb381cff8 /* src/sweep/GuSweepSphereTriangle.h */, + FFFDb381d0607f9eb381d060 /* src/sweep/GuSweepTriangleUtils.h */, + FFFDb381d0c87f9eb381d0c8 /* src/gjk/GuEPA.h */, + FFFDb381d1307f9eb381d130 /* src/gjk/GuEPAFacet.h */, + FFFDb381d1987f9eb381d198 /* src/gjk/GuGJK.h */, + FFFDb381d2007f9eb381d200 /* src/gjk/GuGJKPenetration.h */, + FFFDb381d2687f9eb381d268 /* src/gjk/GuGJKRaycast.h */, + FFFDb381d2d07f9eb381d2d0 /* src/gjk/GuGJKSimplex.h */, + FFFDb381d3387f9eb381d338 /* src/gjk/GuGJKTest.h */, + FFFDb381d3a07f9eb381d3a0 /* src/gjk/GuGJKType.h */, + FFFDb381d4087f9eb381d408 /* src/gjk/GuGJKUtil.h */, + FFFDb381d4707f9eb381d470 /* src/gjk/GuVecBox.h */, + FFFDb381d4d87f9eb381d4d8 /* src/gjk/GuVecCapsule.h */, + FFFDb381d5407f9eb381d540 /* src/gjk/GuVecConvex.h */, + FFFDb381d5a87f9eb381d5a8 /* src/gjk/GuVecConvexHull.h */, + FFFDb381d6107f9eb381d610 /* src/gjk/GuVecConvexHullNoScale.h */, + FFFDb381d6787f9eb381d678 /* src/gjk/GuVecPlane.h */, + FFFDb381d6e07f9eb381d6e0 /* src/gjk/GuVecShrunkBox.h */, + FFFDb381d7487f9eb381d748 /* src/gjk/GuVecShrunkConvexHull.h */, + FFFDb381d7b07f9eb381d7b0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, + FFFDb381d8187f9eb381d818 /* src/gjk/GuVecSphere.h */, + FFFDb381d8807f9eb381d880 /* src/gjk/GuVecTriangle.h */, + FFFDb381d8e87f9eb381d8e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, + FFFDb381d9507f9eb381d950 /* src/intersection/GuIntersectionEdgeEdge.h */, + FFFDb381d9b87f9eb381d9b8 /* src/intersection/GuIntersectionRay.h */, + FFFDb381da207f9eb381da20 /* src/intersection/GuIntersectionRayBox.h */, + FFFDb381da887f9eb381da88 /* src/intersection/GuIntersectionRayBoxSIMD.h */, + FFFDb381daf07f9eb381daf0 /* src/intersection/GuIntersectionRayCapsule.h */, + FFFDb381db587f9eb381db58 /* src/intersection/GuIntersectionRayPlane.h */, + FFFDb381dbc07f9eb381dbc0 /* src/intersection/GuIntersectionRaySphere.h */, + FFFDb381dc287f9eb381dc28 /* src/intersection/GuIntersectionRayTriangle.h */, + FFFDb381dc907f9eb381dc90 /* src/intersection/GuIntersectionSphereBox.h */, + FFFDb381dcf87f9eb381dcf8 /* src/mesh/GuBV32.h */, + FFFDb381dd607f9eb381dd60 /* src/mesh/GuBV32Build.h */, + FFFDb381ddc87f9eb381ddc8 /* src/mesh/GuBV4.h */, + FFFDb381de307f9eb381de30 /* src/mesh/GuBV4Build.h */, + FFFDb381de987f9eb381de98 /* src/mesh/GuBV4Settings.h */, + FFFDb381df007f9eb381df00 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, + FFFDb381df687f9eb381df68 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, + FFFDb381dfd07f9eb381dfd0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, + FFFDb381e0387f9eb381e038 /* src/mesh/GuBV4_BoxSweep_Internal.h */, + FFFDb381e0a07f9eb381e0a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, + FFFDb381e1087f9eb381e108 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, + FFFDb381e1707f9eb381e170 /* src/mesh/GuBV4_Common.h */, + FFFDb381e1d87f9eb381e1d8 /* src/mesh/GuBV4_Internal.h */, + FFFDb381e2407f9eb381e240 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, + FFFDb381e2a87f9eb381e2a8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, + FFFDb381e3107f9eb381e310 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, + FFFDb381e3787f9eb381e378 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, + FFFDb381e3e07f9eb381e3e0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, + FFFDb381e4487f9eb381e448 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, + FFFDb381e4b07f9eb381e4b0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, + FFFDb381e5187f9eb381e518 /* src/mesh/GuBV4_Slabs.h */, + FFFDb381e5807f9eb381e580 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, + FFFDb381e5e87f9eb381e5e8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, + FFFDb381e6507f9eb381e650 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, + FFFDb381e6b87f9eb381e6b8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, + FFFDb381e7207f9eb381e720 /* src/mesh/GuBVConstants.h */, + FFFDb381e7887f9eb381e788 /* src/mesh/GuMeshData.h */, + FFFDb381e7f07f9eb381e7f0 /* src/mesh/GuMidphaseInterface.h */, + FFFDb381e8587f9eb381e858 /* src/mesh/GuRTree.h */, + FFFDb381e8c07f9eb381e8c0 /* src/mesh/GuSweepConvexTri.h */, + FFFDb381e9287f9eb381e928 /* src/mesh/GuSweepMesh.h */, + FFFDb381e9907f9eb381e990 /* src/mesh/GuTriangle32.h */, + FFFDb381e9f87f9eb381e9f8 /* src/mesh/GuTriangleCache.h */, + FFFDb381ea607f9eb381ea60 /* src/mesh/GuTriangleMesh.h */, + FFFDb381eac87f9eb381eac8 /* src/mesh/GuTriangleMeshBV4.h */, + FFFDb381eb307f9eb381eb30 /* src/mesh/GuTriangleMeshRTree.h */, + FFFDb381eb987f9eb381eb98 /* src/mesh/GuTriangleVertexPointers.h */, + FFFDb381ec007f9eb381ec00 /* src/hf/GuEntityReport.h */, + FFFDb381ec687f9eb381ec68 /* src/hf/GuHeightField.h */, + FFFDb381ecd07f9eb381ecd0 /* src/hf/GuHeightFieldData.h */, + FFFDb381ed387f9eb381ed38 /* src/hf/GuHeightFieldUtil.h */, + FFFDb381eda07f9eb381eda0 /* src/pcm/GuPCMContactConvexCommon.h */, + FFFDb381ee087f9eb381ee08 /* src/pcm/GuPCMContactGen.h */, + FFFDb381ee707f9eb381ee70 /* src/pcm/GuPCMContactGenUtil.h */, + FFFDb381eed87f9eb381eed8 /* src/pcm/GuPCMContactMeshCallback.h */, + FFFDb381ef407f9eb381ef40 /* src/pcm/GuPCMShapeConvex.h */, + FFFDb381efa87f9eb381efa8 /* src/pcm/GuPCMTriangleContactGen.h */, + FFFDb381f0107f9eb381f010 /* src/pcm/GuPersistentContactManifold.h */, + FFFDb381f0787f9eb381f078 /* src/ccd/GuCCDSweepConvexMesh.h */, + FFFDb381f0e07f9eb381f0e0 /* src/GuBounds.cpp */, + FFFDb381f1487f9eb381f148 /* src/GuBox.cpp */, + FFFDb381f1b07f9eb381f1b0 /* src/GuCCTSweepTests.cpp */, + FFFDb381f2187f9eb381f218 /* src/GuCapsule.cpp */, + FFFDb381f2807f9eb381f280 /* src/GuGeometryQuery.cpp */, + FFFDb381f2e87f9eb381f2e8 /* src/GuGeometryUnion.cpp */, + FFFDb381f3507f9eb381f350 /* src/GuInternal.cpp */, + FFFDb381f3b87f9eb381f3b8 /* src/GuMTD.cpp */, + FFFDb381f4207f9eb381f420 /* src/GuMeshFactory.cpp */, + FFFDb381f4887f9eb381f488 /* src/GuMetaData.cpp */, + FFFDb381f4f07f9eb381f4f0 /* src/GuOverlapTests.cpp */, + FFFDb381f5587f9eb381f558 /* src/GuRaycastTests.cpp */, + FFFDb381f5c07f9eb381f5c0 /* src/GuSerialize.cpp */, + FFFDb381f6287f9eb381f628 /* src/GuSweepMTD.cpp */, + FFFDb381f6907f9eb381f690 /* src/GuSweepSharedTests.cpp */, + FFFDb381f6f87f9eb381f6f8 /* src/GuSweepTests.cpp */, + FFFDb381f7607f9eb381f760 /* src/contact/GuContactBoxBox.cpp */, + FFFDb381f7c87f9eb381f7c8 /* src/contact/GuContactCapsuleBox.cpp */, + FFFDb381f8307f9eb381f830 /* src/contact/GuContactCapsuleCapsule.cpp */, + FFFDb381f8987f9eb381f898 /* src/contact/GuContactCapsuleConvex.cpp */, + FFFDb381f9007f9eb381f900 /* src/contact/GuContactCapsuleMesh.cpp */, + FFFDb381f9687f9eb381f968 /* src/contact/GuContactConvexConvex.cpp */, + FFFDb381f9d07f9eb381f9d0 /* src/contact/GuContactConvexMesh.cpp */, + FFFDb381fa387f9eb381fa38 /* src/contact/GuContactPlaneBox.cpp */, + FFFDb381faa07f9eb381faa0 /* src/contact/GuContactPlaneCapsule.cpp */, + FFFDb381fb087f9eb381fb08 /* src/contact/GuContactPlaneConvex.cpp */, + FFFDb381fb707f9eb381fb70 /* src/contact/GuContactPolygonPolygon.cpp */, + FFFDb381fbd87f9eb381fbd8 /* src/contact/GuContactSphereBox.cpp */, + FFFDb381fc407f9eb381fc40 /* src/contact/GuContactSphereCapsule.cpp */, + FFFDb381fca87f9eb381fca8 /* src/contact/GuContactSphereMesh.cpp */, + FFFDb381fd107f9eb381fd10 /* src/contact/GuContactSpherePlane.cpp */, + FFFDb381fd787f9eb381fd78 /* src/contact/GuContactSphereSphere.cpp */, + FFFDb381fde07f9eb381fde0 /* src/contact/GuFeatureCode.cpp */, + FFFDb381fe487f9eb381fe48 /* src/contact/GuLegacyContactBoxHeightField.cpp */, + FFFDb381feb07f9eb381feb0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, + FFFDb381ff187f9eb381ff18 /* src/contact/GuLegacyContactConvexHeightField.cpp */, + FFFDb381ff807f9eb381ff80 /* src/contact/GuLegacyContactSphereHeightField.cpp */, + FFFDb381ffe87f9eb381ffe8 /* src/common/GuBarycentricCoordinates.cpp */, + FFFDb38200507f9eb3820050 /* src/common/GuSeparatingAxes.cpp */, + FFFDb38200b87f9eb38200b8 /* src/convex/GuBigConvexData.cpp */, + FFFDb38201207f9eb3820120 /* src/convex/GuConvexHelper.cpp */, + FFFDb38201887f9eb3820188 /* src/convex/GuConvexMesh.cpp */, + FFFDb38201f07f9eb38201f0 /* src/convex/GuConvexSupportTable.cpp */, + FFFDb38202587f9eb3820258 /* src/convex/GuConvexUtilsInternal.cpp */, + FFFDb38202c07f9eb38202c0 /* src/convex/GuHillClimbing.cpp */, + FFFDb38203287f9eb3820328 /* src/convex/GuShapeConvex.cpp */, + FFFDb38203907f9eb3820390 /* src/distance/GuDistancePointBox.cpp */, + FFFDb38203f87f9eb38203f8 /* src/distance/GuDistancePointTriangle.cpp */, + FFFDb38204607f9eb3820460 /* src/distance/GuDistanceSegmentBox.cpp */, + FFFDb38204c87f9eb38204c8 /* src/distance/GuDistanceSegmentSegment.cpp */, + FFFDb38205307f9eb3820530 /* src/distance/GuDistanceSegmentTriangle.cpp */, + FFFDb38205987f9eb3820598 /* src/sweep/GuSweepBoxBox.cpp */, + FFFDb38206007f9eb3820600 /* src/sweep/GuSweepBoxSphere.cpp */, + FFFDb38206687f9eb3820668 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, + FFFDb38206d07f9eb38206d0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, + FFFDb38207387f9eb3820738 /* src/sweep/GuSweepCapsuleBox.cpp */, + FFFDb38207a07f9eb38207a0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, + FFFDb38208087f9eb3820808 /* src/sweep/GuSweepCapsuleTriangle.cpp */, + FFFDb38208707f9eb3820870 /* src/sweep/GuSweepSphereCapsule.cpp */, + FFFDb38208d87f9eb38208d8 /* src/sweep/GuSweepSphereSphere.cpp */, + FFFDb38209407f9eb3820940 /* src/sweep/GuSweepSphereTriangle.cpp */, + FFFDb38209a87f9eb38209a8 /* src/sweep/GuSweepTriangleUtils.cpp */, + FFFDb3820a107f9eb3820a10 /* src/gjk/GuEPA.cpp */, + FFFDb3820a787f9eb3820a78 /* src/gjk/GuGJKSimplex.cpp */, + FFFDb3820ae07f9eb3820ae0 /* src/gjk/GuGJKTest.cpp */, + FFFDb3820b487f9eb3820b48 /* src/intersection/GuIntersectionBoxBox.cpp */, + FFFDb3820bb07f9eb3820bb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, + FFFDb3820c187f9eb3820c18 /* src/intersection/GuIntersectionEdgeEdge.cpp */, + FFFDb3820c807f9eb3820c80 /* src/intersection/GuIntersectionRayBox.cpp */, + FFFDb3820ce87f9eb3820ce8 /* src/intersection/GuIntersectionRayCapsule.cpp */, + FFFDb3820d507f9eb3820d50 /* src/intersection/GuIntersectionRaySphere.cpp */, + FFFDb3820db87f9eb3820db8 /* src/intersection/GuIntersectionSphereBox.cpp */, + FFFDb3820e207f9eb3820e20 /* src/intersection/GuIntersectionTriangleBox.cpp */, + FFFDb3820e887f9eb3820e88 /* src/mesh/GuBV32.cpp */, + FFFDb3820ef07f9eb3820ef0 /* src/mesh/GuBV32Build.cpp */, + FFFDb3820f587f9eb3820f58 /* src/mesh/GuBV4.cpp */, + FFFDb3820fc07f9eb3820fc0 /* src/mesh/GuBV4Build.cpp */, + FFFDb38210287f9eb3821028 /* src/mesh/GuBV4_AABBSweep.cpp */, + FFFDb38210907f9eb3821090 /* src/mesh/GuBV4_BoxOverlap.cpp */, + FFFDb38210f87f9eb38210f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, + FFFDb38211607f9eb3821160 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, + FFFDb38211c87f9eb38211c8 /* src/mesh/GuBV4_OBBSweep.cpp */, + FFFDb38212307f9eb3821230 /* src/mesh/GuBV4_Raycast.cpp */, + FFFDb38212987f9eb3821298 /* src/mesh/GuBV4_SphereOverlap.cpp */, + FFFDb38213007f9eb3821300 /* src/mesh/GuBV4_SphereSweep.cpp */, + FFFDb38213687f9eb3821368 /* src/mesh/GuMeshQuery.cpp */, + FFFDb38213d07f9eb38213d0 /* src/mesh/GuMidphaseBV4.cpp */, + FFFDb38214387f9eb3821438 /* src/mesh/GuMidphaseRTree.cpp */, + FFFDb38214a07f9eb38214a0 /* src/mesh/GuOverlapTestsMesh.cpp */, + FFFDb38215087f9eb3821508 /* src/mesh/GuRTree.cpp */, + FFFDb38215707f9eb3821570 /* src/mesh/GuRTreeQueries.cpp */, + FFFDb38215d87f9eb38215d8 /* src/mesh/GuSweepsMesh.cpp */, + FFFDb38216407f9eb3821640 /* src/mesh/GuTriangleMesh.cpp */, + FFFDb38216a87f9eb38216a8 /* src/mesh/GuTriangleMeshBV4.cpp */, + FFFDb38217107f9eb3821710 /* src/mesh/GuTriangleMeshRTree.cpp */, + FFFDb38217787f9eb3821778 /* src/hf/GuHeightField.cpp */, + FFFDb38217e07f9eb38217e0 /* src/hf/GuHeightFieldUtil.cpp */, + FFFDb38218487f9eb3821848 /* src/hf/GuOverlapTestsHF.cpp */, + FFFDb38218b07f9eb38218b0 /* src/hf/GuSweepsHF.cpp */, + FFFDb38219187f9eb3821918 /* src/pcm/GuPCMContactBoxBox.cpp */, + FFFDb38219807f9eb3821980 /* src/pcm/GuPCMContactBoxConvex.cpp */, + FFFDb38219e87f9eb38219e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, + FFFDb3821a507f9eb3821a50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, + FFFDb3821ab87f9eb3821ab8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, + FFFDb3821b207f9eb3821b20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, + FFFDb3821b887f9eb3821b88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, + FFFDb3821bf07f9eb3821bf0 /* src/pcm/GuPCMContactConvexCommon.cpp */, + FFFDb3821c587f9eb3821c58 /* src/pcm/GuPCMContactConvexConvex.cpp */, + FFFDb3821cc07f9eb3821cc0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, + FFFDb3821d287f9eb3821d28 /* src/pcm/GuPCMContactConvexMesh.cpp */, + FFFDb3821d907f9eb3821d90 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, + FFFDb3821df87f9eb3821df8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, + FFFDb3821e607f9eb3821e60 /* src/pcm/GuPCMContactPlaneBox.cpp */, + FFFDb3821ec87f9eb3821ec8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, + FFFDb3821f307f9eb3821f30 /* src/pcm/GuPCMContactPlaneConvex.cpp */, + FFFDb3821f987f9eb3821f98 /* src/pcm/GuPCMContactSphereBox.cpp */, + FFFDb38220007f9eb3822000 /* src/pcm/GuPCMContactSphereCapsule.cpp */, + FFFDb38220687f9eb3822068 /* src/pcm/GuPCMContactSphereConvex.cpp */, + FFFDb38220d07f9eb38220d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, + FFFDb38221387f9eb3822138 /* src/pcm/GuPCMContactSphereMesh.cpp */, + FFFDb38221a07f9eb38221a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, + FFFDb38222087f9eb3822208 /* src/pcm/GuPCMContactSphereSphere.cpp */, + FFFDb38222707f9eb3822270 /* src/pcm/GuPCMShapeConvex.cpp */, + FFFDb38222d87f9eb38222d8 /* src/pcm/GuPCMTriangleContactGen.cpp */, + FFFDb38223407f9eb3822340 /* src/pcm/GuPersistentContactManifold.cpp */, + FFFDb38223a87f9eb38223a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, + FFFDb38224107f9eb3822410 /* src/ccd/GuCCDSweepPrimitives.cpp */, ); name = "geomutils"; sourceTree = SOURCE_ROOT; }; - FFFB2b95e5907fc42b95e590 /* PxFoundation */ = { + FFFBb430a8607f9eb430a860 /* PxFoundation */ = { isa = PBXGroup; children = ( - FFFB2b95eb707fc42b95eb70 /* include */, - FFFB2b95eb987fc42b95eb98 /* src */, + FFFBb430ae207f9eb430ae20 /* include */, + FFFBb430ae487f9eb430ae48 /* src */, ); name = "PxFoundation"; sourceTree = "<group>"; }; - FFFB2b95eb707fc42b95eb70 /* include */ = { + FFFBb430ae207f9eb430ae20 /* include */ = { isa = PBXGroup; children = ( - FFFD2b185e007fc42b185e00 /* Px.h */, - FFFD2b185e687fc42b185e68 /* PxAllocatorCallback.h */, - FFFD2b185ed07fc42b185ed0 /* PxAssert.h */, - FFFD2b185f387fc42b185f38 /* PxBitAndData.h */, - FFFD2b185fa07fc42b185fa0 /* PxBounds3.h */, - FFFD2b1860087fc42b186008 /* PxErrorCallback.h */, - FFFD2b1860707fc42b186070 /* PxErrors.h */, - FFFD2b1860d87fc42b1860d8 /* PxFlags.h */, - FFFD2b1861407fc42b186140 /* PxFoundation.h */, - FFFD2b1861a87fc42b1861a8 /* PxFoundationVersion.h */, - FFFD2b1862107fc42b186210 /* PxIO.h */, - FFFD2b1862787fc42b186278 /* PxIntrinsics.h */, - FFFD2b1862e07fc42b1862e0 /* PxMat33.h */, - FFFD2b1863487fc42b186348 /* PxMat44.h */, - FFFD2b1863b07fc42b1863b0 /* PxMath.h */, - FFFD2b1864187fc42b186418 /* PxMathUtils.h */, - FFFD2b1864807fc42b186480 /* PxMemory.h */, - FFFD2b1864e87fc42b1864e8 /* PxPlane.h */, - FFFD2b1865507fc42b186550 /* PxPreprocessor.h */, - FFFD2b1865b87fc42b1865b8 /* PxProfiler.h */, - FFFD2b1866207fc42b186620 /* PxQuat.h */, - FFFD2b1866887fc42b186688 /* PxSimpleTypes.h */, - FFFD2b1866f07fc42b1866f0 /* PxStrideIterator.h */, - FFFD2b1867587fc42b186758 /* PxTransform.h */, - FFFD2b1867c07fc42b1867c0 /* PxUnionCast.h */, - FFFD2b1868287fc42b186828 /* PxVec2.h */, - FFFD2b1868907fc42b186890 /* PxVec3.h */, - FFFD2b1868f87fc42b1868f8 /* PxVec4.h */, - FFFD2b1869607fc42b186960 /* unix/PxUnixIntrinsics.h */, + FFFDb496ac007f9eb496ac00 /* Px.h */, + FFFDb496ac687f9eb496ac68 /* PxAllocatorCallback.h */, + FFFDb496acd07f9eb496acd0 /* PxAssert.h */, + FFFDb496ad387f9eb496ad38 /* PxBitAndData.h */, + FFFDb496ada07f9eb496ada0 /* PxBounds3.h */, + FFFDb496ae087f9eb496ae08 /* PxErrorCallback.h */, + FFFDb496ae707f9eb496ae70 /* PxErrors.h */, + FFFDb496aed87f9eb496aed8 /* PxFlags.h */, + FFFDb496af407f9eb496af40 /* PxFoundation.h */, + FFFDb496afa87f9eb496afa8 /* PxFoundationVersion.h */, + FFFDb496b0107f9eb496b010 /* PxIO.h */, + FFFDb496b0787f9eb496b078 /* PxIntrinsics.h */, + FFFDb496b0e07f9eb496b0e0 /* PxMat33.h */, + FFFDb496b1487f9eb496b148 /* PxMat44.h */, + FFFDb496b1b07f9eb496b1b0 /* PxMath.h */, + FFFDb496b2187f9eb496b218 /* PxMathUtils.h */, + FFFDb496b2807f9eb496b280 /* PxMemory.h */, + FFFDb496b2e87f9eb496b2e8 /* PxPlane.h */, + FFFDb496b3507f9eb496b350 /* PxPreprocessor.h */, + FFFDb496b3b87f9eb496b3b8 /* PxProfiler.h */, + FFFDb496b4207f9eb496b420 /* PxQuat.h */, + FFFDb496b4887f9eb496b488 /* PxSimpleTypes.h */, + FFFDb496b4f07f9eb496b4f0 /* PxStrideIterator.h */, + FFFDb496b5587f9eb496b558 /* PxTransform.h */, + FFFDb496b5c07f9eb496b5c0 /* PxUnionCast.h */, + FFFDb496b6287f9eb496b628 /* PxVec2.h */, + FFFDb496b6907f9eb496b690 /* PxVec3.h */, + FFFDb496b6f87f9eb496b6f8 /* PxVec4.h */, + FFFDb496b7607f9eb496b760 /* unix/PxUnixIntrinsics.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2b95eb987fc42b95eb98 /* src */ = { + FFFBb430ae487f9eb430ae48 /* src */ = { isa = PBXGroup; children = ( - FFFD2b186a007fc42b186a00 /* include/Ps.h */, - FFFD2b186a687fc42b186a68 /* include/PsAlignedMalloc.h */, - FFFD2b186ad07fc42b186ad0 /* include/PsAlloca.h */, - FFFD2b186b387fc42b186b38 /* include/PsAllocator.h */, - FFFD2b186ba07fc42b186ba0 /* include/PsAoS.h */, - FFFD2b186c087fc42b186c08 /* include/PsArray.h */, - FFFD2b186c707fc42b186c70 /* include/PsAtomic.h */, - FFFD2b186cd87fc42b186cd8 /* include/PsBasicTemplates.h */, - FFFD2b186d407fc42b186d40 /* include/PsBitUtils.h */, - FFFD2b186da87fc42b186da8 /* include/PsBroadcast.h */, - FFFD2b186e107fc42b186e10 /* include/PsCpu.h */, - FFFD2b186e787fc42b186e78 /* include/PsFPU.h */, - FFFD2b186ee07fc42b186ee0 /* include/PsFoundation.h */, - FFFD2b186f487fc42b186f48 /* include/PsHash.h */, - FFFD2b186fb07fc42b186fb0 /* include/PsHashInternals.h */, - FFFD2b1870187fc42b187018 /* include/PsHashMap.h */, - FFFD2b1870807fc42b187080 /* include/PsHashSet.h */, - FFFD2b1870e87fc42b1870e8 /* include/PsInlineAllocator.h */, - FFFD2b1871507fc42b187150 /* include/PsInlineAoS.h */, - FFFD2b1871b87fc42b1871b8 /* include/PsInlineArray.h */, - FFFD2b1872207fc42b187220 /* include/PsIntrinsics.h */, - FFFD2b1872887fc42b187288 /* include/PsMathUtils.h */, - FFFD2b1872f07fc42b1872f0 /* include/PsMutex.h */, - FFFD2b1873587fc42b187358 /* include/PsPool.h */, - FFFD2b1873c07fc42b1873c0 /* include/PsSList.h */, - FFFD2b1874287fc42b187428 /* include/PsSocket.h */, - FFFD2b1874907fc42b187490 /* include/PsSort.h */, - FFFD2b1874f87fc42b1874f8 /* include/PsSortInternals.h */, - FFFD2b1875607fc42b187560 /* include/PsString.h */, - FFFD2b1875c87fc42b1875c8 /* include/PsSync.h */, - FFFD2b1876307fc42b187630 /* include/PsTempAllocator.h */, - FFFD2b1876987fc42b187698 /* include/PsThread.h */, - FFFD2b1877007fc42b187700 /* include/PsTime.h */, - FFFD2b1877687fc42b187768 /* include/PsUserAllocated.h */, - FFFD2b1877d07fc42b1877d0 /* include/PsUtilities.h */, - FFFD2b1878387fc42b187838 /* include/PsVecMath.h */, - FFFD2b1878a07fc42b1878a0 /* include/PsVecMathAoSScalar.h */, - FFFD2b1879087fc42b187908 /* include/PsVecMathAoSScalarInline.h */, - FFFD2b1879707fc42b187970 /* include/PsVecMathSSE.h */, - FFFD2b1879d87fc42b1879d8 /* include/PsVecMathUtilities.h */, - FFFD2b187a407fc42b187a40 /* include/PsVecQuat.h */, - FFFD2b187aa87fc42b187aa8 /* include/PsVecTransform.h */, - FFFD2b187b107fc42b187b10 /* include/unix/PsUnixAoS.h */, - FFFD2b187b787fc42b187b78 /* include/unix/PsUnixFPU.h */, - FFFD2b187be07fc42b187be0 /* include/unix/PsUnixInlineAoS.h */, - FFFD2b187c487fc42b187c48 /* include/unix/PsUnixIntrinsics.h */, - FFFD2b187cb07fc42b187cb0 /* include/unix/PsUnixTrigConstants.h */, - FFFD2b187d187fc42b187d18 /* src/PsAllocator.cpp */, - FFFD2b187d807fc42b187d80 /* src/PsAssert.cpp */, - FFFD2b187de87fc42b187de8 /* src/PsFoundation.cpp */, - FFFD2b187e507fc42b187e50 /* src/PsMathUtils.cpp */, - FFFD2b187eb87fc42b187eb8 /* src/PsString.cpp */, - FFFD2b187f207fc42b187f20 /* src/PsTempAllocator.cpp */, - FFFD2b187f887fc42b187f88 /* src/PsUtilities.cpp */, - FFFD2b187ff07fc42b187ff0 /* src/unix/PsUnixAtomic.cpp */, - FFFD2b1880587fc42b188058 /* src/unix/PsUnixCpu.cpp */, - FFFD2b1880c07fc42b1880c0 /* src/unix/PsUnixFPU.cpp */, - FFFD2b1881287fc42b188128 /* src/unix/PsUnixMutex.cpp */, - FFFD2b1881907fc42b188190 /* src/unix/PsUnixPrintString.cpp */, - FFFD2b1881f87fc42b1881f8 /* src/unix/PsUnixSList.cpp */, - FFFD2b1882607fc42b188260 /* src/unix/PsUnixSocket.cpp */, - FFFD2b1882c87fc42b1882c8 /* src/unix/PsUnixSync.cpp */, - FFFD2b1883307fc42b188330 /* src/unix/PsUnixThread.cpp */, - FFFD2b1883987fc42b188398 /* src/unix/PsUnixTime.cpp */, + FFFDb496b8007f9eb496b800 /* include/Ps.h */, + FFFDb496b8687f9eb496b868 /* include/PsAlignedMalloc.h */, + FFFDb496b8d07f9eb496b8d0 /* include/PsAlloca.h */, + FFFDb496b9387f9eb496b938 /* include/PsAllocator.h */, + FFFDb496b9a07f9eb496b9a0 /* include/PsAoS.h */, + FFFDb496ba087f9eb496ba08 /* include/PsArray.h */, + FFFDb496ba707f9eb496ba70 /* include/PsAtomic.h */, + FFFDb496bad87f9eb496bad8 /* include/PsBasicTemplates.h */, + FFFDb496bb407f9eb496bb40 /* include/PsBitUtils.h */, + FFFDb496bba87f9eb496bba8 /* include/PsBroadcast.h */, + FFFDb496bc107f9eb496bc10 /* include/PsCpu.h */, + FFFDb496bc787f9eb496bc78 /* include/PsFPU.h */, + FFFDb496bce07f9eb496bce0 /* include/PsFoundation.h */, + FFFDb496bd487f9eb496bd48 /* include/PsHash.h */, + FFFDb496bdb07f9eb496bdb0 /* include/PsHashInternals.h */, + FFFDb496be187f9eb496be18 /* include/PsHashMap.h */, + FFFDb496be807f9eb496be80 /* include/PsHashSet.h */, + FFFDb496bee87f9eb496bee8 /* include/PsInlineAllocator.h */, + FFFDb496bf507f9eb496bf50 /* include/PsInlineAoS.h */, + FFFDb496bfb87f9eb496bfb8 /* include/PsInlineArray.h */, + FFFDb496c0207f9eb496c020 /* include/PsIntrinsics.h */, + FFFDb496c0887f9eb496c088 /* include/PsMathUtils.h */, + FFFDb496c0f07f9eb496c0f0 /* include/PsMutex.h */, + FFFDb496c1587f9eb496c158 /* include/PsPool.h */, + FFFDb496c1c07f9eb496c1c0 /* include/PsSList.h */, + FFFDb496c2287f9eb496c228 /* include/PsSocket.h */, + FFFDb496c2907f9eb496c290 /* include/PsSort.h */, + FFFDb496c2f87f9eb496c2f8 /* include/PsSortInternals.h */, + FFFDb496c3607f9eb496c360 /* include/PsString.h */, + FFFDb496c3c87f9eb496c3c8 /* include/PsSync.h */, + FFFDb496c4307f9eb496c430 /* include/PsTempAllocator.h */, + FFFDb496c4987f9eb496c498 /* include/PsThread.h */, + FFFDb496c5007f9eb496c500 /* include/PsTime.h */, + FFFDb496c5687f9eb496c568 /* include/PsUserAllocated.h */, + FFFDb496c5d07f9eb496c5d0 /* include/PsUtilities.h */, + FFFDb496c6387f9eb496c638 /* include/PsVecMath.h */, + FFFDb496c6a07f9eb496c6a0 /* include/PsVecMathAoSScalar.h */, + FFFDb496c7087f9eb496c708 /* include/PsVecMathAoSScalarInline.h */, + FFFDb496c7707f9eb496c770 /* include/PsVecMathSSE.h */, + FFFDb496c7d87f9eb496c7d8 /* include/PsVecMathUtilities.h */, + FFFDb496c8407f9eb496c840 /* include/PsVecQuat.h */, + FFFDb496c8a87f9eb496c8a8 /* include/PsVecTransform.h */, + FFFDb496c9107f9eb496c910 /* include/unix/PsUnixAoS.h */, + FFFDb496c9787f9eb496c978 /* include/unix/PsUnixFPU.h */, + FFFDb496c9e07f9eb496c9e0 /* include/unix/PsUnixInlineAoS.h */, + FFFDb496ca487f9eb496ca48 /* include/unix/PsUnixIntrinsics.h */, + FFFDb496cab07f9eb496cab0 /* include/unix/PsUnixTrigConstants.h */, + FFFDb496cb187f9eb496cb18 /* src/PsAllocator.cpp */, + FFFDb496cb807f9eb496cb80 /* src/PsAssert.cpp */, + FFFDb496cbe87f9eb496cbe8 /* src/PsFoundation.cpp */, + FFFDb496cc507f9eb496cc50 /* src/PsMathUtils.cpp */, + FFFDb496ccb87f9eb496ccb8 /* src/PsString.cpp */, + FFFDb496cd207f9eb496cd20 /* src/PsTempAllocator.cpp */, + FFFDb496cd887f9eb496cd88 /* src/PsUtilities.cpp */, + FFFDb496cdf07f9eb496cdf0 /* src/unix/PsUnixAtomic.cpp */, + FFFDb496ce587f9eb496ce58 /* src/unix/PsUnixCpu.cpp */, + FFFDb496cec07f9eb496cec0 /* src/unix/PsUnixFPU.cpp */, + FFFDb496cf287f9eb496cf28 /* src/unix/PsUnixMutex.cpp */, + FFFDb496cf907f9eb496cf90 /* src/unix/PsUnixPrintString.cpp */, + FFFDb496cff87f9eb496cff8 /* src/unix/PsUnixSList.cpp */, + FFFDb496d0607f9eb496d060 /* src/unix/PsUnixSocket.cpp */, + FFFDb496d0c87f9eb496d0c8 /* src/unix/PsUnixSync.cpp */, + FFFDb496d1307f9eb496d130 /* src/unix/PsUnixThread.cpp */, + FFFDb496d1987f9eb496d198 /* src/unix/PsUnixTime.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2b8e87e07fc42b8e87e0 /* PxPvdSDK */ = { + FFFBb2c116407f9eb2c11640 /* PxPvdSDK */ = { isa = PBXGroup; children = ( - FFFB2b8f5e907fc42b8f5e90 /* include */, - FFFB2b8f5eb87fc42b8f5eb8 /* src */, + FFFBb2c0f5907f9eb2c0f590 /* include */, + FFFBb2c0f5b87f9eb2c0f5b8 /* src */, ); name = "PxPvdSDK"; sourceTree = "<group>"; }; - FFFB2b8f5e907fc42b8f5e90 /* include */ = { + FFFBb2c0f5907f9eb2c0f590 /* include */ = { isa = PBXGroup; children = ( - FFFD2b8e8fe07fc42b8e8fe0 /* PxPvd.h */, - FFFD2b8e90487fc42b8e9048 /* PxPvdTransport.h */, + FFFDb2c0d9507f9eb2c0d950 /* PxPvd.h */, + FFFDb2c0d9b87f9eb2c0d9b8 /* PxPvdTransport.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2b8f5eb87fc42b8f5eb8 /* src */ = { + FFFBb2c0f5b87f9eb2c0f5b8 /* src */ = { isa = PBXGroup; children = ( - FFFD2c011a007fc42c011a00 /* include/PsPvd.h */, - FFFD2c011a687fc42c011a68 /* include/PxProfileAllocatorWrapper.h */, - FFFD2c011ad07fc42c011ad0 /* include/PxPvdClient.h */, - FFFD2c011b387fc42c011b38 /* include/PxPvdDataStream.h */, - FFFD2c011ba07fc42c011ba0 /* include/PxPvdDataStreamHelpers.h */, - FFFD2c011c087fc42c011c08 /* include/PxPvdErrorCodes.h */, - FFFD2c011c707fc42c011c70 /* include/PxPvdObjectModelBaseTypes.h */, - FFFD2c011cd87fc42c011cd8 /* include/PxPvdRenderBuffer.h */, - FFFD2c011d407fc42c011d40 /* include/PxPvdUserRenderer.h */, - FFFD2c011da87fc42c011da8 /* src/PxProfileEventImpl.cpp */, - FFFD2c011e107fc42c011e10 /* src/PxPvd.cpp */, - FFFD2c011e787fc42c011e78 /* src/PxPvdDataStream.cpp */, - FFFD2c011ee07fc42c011ee0 /* src/PxPvdDefaultFileTransport.cpp */, - FFFD2c011f487fc42c011f48 /* src/PxPvdDefaultSocketTransport.cpp */, - FFFD2c011fb07fc42c011fb0 /* src/PxPvdImpl.cpp */, - FFFD2c0120187fc42c012018 /* src/PxPvdMemClient.cpp */, - FFFD2c0120807fc42c012080 /* src/PxPvdObjectModelMetaData.cpp */, - FFFD2c0120e87fc42c0120e8 /* src/PxPvdObjectRegistrar.cpp */, - FFFD2c0121507fc42c012150 /* src/PxPvdProfileZoneClient.cpp */, - FFFD2c0121b87fc42c0121b8 /* src/PxPvdUserRenderer.cpp */, - FFFD2c0122207fc42c012220 /* src/PxProfileBase.h */, - FFFD2c0122887fc42c012288 /* src/PxProfileCompileTimeEventFilter.h */, - FFFD2c0122f07fc42c0122f0 /* src/PxProfileContextProvider.h */, - FFFD2c0123587fc42c012358 /* src/PxProfileContextProviderImpl.h */, - FFFD2c0123c07fc42c0123c0 /* src/PxProfileDataBuffer.h */, - FFFD2c0124287fc42c012428 /* src/PxProfileDataParsing.h */, - FFFD2c0124907fc42c012490 /* src/PxProfileEventBuffer.h */, - FFFD2c0124f87fc42c0124f8 /* src/PxProfileEventBufferAtomic.h */, - FFFD2c0125607fc42c012560 /* src/PxProfileEventBufferClient.h */, - FFFD2c0125c87fc42c0125c8 /* src/PxProfileEventBufferClientManager.h */, - FFFD2c0126307fc42c012630 /* src/PxProfileEventFilter.h */, - FFFD2c0126987fc42c012698 /* src/PxProfileEventHandler.h */, - FFFD2c0127007fc42c012700 /* src/PxProfileEventId.h */, - FFFD2c0127687fc42c012768 /* src/PxProfileEventMutex.h */, - FFFD2c0127d07fc42c0127d0 /* src/PxProfileEventNames.h */, - FFFD2c0128387fc42c012838 /* src/PxProfileEventParser.h */, - FFFD2c0128a07fc42c0128a0 /* src/PxProfileEventSender.h */, - FFFD2c0129087fc42c012908 /* src/PxProfileEventSerialization.h */, - FFFD2c0129707fc42c012970 /* src/PxProfileEventSystem.h */, - FFFD2c0129d87fc42c0129d8 /* src/PxProfileEvents.h */, - FFFD2c012a407fc42c012a40 /* src/PxProfileMemory.h */, - FFFD2c012aa87fc42c012aa8 /* src/PxProfileMemoryBuffer.h */, - FFFD2c012b107fc42c012b10 /* src/PxProfileMemoryEventBuffer.h */, - FFFD2c012b787fc42c012b78 /* src/PxProfileMemoryEventParser.h */, - FFFD2c012be07fc42c012be0 /* src/PxProfileMemoryEventRecorder.h */, - FFFD2c012c487fc42c012c48 /* src/PxProfileMemoryEventReflexiveWriter.h */, - FFFD2c012cb07fc42c012cb0 /* src/PxProfileMemoryEventSummarizer.h */, - FFFD2c012d187fc42c012d18 /* src/PxProfileMemoryEventTypes.h */, - FFFD2c012d807fc42c012d80 /* src/PxProfileMemoryEvents.h */, - FFFD2c012de87fc42c012de8 /* src/PxProfileScopedEvent.h */, - FFFD2c012e507fc42c012e50 /* src/PxProfileScopedMutexLock.h */, - FFFD2c012eb87fc42c012eb8 /* src/PxProfileZone.h */, - FFFD2c012f207fc42c012f20 /* src/PxProfileZoneImpl.h */, - FFFD2c012f887fc42c012f88 /* src/PxProfileZoneManager.h */, - FFFD2c012ff07fc42c012ff0 /* src/PxProfileZoneManagerImpl.h */, - FFFD2c0130587fc42c013058 /* src/PxPvdBits.h */, - FFFD2c0130c07fc42c0130c0 /* src/PxPvdByteStreams.h */, - FFFD2c0131287fc42c013128 /* src/PxPvdCommStreamEventSink.h */, - FFFD2c0131907fc42c013190 /* src/PxPvdCommStreamEvents.h */, - FFFD2c0131f87fc42c0131f8 /* src/PxPvdCommStreamSDKEventTypes.h */, - FFFD2c0132607fc42c013260 /* src/PxPvdCommStreamTypes.h */, - FFFD2c0132c87fc42c0132c8 /* src/PxPvdDefaultFileTransport.h */, - FFFD2c0133307fc42c013330 /* src/PxPvdDefaultSocketTransport.h */, - FFFD2c0133987fc42c013398 /* src/PxPvdFoundation.h */, - FFFD2c0134007fc42c013400 /* src/PxPvdImpl.h */, - FFFD2c0134687fc42c013468 /* src/PxPvdInternalByteStreams.h */, - FFFD2c0134d07fc42c0134d0 /* src/PxPvdMarshalling.h */, - FFFD2c0135387fc42c013538 /* src/PxPvdMemClient.h */, - FFFD2c0135a07fc42c0135a0 /* src/PxPvdObjectModel.h */, - FFFD2c0136087fc42c013608 /* src/PxPvdObjectModelInternalTypeDefs.h */, - FFFD2c0136707fc42c013670 /* src/PxPvdObjectModelInternalTypes.h */, - FFFD2c0136d87fc42c0136d8 /* src/PxPvdObjectModelMetaData.h */, - FFFD2c0137407fc42c013740 /* src/PxPvdObjectRegistrar.h */, - FFFD2c0137a87fc42c0137a8 /* src/PxPvdProfileZoneClient.h */, - FFFD2c0138107fc42c013810 /* src/PxPvdUserRenderImpl.h */, - FFFD2c0138787fc42c013878 /* src/PxPvdUserRenderTypes.h */, + FFFDb302f2007f9eb302f200 /* include/PsPvd.h */, + FFFDb302f2687f9eb302f268 /* include/PxProfileAllocatorWrapper.h */, + FFFDb302f2d07f9eb302f2d0 /* include/PxPvdClient.h */, + FFFDb302f3387f9eb302f338 /* include/PxPvdDataStream.h */, + FFFDb302f3a07f9eb302f3a0 /* include/PxPvdDataStreamHelpers.h */, + FFFDb302f4087f9eb302f408 /* include/PxPvdErrorCodes.h */, + FFFDb302f4707f9eb302f470 /* include/PxPvdObjectModelBaseTypes.h */, + FFFDb302f4d87f9eb302f4d8 /* include/PxPvdRenderBuffer.h */, + FFFDb302f5407f9eb302f540 /* include/PxPvdUserRenderer.h */, + FFFDb302f5a87f9eb302f5a8 /* src/PxProfileEventImpl.cpp */, + FFFDb302f6107f9eb302f610 /* src/PxPvd.cpp */, + FFFDb302f6787f9eb302f678 /* src/PxPvdDataStream.cpp */, + FFFDb302f6e07f9eb302f6e0 /* src/PxPvdDefaultFileTransport.cpp */, + FFFDb302f7487f9eb302f748 /* src/PxPvdDefaultSocketTransport.cpp */, + FFFDb302f7b07f9eb302f7b0 /* src/PxPvdImpl.cpp */, + FFFDb302f8187f9eb302f818 /* src/PxPvdMemClient.cpp */, + FFFDb302f8807f9eb302f880 /* src/PxPvdObjectModelMetaData.cpp */, + FFFDb302f8e87f9eb302f8e8 /* src/PxPvdObjectRegistrar.cpp */, + FFFDb302f9507f9eb302f950 /* src/PxPvdProfileZoneClient.cpp */, + FFFDb302f9b87f9eb302f9b8 /* src/PxPvdUserRenderer.cpp */, + FFFDb302fa207f9eb302fa20 /* src/PxProfileBase.h */, + FFFDb302fa887f9eb302fa88 /* src/PxProfileCompileTimeEventFilter.h */, + FFFDb302faf07f9eb302faf0 /* src/PxProfileContextProvider.h */, + FFFDb302fb587f9eb302fb58 /* src/PxProfileContextProviderImpl.h */, + FFFDb302fbc07f9eb302fbc0 /* src/PxProfileDataBuffer.h */, + FFFDb302fc287f9eb302fc28 /* src/PxProfileDataParsing.h */, + FFFDb302fc907f9eb302fc90 /* src/PxProfileEventBuffer.h */, + FFFDb302fcf87f9eb302fcf8 /* src/PxProfileEventBufferAtomic.h */, + FFFDb302fd607f9eb302fd60 /* src/PxProfileEventBufferClient.h */, + FFFDb302fdc87f9eb302fdc8 /* src/PxProfileEventBufferClientManager.h */, + FFFDb302fe307f9eb302fe30 /* src/PxProfileEventFilter.h */, + FFFDb302fe987f9eb302fe98 /* src/PxProfileEventHandler.h */, + FFFDb302ff007f9eb302ff00 /* src/PxProfileEventId.h */, + FFFDb302ff687f9eb302ff68 /* src/PxProfileEventMutex.h */, + FFFDb302ffd07f9eb302ffd0 /* src/PxProfileEventNames.h */, + FFFDb30300387f9eb3030038 /* src/PxProfileEventParser.h */, + FFFDb30300a07f9eb30300a0 /* src/PxProfileEventSender.h */, + FFFDb30301087f9eb3030108 /* src/PxProfileEventSerialization.h */, + FFFDb30301707f9eb3030170 /* src/PxProfileEventSystem.h */, + FFFDb30301d87f9eb30301d8 /* src/PxProfileEvents.h */, + FFFDb30302407f9eb3030240 /* src/PxProfileMemory.h */, + FFFDb30302a87f9eb30302a8 /* src/PxProfileMemoryBuffer.h */, + FFFDb30303107f9eb3030310 /* src/PxProfileMemoryEventBuffer.h */, + FFFDb30303787f9eb3030378 /* src/PxProfileMemoryEventParser.h */, + FFFDb30303e07f9eb30303e0 /* src/PxProfileMemoryEventRecorder.h */, + FFFDb30304487f9eb3030448 /* src/PxProfileMemoryEventReflexiveWriter.h */, + FFFDb30304b07f9eb30304b0 /* src/PxProfileMemoryEventSummarizer.h */, + FFFDb30305187f9eb3030518 /* src/PxProfileMemoryEventTypes.h */, + FFFDb30305807f9eb3030580 /* src/PxProfileMemoryEvents.h */, + FFFDb30305e87f9eb30305e8 /* src/PxProfileScopedEvent.h */, + FFFDb30306507f9eb3030650 /* src/PxProfileScopedMutexLock.h */, + FFFDb30306b87f9eb30306b8 /* src/PxProfileZone.h */, + FFFDb30307207f9eb3030720 /* src/PxProfileZoneImpl.h */, + FFFDb30307887f9eb3030788 /* src/PxProfileZoneManager.h */, + FFFDb30307f07f9eb30307f0 /* src/PxProfileZoneManagerImpl.h */, + FFFDb30308587f9eb3030858 /* src/PxPvdBits.h */, + FFFDb30308c07f9eb30308c0 /* src/PxPvdByteStreams.h */, + FFFDb30309287f9eb3030928 /* src/PxPvdCommStreamEventSink.h */, + FFFDb30309907f9eb3030990 /* src/PxPvdCommStreamEvents.h */, + FFFDb30309f87f9eb30309f8 /* src/PxPvdCommStreamSDKEventTypes.h */, + FFFDb3030a607f9eb3030a60 /* src/PxPvdCommStreamTypes.h */, + FFFDb3030ac87f9eb3030ac8 /* src/PxPvdDefaultFileTransport.h */, + FFFDb3030b307f9eb3030b30 /* src/PxPvdDefaultSocketTransport.h */, + FFFDb3030b987f9eb3030b98 /* src/PxPvdFoundation.h */, + FFFDb3030c007f9eb3030c00 /* src/PxPvdImpl.h */, + FFFDb3030c687f9eb3030c68 /* src/PxPvdInternalByteStreams.h */, + FFFDb3030cd07f9eb3030cd0 /* src/PxPvdMarshalling.h */, + FFFDb3030d387f9eb3030d38 /* src/PxPvdMemClient.h */, + FFFDb3030da07f9eb3030da0 /* src/PxPvdObjectModel.h */, + FFFDb3030e087f9eb3030e08 /* src/PxPvdObjectModelInternalTypeDefs.h */, + FFFDb3030e707f9eb3030e70 /* src/PxPvdObjectModelInternalTypes.h */, + FFFDb3030ed87f9eb3030ed8 /* src/PxPvdObjectModelMetaData.h */, + FFFDb3030f407f9eb3030f40 /* src/PxPvdObjectRegistrar.h */, + FFFDb3030fa87f9eb3030fa8 /* src/PxPvdProfileZoneClient.h */, + FFFDb30310107f9eb3031010 /* src/PxPvdUserRenderImpl.h */, + FFFDb30310787f9eb3031078 /* src/PxPvdUserRenderTypes.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2b9141107fc42b914110 /* LowLevel */ = { + FFFBb50092607f9eb5009260 /* LowLevel */ = { isa = PBXGroup; children = ( - FFFB2b9173b07fc42b9173b0 /* API Source */, - FFFB2b9173d87fc42b9173d8 /* API Includes */, - FFFB2b9174007fc42b917400 /* Software Source */, - FFFB2b9174287fc42b917428 /* Software Includes */, - FFFB2b9174507fc42b917450 /* Common Source */, - FFFB2b9174787fc42b917478 /* Common Includes */, + FFFBb500efb07f9eb500efb0 /* API Source */, + FFFBb500efd87f9eb500efd8 /* API Includes */, + FFFBb500f0007f9eb500f000 /* Software Source */, + FFFBb500f0287f9eb500f028 /* Software Includes */, + FFFBb500f0507f9eb500f050 /* Common Source */, + FFFBb500f0787f9eb500f078 /* Common Includes */, ); name = "LowLevel"; sourceTree = "<group>"; }; - FFFB2b9173b07fc42b9173b0 /* API Source */ = { + FFFBb500efb07f9eb500efb0 /* API Source */ = { isa = PBXGroup; children = ( - FFFD2b9114f07fc42b9114f0 /* px_globals.cpp */, + FFFDb500ef007f9eb500ef00 /* px_globals.cpp */, ); name = "API Source"; sourceTree = SOURCE_ROOT; }; - FFFB2b9173d87fc42b9173d8 /* API Includes */ = { + FFFBb500efd87f9eb500efd8 /* API Includes */ = { isa = PBXGroup; children = ( - FFFD2b910bb07fc42b910bb0 /* PxsMaterialCore.h */, - FFFD2b910c187fc42b910c18 /* PxsMaterialManager.h */, - FFFD2b910c807fc42b910c80 /* PxvConfig.h */, - FFFD2b910ce87fc42b910ce8 /* PxvContext.h */, - FFFD2b910d507fc42b910d50 /* PxvDynamics.h */, - FFFD2b910db87fc42b910db8 /* PxvGeometry.h */, - FFFD2b910e207fc42b910e20 /* PxvGlobals.h */, - FFFD2b910e887fc42b910e88 /* PxvManager.h */, - FFFD2b910ef07fc42b910ef0 /* PxvSimStats.h */, + FFFDb50107107f9eb5010710 /* PxsMaterialCore.h */, + FFFDb50107787f9eb5010778 /* PxsMaterialManager.h */, + FFFDb50107e07f9eb50107e0 /* PxvConfig.h */, + FFFDb50108487f9eb5010848 /* PxvContext.h */, + FFFDb50108b07f9eb50108b0 /* PxvDynamics.h */, + FFFDb50109187f9eb5010918 /* PxvGeometry.h */, + FFFDb50109807f9eb5010980 /* PxvGlobals.h */, + FFFDb50109e87f9eb50109e8 /* PxvManager.h */, + FFFDb5010a507f9eb5010a50 /* PxvSimStats.h */, ); name = "API Includes"; sourceTree = SOURCE_ROOT; }; - FFFB2b9174007fc42b917400 /* Software Source */ = { + FFFBb500f0007f9eb500f000 /* Software Source */ = { isa = PBXGroup; children = ( - FFFD2b908ce07fc42b908ce0 /* PxsCCD.cpp */, - FFFD2b908d487fc42b908d48 /* PxsContactManager.cpp */, - FFFD2b908db07fc42b908db0 /* PxsContext.cpp */, - FFFD2b908e187fc42b908e18 /* PxsDefaultMemoryManager.cpp */, - FFFD2b908e807fc42b908e80 /* PxsIslandSim.cpp */, - FFFD2b908ee87fc42b908ee8 /* PxsMaterialCombiner.cpp */, - FFFD2b908f507fc42b908f50 /* PxsNphaseImplementationContext.cpp */, - FFFD2b908fb87fc42b908fb8 /* PxsSimpleIslandManager.cpp */, + FFFDb50118807f9eb5011880 /* PxsCCD.cpp */, + FFFDb50118e87f9eb50118e8 /* PxsContactManager.cpp */, + FFFDb50119507f9eb5011950 /* PxsContext.cpp */, + FFFDb50119b87f9eb50119b8 /* PxsDefaultMemoryManager.cpp */, + FFFDb5011a207f9eb5011a20 /* PxsIslandSim.cpp */, + FFFDb5011a887f9eb5011a88 /* PxsMaterialCombiner.cpp */, + FFFDb5011af07f9eb5011af0 /* PxsNphaseImplementationContext.cpp */, + FFFDb5011b587f9eb5011b58 /* PxsSimpleIslandManager.cpp */, ); name = "Software Source"; sourceTree = SOURCE_ROOT; }; - FFFB2b9174287fc42b917428 /* Software Includes */ = { + FFFBb500f0287f9eb500f028 /* Software Includes */ = { isa = PBXGroup; children = ( - FFFD2b1ae0007fc42b1ae000 /* PxsBodySim.h */, - FFFD2b1ae0687fc42b1ae068 /* PxsCCD.h */, - FFFD2b1ae0d07fc42b1ae0d0 /* PxsContactManager.h */, - FFFD2b1ae1387fc42b1ae138 /* PxsContactManagerState.h */, - FFFD2b1ae1a07fc42b1ae1a0 /* PxsContext.h */, - FFFD2b1ae2087fc42b1ae208 /* PxsDefaultMemoryManager.h */, - FFFD2b1ae2707fc42b1ae270 /* PxsHeapMemoryAllocator.h */, - FFFD2b1ae2d87fc42b1ae2d8 /* PxsIncrementalConstraintPartitioning.h */, - FFFD2b1ae3407fc42b1ae340 /* PxsIslandManagerTypes.h */, - FFFD2b1ae3a87fc42b1ae3a8 /* PxsIslandSim.h */, - FFFD2b1ae4107fc42b1ae410 /* PxsKernelWrangler.h */, - FFFD2b1ae4787fc42b1ae478 /* PxsMaterialCombiner.h */, - FFFD2b1ae4e07fc42b1ae4e0 /* PxsMemoryManager.h */, - FFFD2b1ae5487fc42b1ae548 /* PxsNphaseImplementationContext.h */, - FFFD2b1ae5b07fc42b1ae5b0 /* PxsRigidBody.h */, - FFFD2b1ae6187fc42b1ae618 /* PxsShapeSim.h */, - FFFD2b1ae6807fc42b1ae680 /* PxsSimpleIslandManager.h */, - FFFD2b1ae6e87fc42b1ae6e8 /* PxsSimulationController.h */, - FFFD2b1ae7507fc42b1ae750 /* PxsTransformCache.h */, - FFFD2b1ae7b87fc42b1ae7b8 /* PxvNphaseImplementationContext.h */, + FFFDb5809e007f9eb5809e00 /* PxsBodySim.h */, + FFFDb5809e687f9eb5809e68 /* PxsCCD.h */, + FFFDb5809ed07f9eb5809ed0 /* PxsContactManager.h */, + FFFDb5809f387f9eb5809f38 /* PxsContactManagerState.h */, + FFFDb5809fa07f9eb5809fa0 /* PxsContext.h */, + FFFDb580a0087f9eb580a008 /* PxsDefaultMemoryManager.h */, + FFFDb580a0707f9eb580a070 /* PxsHeapMemoryAllocator.h */, + FFFDb580a0d87f9eb580a0d8 /* PxsIncrementalConstraintPartitioning.h */, + FFFDb580a1407f9eb580a140 /* PxsIslandManagerTypes.h */, + FFFDb580a1a87f9eb580a1a8 /* PxsIslandSim.h */, + FFFDb580a2107f9eb580a210 /* PxsKernelWrangler.h */, + FFFDb580a2787f9eb580a278 /* PxsMaterialCombiner.h */, + FFFDb580a2e07f9eb580a2e0 /* PxsMemoryManager.h */, + FFFDb580a3487f9eb580a348 /* PxsNphaseImplementationContext.h */, + FFFDb580a3b07f9eb580a3b0 /* PxsRigidBody.h */, + FFFDb580a4187f9eb580a418 /* PxsShapeSim.h */, + FFFDb580a4807f9eb580a480 /* PxsSimpleIslandManager.h */, + FFFDb580a4e87f9eb580a4e8 /* PxsSimulationController.h */, + FFFDb580a5507f9eb580a550 /* PxsTransformCache.h */, + FFFDb580a5b87f9eb580a5b8 /* PxvNphaseImplementationContext.h */, ); name = "Software Includes"; sourceTree = SOURCE_ROOT; }; - FFFB2b9174507fc42b917450 /* Common Source */ = { + FFFBb500f0507f9eb500f050 /* Common Source */ = { isa = PBXGroup; children = ( - FFFD2b1b8e007fc42b1b8e00 /* collision/PxcContact.cpp */, - FFFD2b1b8e687fc42b1b8e68 /* pipeline/PxcContactCache.cpp */, - FFFD2b1b8ed07fc42b1b8ed0 /* pipeline/PxcContactMethodImpl.cpp */, - FFFD2b1b8f387fc42b1b8f38 /* pipeline/PxcMaterialHeightField.cpp */, - FFFD2b1b8fa07fc42b1b8fa0 /* pipeline/PxcMaterialMesh.cpp */, - FFFD2b1b90087fc42b1b9008 /* pipeline/PxcMaterialMethodImpl.cpp */, - FFFD2b1b90707fc42b1b9070 /* pipeline/PxcMaterialShape.cpp */, - FFFD2b1b90d87fc42b1b90d8 /* pipeline/PxcNpBatch.cpp */, - FFFD2b1b91407fc42b1b9140 /* pipeline/PxcNpCacheStreamPair.cpp */, - FFFD2b1b91a87fc42b1b91a8 /* pipeline/PxcNpContactPrepShared.cpp */, - FFFD2b1b92107fc42b1b9210 /* pipeline/PxcNpMemBlockPool.cpp */, - FFFD2b1b92787fc42b1b9278 /* pipeline/PxcNpThreadContext.cpp */, + FFFDb58088007f9eb5808800 /* collision/PxcContact.cpp */, + FFFDb58088687f9eb5808868 /* pipeline/PxcContactCache.cpp */, + FFFDb58088d07f9eb58088d0 /* pipeline/PxcContactMethodImpl.cpp */, + FFFDb58089387f9eb5808938 /* pipeline/PxcMaterialHeightField.cpp */, + FFFDb58089a07f9eb58089a0 /* pipeline/PxcMaterialMesh.cpp */, + FFFDb5808a087f9eb5808a08 /* pipeline/PxcMaterialMethodImpl.cpp */, + FFFDb5808a707f9eb5808a70 /* pipeline/PxcMaterialShape.cpp */, + FFFDb5808ad87f9eb5808ad8 /* pipeline/PxcNpBatch.cpp */, + FFFDb5808b407f9eb5808b40 /* pipeline/PxcNpCacheStreamPair.cpp */, + FFFDb5808ba87f9eb5808ba8 /* pipeline/PxcNpContactPrepShared.cpp */, + FFFDb5808c107f9eb5808c10 /* pipeline/PxcNpMemBlockPool.cpp */, + FFFDb5808c787f9eb5808c78 /* pipeline/PxcNpThreadContext.cpp */, ); name = "Common Source"; sourceTree = SOURCE_ROOT; }; - FFFB2b9174787fc42b917478 /* Common Includes */ = { + FFFBb500f0787f9eb500f078 /* Common Includes */ = { isa = PBXGroup; children = ( - FFFD2b1b96007fc42b1b9600 /* collision/PxcContactMethodImpl.h */, - FFFD2b1b96687fc42b1b9668 /* pipeline/PxcCCDStateStreamPair.h */, - FFFD2b1b96d07fc42b1b96d0 /* pipeline/PxcConstraintBlockStream.h */, - FFFD2b1b97387fc42b1b9738 /* pipeline/PxcContactCache.h */, - FFFD2b1b97a07fc42b1b97a0 /* pipeline/PxcMaterialMethodImpl.h */, - FFFD2b1b98087fc42b1b9808 /* pipeline/PxcNpBatch.h */, - FFFD2b1b98707fc42b1b9870 /* pipeline/PxcNpCache.h */, - FFFD2b1b98d87fc42b1b98d8 /* pipeline/PxcNpCacheStreamPair.h */, - FFFD2b1b99407fc42b1b9940 /* pipeline/PxcNpContactPrepShared.h */, - FFFD2b1b99a87fc42b1b99a8 /* pipeline/PxcNpMemBlockPool.h */, - FFFD2b1b9a107fc42b1b9a10 /* pipeline/PxcNpThreadContext.h */, - FFFD2b1b9a787fc42b1b9a78 /* pipeline/PxcNpWorkUnit.h */, - FFFD2b1b9ae07fc42b1b9ae0 /* pipeline/PxcRigidBody.h */, - FFFD2b1b9b487fc42b1b9b48 /* utils/PxcScratchAllocator.h */, - FFFD2b1b9bb07fc42b1b9bb0 /* utils/PxcThreadCoherentCache.h */, + FFFDb58090007f9eb5809000 /* collision/PxcContactMethodImpl.h */, + FFFDb58090687f9eb5809068 /* pipeline/PxcCCDStateStreamPair.h */, + FFFDb58090d07f9eb58090d0 /* pipeline/PxcConstraintBlockStream.h */, + FFFDb58091387f9eb5809138 /* pipeline/PxcContactCache.h */, + FFFDb58091a07f9eb58091a0 /* pipeline/PxcMaterialMethodImpl.h */, + FFFDb58092087f9eb5809208 /* pipeline/PxcNpBatch.h */, + FFFDb58092707f9eb5809270 /* pipeline/PxcNpCache.h */, + FFFDb58092d87f9eb58092d8 /* pipeline/PxcNpCacheStreamPair.h */, + FFFDb58093407f9eb5809340 /* pipeline/PxcNpContactPrepShared.h */, + FFFDb58093a87f9eb58093a8 /* pipeline/PxcNpMemBlockPool.h */, + FFFDb58094107f9eb5809410 /* pipeline/PxcNpThreadContext.h */, + FFFDb58094787f9eb5809478 /* pipeline/PxcNpWorkUnit.h */, + FFFDb58094e07f9eb58094e0 /* pipeline/PxcRigidBody.h */, + FFFDb58095487f9eb5809548 /* utils/PxcScratchAllocator.h */, + FFFDb58095b07f9eb58095b0 /* utils/PxcThreadCoherentCache.h */, ); name = "Common Includes"; sourceTree = SOURCE_ROOT; }; - FFFB2bdf89e07fc42bdf89e0 /* LowLevelAABB */ = { + FFFBb5034e907f9eb5034e90 /* LowLevelAABB */ = { isa = PBXGroup; children = ( - FFFB2be094307fc42be09430 /* include */, - FFFB2be094587fc42be09458 /* src */, + FFFBb502c6907f9eb502c690 /* include */, + FFFBb502c6b87f9eb502c6b8 /* src */, ); name = "LowLevelAABB"; sourceTree = "<group>"; }; - FFFB2be094307fc42be09430 /* include */ = { + FFFBb502c6907f9eb502c690 /* include */ = { isa = PBXGroup; children = ( - FFFD2be0af107fc42be0af10 /* BpAABBManagerTasks.h */, - FFFD2be0af787fc42be0af78 /* BpBroadPhase.h */, - FFFD2be0afe07fc42be0afe0 /* BpBroadPhaseUpdate.h */, - FFFD2be0b0487fc42be0b048 /* BpSimpleAABBManager.h */, + FFFDb502e1707f9eb502e170 /* BpAABBManagerTasks.h */, + FFFDb502e1d87f9eb502e1d8 /* BpBroadPhase.h */, + FFFDb502e2407f9eb502e240 /* BpBroadPhaseUpdate.h */, + FFFDb502e2a87f9eb502e2a8 /* BpSimpleAABBManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2be094587fc42be09458 /* src */ = { + FFFBb502c6b87f9eb502c6b8 /* src */ = { isa = PBXGroup; children = ( - FFFD2c826c007fc42c826c00 /* BpBroadPhaseMBP.h */, - FFFD2c826c687fc42c826c68 /* BpBroadPhaseMBPCommon.h */, - FFFD2c826cd07fc42c826cd0 /* BpBroadPhaseSap.h */, - FFFD2c826d387fc42c826d38 /* BpBroadPhaseSapAux.h */, - FFFD2c826da07fc42c826da0 /* BpMBPTasks.h */, - FFFD2c826e087fc42c826e08 /* BpSAPTasks.h */, - FFFD2c826e707fc42c826e70 /* BpBroadPhase.cpp */, - FFFD2c826ed87fc42c826ed8 /* BpBroadPhaseMBP.cpp */, - FFFD2c826f407fc42c826f40 /* BpBroadPhaseSap.cpp */, - FFFD2c826fa87fc42c826fa8 /* BpBroadPhaseSapAux.cpp */, - FFFD2c8270107fc42c827010 /* BpMBPTasks.cpp */, - FFFD2c8270787fc42c827078 /* BpSAPTasks.cpp */, - FFFD2c8270e07fc42c8270e0 /* BpSimpleAABBManager.cpp */, + FFFDb58122007f9eb5812200 /* BpBroadPhaseMBP.h */, + FFFDb58122687f9eb5812268 /* BpBroadPhaseMBPCommon.h */, + FFFDb58122d07f9eb58122d0 /* BpBroadPhaseSap.h */, + FFFDb58123387f9eb5812338 /* BpBroadPhaseSapAux.h */, + FFFDb58123a07f9eb58123a0 /* BpMBPTasks.h */, + FFFDb58124087f9eb5812408 /* BpSAPTasks.h */, + FFFDb58124707f9eb5812470 /* BpBroadPhase.cpp */, + FFFDb58124d87f9eb58124d8 /* BpBroadPhaseMBP.cpp */, + FFFDb58125407f9eb5812540 /* BpBroadPhaseSap.cpp */, + FFFDb58125a87f9eb58125a8 /* BpBroadPhaseSapAux.cpp */, + FFFDb58126107f9eb5812610 /* BpMBPTasks.cpp */, + FFFDb58126787f9eb5812678 /* BpSAPTasks.cpp */, + FFFDb58126e07f9eb58126e0 /* BpSimpleAABBManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2b8ca5207fc42b8ca520 /* LowLevelDynamics */ = { + FFFBb40739207f9eb4073920 /* LowLevelDynamics */ = { isa = PBXGroup; children = ( - FFFB2b8d79d07fc42b8d79d0 /* Dynamics Source */, - FFFB2b8d79f87fc42b8d79f8 /* Dynamics Includes */, - FFFB2b8d7a207fc42b8d7a20 /* Dynamics Internal Includes */, + FFFBb407ad407f9eb407ad40 /* Dynamics Source */, + FFFBb407ad687f9eb407ad68 /* Dynamics Includes */, + FFFBb407ad907f9eb407ad90 /* Dynamics Internal Includes */, ); name = "LowLevelDynamics"; sourceTree = "<group>"; }; - FFFB2b8d79d07fc42b8d79d0 /* Dynamics Source */ = { + FFFBb407ad407f9eb407ad40 /* Dynamics Source */ = { isa = PBXGroup; children = ( - FFFD2c0194007fc42c019400 /* DyArticulation.cpp */, - FFFD2c0194687fc42c019468 /* DyArticulationContactPrep.cpp */, - FFFD2c0194d07fc42c0194d0 /* DyArticulationContactPrepPF.cpp */, - FFFD2c0195387fc42c019538 /* DyArticulationHelper.cpp */, - FFFD2c0195a07fc42c0195a0 /* DyArticulationSIMD.cpp */, - FFFD2c0196087fc42c019608 /* DyArticulationScalar.cpp */, - FFFD2c0196707fc42c019670 /* DyConstraintPartition.cpp */, - FFFD2c0196d87fc42c0196d8 /* DyConstraintSetup.cpp */, - FFFD2c0197407fc42c019740 /* DyConstraintSetupBlock.cpp */, - FFFD2c0197a87fc42c0197a8 /* DyContactPrep.cpp */, - FFFD2c0198107fc42c019810 /* DyContactPrep4.cpp */, - FFFD2c0198787fc42c019878 /* DyContactPrep4PF.cpp */, - FFFD2c0198e07fc42c0198e0 /* DyContactPrepPF.cpp */, - FFFD2c0199487fc42c019948 /* DyDynamics.cpp */, - FFFD2c0199b07fc42c0199b0 /* DyFrictionCorrelation.cpp */, - FFFD2c019a187fc42c019a18 /* DyRigidBodyToSolverBody.cpp */, - FFFD2c019a807fc42c019a80 /* DySolverConstraints.cpp */, - FFFD2c019ae87fc42c019ae8 /* DySolverConstraintsBlock.cpp */, - FFFD2c019b507fc42c019b50 /* DySolverControl.cpp */, - FFFD2c019bb87fc42c019bb8 /* DySolverControlPF.cpp */, - FFFD2c019c207fc42c019c20 /* DySolverPFConstraints.cpp */, - FFFD2c019c887fc42c019c88 /* DySolverPFConstraintsBlock.cpp */, - FFFD2c019cf07fc42c019cf0 /* DyThreadContext.cpp */, - FFFD2c019d587fc42c019d58 /* DyThresholdTable.cpp */, + FFFDb38314007f9eb3831400 /* DyArticulation.cpp */, + FFFDb38314687f9eb3831468 /* DyArticulationContactPrep.cpp */, + FFFDb38314d07f9eb38314d0 /* DyArticulationContactPrepPF.cpp */, + FFFDb38315387f9eb3831538 /* DyArticulationHelper.cpp */, + FFFDb38315a07f9eb38315a0 /* DyArticulationSIMD.cpp */, + FFFDb38316087f9eb3831608 /* DyArticulationScalar.cpp */, + FFFDb38316707f9eb3831670 /* DyConstraintPartition.cpp */, + FFFDb38316d87f9eb38316d8 /* DyConstraintSetup.cpp */, + FFFDb38317407f9eb3831740 /* DyConstraintSetupBlock.cpp */, + FFFDb38317a87f9eb38317a8 /* DyContactPrep.cpp */, + FFFDb38318107f9eb3831810 /* DyContactPrep4.cpp */, + FFFDb38318787f9eb3831878 /* DyContactPrep4PF.cpp */, + FFFDb38318e07f9eb38318e0 /* DyContactPrepPF.cpp */, + FFFDb38319487f9eb3831948 /* DyDynamics.cpp */, + FFFDb38319b07f9eb38319b0 /* DyFrictionCorrelation.cpp */, + FFFDb3831a187f9eb3831a18 /* DyRigidBodyToSolverBody.cpp */, + FFFDb3831a807f9eb3831a80 /* DySolverConstraints.cpp */, + FFFDb3831ae87f9eb3831ae8 /* DySolverConstraintsBlock.cpp */, + FFFDb3831b507f9eb3831b50 /* DySolverControl.cpp */, + FFFDb3831bb87f9eb3831bb8 /* DySolverControlPF.cpp */, + FFFDb3831c207f9eb3831c20 /* DySolverPFConstraints.cpp */, + FFFDb3831c887f9eb3831c88 /* DySolverPFConstraintsBlock.cpp */, + FFFDb3831cf07f9eb3831cf0 /* DyThreadContext.cpp */, + FFFDb3831d587f9eb3831d58 /* DyThresholdTable.cpp */, ); name = "Dynamics Source"; sourceTree = SOURCE_ROOT; }; - FFFB2b8d79f87fc42b8d79f8 /* Dynamics Includes */ = { + FFFBb407ad687f9eb407ad68 /* Dynamics Includes */ = { isa = PBXGroup; children = ( - FFFD2b8dc1b07fc42b8dc1b0 /* DyArticulation.h */, - FFFD2b8dc2187fc42b8dc218 /* DyConstraint.h */, - FFFD2b8dc2807fc42b8dc280 /* DyConstraintWriteBack.h */, - FFFD2b8dc2e87fc42b8dc2e8 /* DyContext.h */, - FFFD2b8dc3507fc42b8dc350 /* DySleepingConfigulation.h */, - FFFD2b8dc3b87fc42b8dc3b8 /* DyThresholdTable.h */, + FFFDb407c3e07f9eb407c3e0 /* DyArticulation.h */, + FFFDb407c4487f9eb407c448 /* DyConstraint.h */, + FFFDb407c4b07f9eb407c4b0 /* DyConstraintWriteBack.h */, + FFFDb407c5187f9eb407c518 /* DyContext.h */, + FFFDb407c5807f9eb407c580 /* DySleepingConfigulation.h */, + FFFDb407c5e87f9eb407c5e8 /* DyThresholdTable.h */, ); name = "Dynamics Includes"; sourceTree = SOURCE_ROOT; }; - FFFB2b8d7a207fc42b8d7a20 /* Dynamics Internal Includes */ = { + FFFBb407ad907f9eb407ad90 /* Dynamics Internal Includes */ = { isa = PBXGroup; children = ( - FFFD2c01a6007fc42c01a600 /* DyArticulationContactPrep.h */, - FFFD2c01a6687fc42c01a668 /* DyArticulationFnsDebug.h */, - FFFD2c01a6d07fc42c01a6d0 /* DyArticulationFnsScalar.h */, - FFFD2c01a7387fc42c01a738 /* DyArticulationFnsSimd.h */, - FFFD2c01a7a07fc42c01a7a0 /* DyArticulationHelper.h */, - FFFD2c01a8087fc42c01a808 /* DyArticulationPImpl.h */, - FFFD2c01a8707fc42c01a870 /* DyArticulationReference.h */, - FFFD2c01a8d87fc42c01a8d8 /* DyArticulationScalar.h */, - FFFD2c01a9407fc42c01a940 /* DyArticulationUtils.h */, - FFFD2c01a9a87fc42c01a9a8 /* DyBodyCoreIntegrator.h */, - FFFD2c01aa107fc42c01aa10 /* DyConstraintPartition.h */, - FFFD2c01aa787fc42c01aa78 /* DyConstraintPrep.h */, - FFFD2c01aae07fc42c01aae0 /* DyContactPrep.h */, - FFFD2c01ab487fc42c01ab48 /* DyContactPrepShared.h */, - FFFD2c01abb07fc42c01abb0 /* DyContactReduction.h */, - FFFD2c01ac187fc42c01ac18 /* DyCorrelationBuffer.h */, - FFFD2c01ac807fc42c01ac80 /* DyDynamics.h */, - FFFD2c01ace87fc42c01ace8 /* DyFrictionPatch.h */, - FFFD2c01ad507fc42c01ad50 /* DyFrictionPatchStreamPair.h */, - FFFD2c01adb87fc42c01adb8 /* DySolverBody.h */, - FFFD2c01ae207fc42c01ae20 /* DySolverConstraint1D.h */, - FFFD2c01ae887fc42c01ae88 /* DySolverConstraint1D4.h */, - FFFD2c01aef07fc42c01aef0 /* DySolverConstraintDesc.h */, - FFFD2c01af587fc42c01af58 /* DySolverConstraintExtShared.h */, - FFFD2c01afc07fc42c01afc0 /* DySolverConstraintTypes.h */, - FFFD2c01b0287fc42c01b028 /* DySolverConstraintsShared.h */, - FFFD2c01b0907fc42c01b090 /* DySolverContact.h */, - FFFD2c01b0f87fc42c01b0f8 /* DySolverContact4.h */, - FFFD2c01b1607fc42c01b160 /* DySolverContactPF.h */, - FFFD2c01b1c87fc42c01b1c8 /* DySolverContactPF4.h */, - FFFD2c01b2307fc42c01b230 /* DySolverContext.h */, - FFFD2c01b2987fc42c01b298 /* DySolverControl.h */, - FFFD2c01b3007fc42c01b300 /* DySolverControlPF.h */, - FFFD2c01b3687fc42c01b368 /* DySolverCore.h */, - FFFD2c01b3d07fc42c01b3d0 /* DySolverExt.h */, - FFFD2c01b4387fc42c01b438 /* DySpatial.h */, - FFFD2c01b4a07fc42c01b4a0 /* DyThreadContext.h */, + FFFDb3832c007f9eb3832c00 /* DyArticulationContactPrep.h */, + FFFDb3832c687f9eb3832c68 /* DyArticulationFnsDebug.h */, + FFFDb3832cd07f9eb3832cd0 /* DyArticulationFnsScalar.h */, + FFFDb3832d387f9eb3832d38 /* DyArticulationFnsSimd.h */, + FFFDb3832da07f9eb3832da0 /* DyArticulationHelper.h */, + FFFDb3832e087f9eb3832e08 /* DyArticulationPImpl.h */, + FFFDb3832e707f9eb3832e70 /* DyArticulationReference.h */, + FFFDb3832ed87f9eb3832ed8 /* DyArticulationScalar.h */, + FFFDb3832f407f9eb3832f40 /* DyArticulationUtils.h */, + FFFDb3832fa87f9eb3832fa8 /* DyBodyCoreIntegrator.h */, + FFFDb38330107f9eb3833010 /* DyConstraintPartition.h */, + FFFDb38330787f9eb3833078 /* DyConstraintPrep.h */, + FFFDb38330e07f9eb38330e0 /* DyContactPrep.h */, + FFFDb38331487f9eb3833148 /* DyContactPrepShared.h */, + FFFDb38331b07f9eb38331b0 /* DyContactReduction.h */, + FFFDb38332187f9eb3833218 /* DyCorrelationBuffer.h */, + FFFDb38332807f9eb3833280 /* DyDynamics.h */, + FFFDb38332e87f9eb38332e8 /* DyFrictionPatch.h */, + FFFDb38333507f9eb3833350 /* DyFrictionPatchStreamPair.h */, + FFFDb38333b87f9eb38333b8 /* DySolverBody.h */, + FFFDb38334207f9eb3833420 /* DySolverConstraint1D.h */, + FFFDb38334887f9eb3833488 /* DySolverConstraint1D4.h */, + FFFDb38334f07f9eb38334f0 /* DySolverConstraintDesc.h */, + FFFDb38335587f9eb3833558 /* DySolverConstraintExtShared.h */, + FFFDb38335c07f9eb38335c0 /* DySolverConstraintTypes.h */, + FFFDb38336287f9eb3833628 /* DySolverConstraintsShared.h */, + FFFDb38336907f9eb3833690 /* DySolverContact.h */, + FFFDb38336f87f9eb38336f8 /* DySolverContact4.h */, + FFFDb38337607f9eb3833760 /* DySolverContactPF.h */, + FFFDb38337c87f9eb38337c8 /* DySolverContactPF4.h */, + FFFDb38338307f9eb3833830 /* DySolverContext.h */, + FFFDb38338987f9eb3833898 /* DySolverControl.h */, + FFFDb38339007f9eb3833900 /* DySolverControlPF.h */, + FFFDb38339687f9eb3833968 /* DySolverCore.h */, + FFFDb38339d07f9eb38339d0 /* DySolverExt.h */, + FFFDb3833a387f9eb3833a38 /* DySpatial.h */, + FFFDb3833aa07f9eb3833aa0 /* DyThreadContext.h */, ); name = "Dynamics Internal Includes"; sourceTree = SOURCE_ROOT; }; - FFFB2bf138507fc42bf13850 /* LowLevelCloth */ = { + FFFBb43314607f9eb4331460 /* LowLevelCloth */ = { isa = PBXGroup; children = ( - FFFB2bf073007fc42bf07300 /* include */, - FFFB2bf073287fc42bf07328 /* src */, + FFFBb432fa407f9eb432fa40 /* include */, + FFFBb432fa687f9eb432fa68 /* src */, ); name = "LowLevelCloth"; sourceTree = "<group>"; }; - FFFB2bf073007fc42bf07300 /* include */ = { + FFFBb432fa407f9eb432fa40 /* include */ = { isa = PBXGroup; children = ( - FFFD2bf00c107fc42bf00c10 /* Cloth.h */, - FFFD2bf00c787fc42bf00c78 /* Fabric.h */, - FFFD2bf00ce07fc42bf00ce0 /* Factory.h */, - FFFD2bf00d487fc42bf00d48 /* PhaseConfig.h */, - FFFD2bf00db07fc42bf00db0 /* Range.h */, - FFFD2bf00e187fc42bf00e18 /* Solver.h */, - FFFD2bf00e807fc42bf00e80 /* Types.h */, + FFFDb4338aa07f9eb4338aa0 /* Cloth.h */, + FFFDb4338b087f9eb4338b08 /* Fabric.h */, + FFFDb4338b707f9eb4338b70 /* Factory.h */, + FFFDb4338bd87f9eb4338bd8 /* PhaseConfig.h */, + FFFDb4338c407f9eb4338c40 /* Range.h */, + FFFDb4338ca87f9eb4338ca8 /* Solver.h */, + FFFDb4338d107f9eb4338d10 /* Types.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2bf073287fc42bf07328 /* src */ = { + FFFBb432fa687f9eb432fa68 /* src */ = { isa = PBXGroup; children = ( - FFFD2b1d14007fc42b1d1400 /* Allocator.h */, - FFFD2b1d14687fc42b1d1468 /* Array.h */, - FFFD2b1d14d07fc42b1d14d0 /* BoundingBox.h */, - FFFD2b1d15387fc42b1d1538 /* ClothBase.h */, - FFFD2b1d15a07fc42b1d15a0 /* ClothImpl.h */, - FFFD2b1d16087fc42b1d1608 /* IndexPair.h */, - FFFD2b1d16707fc42b1d1670 /* IterationState.h */, - FFFD2b1d16d87fc42b1d16d8 /* MovingAverage.h */, - FFFD2b1d17407fc42b1d1740 /* PointInterpolator.h */, - FFFD2b1d17a87fc42b1d17a8 /* Simd.h */, - FFFD2b1d18107fc42b1d1810 /* Simd4f.h */, - FFFD2b1d18787fc42b1d1878 /* Simd4i.h */, - FFFD2b1d18e07fc42b1d18e0 /* SimdTypes.h */, - FFFD2b1d19487fc42b1d1948 /* StackAllocator.h */, - FFFD2b1d19b07fc42b1d19b0 /* SwCloth.h */, - FFFD2b1d1a187fc42b1d1a18 /* SwClothData.h */, - FFFD2b1d1a807fc42b1d1a80 /* SwCollision.h */, - FFFD2b1d1ae87fc42b1d1ae8 /* SwCollisionHelpers.h */, - FFFD2b1d1b507fc42b1d1b50 /* SwFabric.h */, - FFFD2b1d1bb87fc42b1d1bb8 /* SwFactory.h */, - FFFD2b1d1c207fc42b1d1c20 /* SwInterCollision.h */, - FFFD2b1d1c887fc42b1d1c88 /* SwSelfCollision.h */, - FFFD2b1d1cf07fc42b1d1cf0 /* SwSolver.h */, - FFFD2b1d1d587fc42b1d1d58 /* SwSolverKernel.h */, - FFFD2b1d1dc07fc42b1d1dc0 /* TripletScheduler.h */, - FFFD2b1d1e287fc42b1d1e28 /* Vec4T.h */, - FFFD2b1d1e907fc42b1d1e90 /* Allocator.cpp */, - FFFD2b1d1ef87fc42b1d1ef8 /* Factory.cpp */, - FFFD2b1d1f607fc42b1d1f60 /* PhaseConfig.cpp */, - FFFD2b1d1fc87fc42b1d1fc8 /* SwCloth.cpp */, - FFFD2b1d20307fc42b1d2030 /* SwClothData.cpp */, - FFFD2b1d20987fc42b1d2098 /* SwCollision.cpp */, - FFFD2b1d21007fc42b1d2100 /* SwFabric.cpp */, - FFFD2b1d21687fc42b1d2168 /* SwFactory.cpp */, - FFFD2b1d21d07fc42b1d21d0 /* SwInterCollision.cpp */, - FFFD2b1d22387fc42b1d2238 /* SwSelfCollision.cpp */, - FFFD2b1d22a07fc42b1d22a0 /* SwSolver.cpp */, - FFFD2b1d23087fc42b1d2308 /* SwSolverKernel.cpp */, - FFFD2b1d23707fc42b1d2370 /* TripletScheduler.cpp */, + FFFDb499c8007f9eb499c800 /* Allocator.h */, + FFFDb499c8687f9eb499c868 /* Array.h */, + FFFDb499c8d07f9eb499c8d0 /* BoundingBox.h */, + FFFDb499c9387f9eb499c938 /* ClothBase.h */, + FFFDb499c9a07f9eb499c9a0 /* ClothImpl.h */, + FFFDb499ca087f9eb499ca08 /* IndexPair.h */, + FFFDb499ca707f9eb499ca70 /* IterationState.h */, + FFFDb499cad87f9eb499cad8 /* MovingAverage.h */, + FFFDb499cb407f9eb499cb40 /* PointInterpolator.h */, + FFFDb499cba87f9eb499cba8 /* Simd.h */, + FFFDb499cc107f9eb499cc10 /* Simd4f.h */, + FFFDb499cc787f9eb499cc78 /* Simd4i.h */, + FFFDb499cce07f9eb499cce0 /* SimdTypes.h */, + FFFDb499cd487f9eb499cd48 /* StackAllocator.h */, + FFFDb499cdb07f9eb499cdb0 /* SwCloth.h */, + FFFDb499ce187f9eb499ce18 /* SwClothData.h */, + FFFDb499ce807f9eb499ce80 /* SwCollision.h */, + FFFDb499cee87f9eb499cee8 /* SwCollisionHelpers.h */, + FFFDb499cf507f9eb499cf50 /* SwFabric.h */, + FFFDb499cfb87f9eb499cfb8 /* SwFactory.h */, + FFFDb499d0207f9eb499d020 /* SwInterCollision.h */, + FFFDb499d0887f9eb499d088 /* SwSelfCollision.h */, + FFFDb499d0f07f9eb499d0f0 /* SwSolver.h */, + FFFDb499d1587f9eb499d158 /* SwSolverKernel.h */, + FFFDb499d1c07f9eb499d1c0 /* TripletScheduler.h */, + FFFDb499d2287f9eb499d228 /* Vec4T.h */, + FFFDb499d2907f9eb499d290 /* Allocator.cpp */, + FFFDb499d2f87f9eb499d2f8 /* Factory.cpp */, + FFFDb499d3607f9eb499d360 /* PhaseConfig.cpp */, + FFFDb499d3c87f9eb499d3c8 /* SwCloth.cpp */, + FFFDb499d4307f9eb499d430 /* SwClothData.cpp */, + FFFDb499d4987f9eb499d498 /* SwCollision.cpp */, + FFFDb499d5007f9eb499d500 /* SwFabric.cpp */, + FFFDb499d5687f9eb499d568 /* SwFactory.cpp */, + FFFDb499d5d07f9eb499d5d0 /* SwInterCollision.cpp */, + FFFDb499d6387f9eb499d638 /* SwSelfCollision.cpp */, + FFFDb499d6a07f9eb499d6a0 /* SwSolver.cpp */, + FFFDb499d7087f9eb499d708 /* SwSolverKernel.cpp */, + FFFDb499d7707f9eb499d770 /* TripletScheduler.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2d1093507fc42d109350 /* LowLevelParticles */ = { + FFFBb50414c07f9eb50414c0 /* LowLevelParticles */ = { isa = PBXGroup; children = ( - FFFB2d10b2307fc42d10b230 /* include */, - FFFB2d10b2587fc42d10b258 /* src */, + FFFBb504dba07f9eb504dba0 /* include */, + FFFBb504dbc87f9eb504dbc8 /* src */, ); name = "LowLevelParticles"; sourceTree = "<group>"; }; - FFFB2d10b2307fc42d10b230 /* include */ = { + FFFBb504dba07f9eb504dba0 /* include */ = { isa = PBXGroup; children = ( - FFFD2d8040007fc42d804000 /* PtBodyTransformVault.h */, - FFFD2d8040687fc42d804068 /* PtContext.h */, - FFFD2d8040d07fc42d8040d0 /* PtGridCellVector.h */, - FFFD2d8041387fc42d804138 /* PtParticle.h */, - FFFD2d8041a07fc42d8041a0 /* PtParticleContactManagerStream.h */, - FFFD2d8042087fc42d804208 /* PtParticleData.h */, - FFFD2d8042707fc42d804270 /* PtParticleShape.h */, - FFFD2d8042d87fc42d8042d8 /* PtParticleSystemCore.h */, - FFFD2d8043407fc42d804340 /* PtParticleSystemFlags.h */, - FFFD2d8043a87fc42d8043a8 /* PtParticleSystemSim.h */, + FFFDb58104007f9eb5810400 /* PtBodyTransformVault.h */, + FFFDb58104687f9eb5810468 /* PtContext.h */, + FFFDb58104d07f9eb58104d0 /* PtGridCellVector.h */, + FFFDb58105387f9eb5810538 /* PtParticle.h */, + FFFDb58105a07f9eb58105a0 /* PtParticleContactManagerStream.h */, + FFFDb58106087f9eb5810608 /* PtParticleData.h */, + FFFDb58106707f9eb5810670 /* PtParticleShape.h */, + FFFDb58106d87f9eb58106d8 /* PtParticleSystemCore.h */, + FFFDb58107407f9eb5810740 /* PtParticleSystemFlags.h */, + FFFDb58107a87f9eb58107a8 /* PtParticleSystemSim.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2d10b2587fc42d10b258 /* src */ = { + FFFBb504dbc87f9eb504dbc8 /* src */ = { isa = PBXGroup; children = ( - FFFD2d80a0007fc42d80a000 /* PtBatcher.h */, - FFFD2d80a0687fc42d80a068 /* PtCollision.h */, - FFFD2d80a0d07fc42d80a0d0 /* PtCollisionData.h */, - FFFD2d80a1387fc42d80a138 /* PtCollisionHelper.h */, - FFFD2d80a1a07fc42d80a1a0 /* PtCollisionMethods.h */, - FFFD2d80a2087fc42d80a208 /* PtCollisionParameters.h */, - FFFD2d80a2707fc42d80a270 /* PtConfig.h */, - FFFD2d80a2d87fc42d80a2d8 /* PtConstants.h */, - FFFD2d80a3407fc42d80a340 /* PtContextCpu.h */, - FFFD2d80a3a87fc42d80a3a8 /* PtDynamicHelper.h */, - FFFD2d80a4107fc42d80a410 /* PtDynamics.h */, - FFFD2d80a4787fc42d80a478 /* PtDynamicsKernels.h */, - FFFD2d80a4e07fc42d80a4e0 /* PtDynamicsParameters.h */, - FFFD2d80a5487fc42d80a548 /* PtDynamicsTempBuffers.h */, - FFFD2d80a5b07fc42d80a5b0 /* PtHeightFieldAabbTest.h */, - FFFD2d80a6187fc42d80a618 /* PtPacketSections.h */, - FFFD2d80a6807fc42d80a680 /* PtParticleCell.h */, - FFFD2d80a6e87fc42d80a6e8 /* PtParticleOpcodeCache.h */, - FFFD2d80a7507fc42d80a750 /* PtParticleShapeCpu.h */, - FFFD2d80a7b87fc42d80a7b8 /* PtParticleSystemSimCpu.h */, - FFFD2d80a8207fc42d80a820 /* PtSpatialHash.h */, - FFFD2d80a8887fc42d80a888 /* PtSpatialHashHelper.h */, - FFFD2d80a8f07fc42d80a8f0 /* PtTwoWayData.h */, - FFFD2d80a9587fc42d80a958 /* PtBatcher.cpp */, - FFFD2d80a9c07fc42d80a9c0 /* PtBodyTransformVault.cpp */, - FFFD2d80aa287fc42d80aa28 /* PtCollision.cpp */, - FFFD2d80aa907fc42d80aa90 /* PtCollisionBox.cpp */, - FFFD2d80aaf87fc42d80aaf8 /* PtCollisionCapsule.cpp */, - FFFD2d80ab607fc42d80ab60 /* PtCollisionConvex.cpp */, - FFFD2d80abc87fc42d80abc8 /* PtCollisionMesh.cpp */, - FFFD2d80ac307fc42d80ac30 /* PtCollisionPlane.cpp */, - FFFD2d80ac987fc42d80ac98 /* PtCollisionSphere.cpp */, - FFFD2d80ad007fc42d80ad00 /* PtContextCpu.cpp */, - FFFD2d80ad687fc42d80ad68 /* PtDynamics.cpp */, - FFFD2d80add07fc42d80add0 /* PtParticleData.cpp */, - FFFD2d80ae387fc42d80ae38 /* PtParticleShapeCpu.cpp */, - FFFD2d80aea07fc42d80aea0 /* PtParticleSystemSimCpu.cpp */, - FFFD2d80af087fc42d80af08 /* PtSpatialHash.cpp */, - FFFD2d80af707fc42d80af70 /* PtSpatialLocalHash.cpp */, + FFFDb581d0007f9eb581d000 /* PtBatcher.h */, + FFFDb581d0687f9eb581d068 /* PtCollision.h */, + FFFDb581d0d07f9eb581d0d0 /* PtCollisionData.h */, + FFFDb581d1387f9eb581d138 /* PtCollisionHelper.h */, + FFFDb581d1a07f9eb581d1a0 /* PtCollisionMethods.h */, + FFFDb581d2087f9eb581d208 /* PtCollisionParameters.h */, + FFFDb581d2707f9eb581d270 /* PtConfig.h */, + FFFDb581d2d87f9eb581d2d8 /* PtConstants.h */, + FFFDb581d3407f9eb581d340 /* PtContextCpu.h */, + FFFDb581d3a87f9eb581d3a8 /* PtDynamicHelper.h */, + FFFDb581d4107f9eb581d410 /* PtDynamics.h */, + FFFDb581d4787f9eb581d478 /* PtDynamicsKernels.h */, + FFFDb581d4e07f9eb581d4e0 /* PtDynamicsParameters.h */, + FFFDb581d5487f9eb581d548 /* PtDynamicsTempBuffers.h */, + FFFDb581d5b07f9eb581d5b0 /* PtHeightFieldAabbTest.h */, + FFFDb581d6187f9eb581d618 /* PtPacketSections.h */, + FFFDb581d6807f9eb581d680 /* PtParticleCell.h */, + FFFDb581d6e87f9eb581d6e8 /* PtParticleOpcodeCache.h */, + FFFDb581d7507f9eb581d750 /* PtParticleShapeCpu.h */, + FFFDb581d7b87f9eb581d7b8 /* PtParticleSystemSimCpu.h */, + FFFDb581d8207f9eb581d820 /* PtSpatialHash.h */, + FFFDb581d8887f9eb581d888 /* PtSpatialHashHelper.h */, + FFFDb581d8f07f9eb581d8f0 /* PtTwoWayData.h */, + FFFDb581d9587f9eb581d958 /* PtBatcher.cpp */, + FFFDb581d9c07f9eb581d9c0 /* PtBodyTransformVault.cpp */, + FFFDb581da287f9eb581da28 /* PtCollision.cpp */, + FFFDb581da907f9eb581da90 /* PtCollisionBox.cpp */, + FFFDb581daf87f9eb581daf8 /* PtCollisionCapsule.cpp */, + FFFDb581db607f9eb581db60 /* PtCollisionConvex.cpp */, + FFFDb581dbc87f9eb581dbc8 /* PtCollisionMesh.cpp */, + FFFDb581dc307f9eb581dc30 /* PtCollisionPlane.cpp */, + FFFDb581dc987f9eb581dc98 /* PtCollisionSphere.cpp */, + FFFDb581dd007f9eb581dd00 /* PtContextCpu.cpp */, + FFFDb581dd687f9eb581dd68 /* PtDynamics.cpp */, + FFFDb581ddd07f9eb581ddd0 /* PtParticleData.cpp */, + FFFDb581de387f9eb581de38 /* PtParticleShapeCpu.cpp */, + FFFDb581dea07f9eb581dea0 /* PtParticleSystemSimCpu.cpp */, + FFFDb581df087f9eb581df08 /* PtSpatialHash.cpp */, + FFFDb581df707f9eb581df70 /* PtSpatialLocalHash.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2b858e007fc42b858e00 /* PxTask */ = { + FFFBb50aea707f9eb50aea70 /* PxTask */ = { isa = PBXGroup; children = ( - FFFB2b8591507fc42b859150 /* include */, - FFFB2b8591787fc42b859178 /* src */, + FFFBb5309aa07f9eb5309aa0 /* include */, + FFFBb5309ac87f9eb5309ac8 /* src */, ); name = "PxTask"; sourceTree = "<group>"; }; - FFFB2b8591507fc42b859150 /* include */ = { + FFFBb5309aa07f9eb5309aa0 /* include */ = { isa = PBXGroup; children = ( - FFFD2b8529607fc42b852960 /* PxCpuDispatcher.h */, - FFFD2b8529c87fc42b8529c8 /* PxGpuDispatcher.h */, - FFFD2b852a307fc42b852a30 /* PxGpuTask.h */, - FFFD2b852a987fc42b852a98 /* PxTask.h */, - FFFD2b852b007fc42b852b00 /* PxTaskDefine.h */, - FFFD2b852b687fc42b852b68 /* PxTaskManager.h */, + FFFDb50acc407f9eb50acc40 /* PxCpuDispatcher.h */, + FFFDb50acca87f9eb50acca8 /* PxGpuDispatcher.h */, + FFFDb50acd107f9eb50acd10 /* PxGpuTask.h */, + FFFDb50acd787f9eb50acd78 /* PxTask.h */, + FFFDb50acde07f9eb50acde0 /* PxTaskDefine.h */, + FFFDb50ace487f9eb50ace48 /* PxTaskManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2b8591787fc42b859178 /* src */ = { + FFFBb5309ac87f9eb5309ac8 /* src */ = { isa = PBXGroup; children = ( - FFFD2b852c607fc42b852c60 /* src/TaskManager.cpp */, + FFFDb50aceb07f9eb50aceb0 /* src/TaskManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2be271907fc42be27190 /* PsFastXml */ = { + FFFBb43575307f9eb4357530 /* PsFastXml */ = { isa = PBXGroup; children = ( - FFFB2be279007fc42be27900 /* include */, - FFFB2be279287fc42be27928 /* src */, + FFFBb43599c07f9eb43599c0 /* include */, + FFFBb43599e87f9eb43599e8 /* src */, ); name = "PsFastXml"; sourceTree = "<group>"; }; - FFFB2be279007fc42be27900 /* include */ = { + FFFBb43599c07f9eb43599c0 /* include */ = { isa = PBXGroup; children = ( - FFFD2be277707fc42be27770 /* PsFastXml.h */, + FFFDb4359b507f9eb4359b50 /* PsFastXml.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2be279287fc42be27928 /* src */ = { + FFFBb43599e87f9eb43599e8 /* src */ = { isa = PBXGroup; children = ( - FFFD2be278907fc42be27890 /* PsFastXml.cpp */, + FFFDb4359c507f9eb4359c50 /* PsFastXml.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; @@ -4995,61 +4995,61 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - FFFA2be2bdd07fc42be2bdd0 /* PhysX */ = { + FFFAb43495107f9eb4349510 /* PhysX */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62be2bdd07fc42be2bdd0 /* Build configuration list for PBXNativeTarget "PhysX" */; + buildConfigurationList = FFF6b43495107f9eb4349510 /* Build configuration list for PBXNativeTarget "PhysX" */; buildPhases = ( - FFF22be2bdd07fc42be2bdd0, - FFF82be2bdd07fc42be2bdd0, - FFFC2be2bdd07fc42be2bdd0, + FFF2b43495107f9eb4349510, + FFF8b43495107f9eb4349510, + FFFCb43495107f9eb4349510, ); buildRules = ( ); dependencies = ( - FFF42be1c2f07fc42be1c2f0, /* LowLevel */ - FFF42be305607fc42be30560, /* LowLevelAABB */ - FFF42be381207fc42be38120, /* LowLevelCloth */ - FFF42be305c07fc42be305c0, /* LowLevelDynamics */ - FFF42be381807fc42be38180, /* LowLevelParticles */ - FFF42be1a9807fc42be1a980, /* PhysXCommon */ - FFF42be2c0c07fc42be2c0c0, /* PxFoundation */ - FFF42be2bd707fc42be2bd70, /* PxPvdSDK */ - FFF42be33fd07fc42be33fd0, /* PxTask */ - FFF42be33f407fc42be33f40, /* SceneQuery */ - FFF42be33fa07fc42be33fa0, /* SimulationController */ + FFF4b435bdf07f9eb435bdf0, /* LowLevel */ + FFF4b435be507f9eb435be50, /* LowLevelAABB */ + FFF4b435c4c07f9eb435c4c0, /* LowLevelCloth */ + FFF4b435c4607f9eb435c460, /* LowLevelDynamics */ + FFF4b43603f07f9eb43603f0, /* LowLevelParticles */ + FFF4b435f5207f9eb435f520, /* PhysXCommon */ + FFF4b43494e07f9eb43494e0, /* PxFoundation */ + FFF4b43494807f9eb4349480, /* PxPvdSDK */ + FFF4b43604e07f9eb43604e0, /* PxTask */ + FFF4b43604507f9eb4360450, /* SceneQuery */ + FFF4b43604b07f9eb43604b0, /* SimulationController */ ); name = "PhysX"; productName = "PhysX"; - productReference = FFFD2be2bdd07fc42be2bdd0 /* PhysX */; + productReference = FFFDb43495107f9eb4349510 /* PhysX */; productType = "com.apple.product-type.library.static"; }; - FFFA2be302307fc42be30230 /* PhysXCharacterKinematic */ = { + FFFAb43604f07f9eb43604f0 /* PhysXCharacterKinematic */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62be302307fc42be30230 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; + buildConfigurationList = FFF6b43604f07f9eb43604f0 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; buildPhases = ( - FFF22be302307fc42be30230, - FFF82be302307fc42be30230, - FFFC2be302307fc42be30230, + FFF2b43604f07f9eb43604f0, + FFF8b43604f07f9eb43604f0, + FFFCb43604f07f9eb43604f0, ); buildRules = ( ); dependencies = ( - FFF42be316a07fc42be316a0, /* PhysXCommon */ - FFF42be356807fc42be35680, /* PhysXExtensions */ - FFF42be347507fc42be34750, /* PxFoundation */ + FFF4b435d4507f9eb435d450, /* PhysXCommon */ + FFF4b4360d107f9eb4360d10, /* PhysXExtensions */ + FFF4b435d2507f9eb435d250, /* PxFoundation */ ); name = "PhysXCharacterKinematic"; productName = "PhysXCharacterKinematic"; - productReference = FFFD2be302307fc42be30230 /* PhysXCharacterKinematic */; + productReference = FFFDb43604f07f9eb43604f0 /* PhysXCharacterKinematic */; productType = "com.apple.product-type.library.static"; }; - FFFA2be373c07fc42be373c0 /* PhysXVehicle */ = { + FFFAb435d6307f9eb435d630 /* PhysXVehicle */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62be373c07fc42be373c0 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; + buildConfigurationList = FFF6b435d6307f9eb435d630 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; buildPhases = ( - FFF22be373c07fc42be373c0, - FFF82be373c07fc42be373c0, - FFFC2be373c07fc42be373c0, + FFF2b435d6307f9eb435d630, + FFF8b435d6307f9eb435d630, + FFFCb435d6307f9eb435d630, ); buildRules = ( ); @@ -5057,34 +5057,34 @@ ); name = "PhysXVehicle"; productName = "PhysXVehicle"; - productReference = FFFD2be373c07fc42be373c0 /* PhysXVehicle */; + productReference = FFFDb435d6307f9eb435d630 /* PhysXVehicle */; productType = "com.apple.product-type.library.static"; }; - FFFA2be415207fc42be41520 /* PhysXExtensions */ = { + FFFAb57071d07f9eb57071d0 /* PhysXExtensions */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62be415207fc42be41520 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; + buildConfigurationList = FFF6b57071d07f9eb57071d0 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; buildPhases = ( - FFF22be415207fc42be41520, - FFF82be415207fc42be41520, - FFFC2be415207fc42be41520, + FFF2b57071d07f9eb57071d0, + FFF8b57071d07f9eb57071d0, + FFFCb57071d07f9eb57071d0, ); buildRules = ( ); dependencies = ( - FFF42be419a07fc42be419a0, /* PsFastXml */ + FFF4b57076507f9eb5707650, /* PsFastXml */ ); name = "PhysXExtensions"; productName = "PhysXExtensions"; - productReference = FFFD2be415207fc42be41520 /* PhysXExtensions */; + productReference = FFFDb57071d07f9eb57071d0 /* PhysXExtensions */; productType = "com.apple.product-type.library.static"; }; - FFFA2be53ef07fc42be53ef0 /* SceneQuery */ = { + FFFAb5719ba07f9eb5719ba0 /* SceneQuery */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62be53ef07fc42be53ef0 /* Build configuration list for PBXNativeTarget "SceneQuery" */; + buildConfigurationList = FFF6b5719ba07f9eb5719ba0 /* Build configuration list for PBXNativeTarget "SceneQuery" */; buildPhases = ( - FFF22be53ef07fc42be53ef0, - FFF82be53ef07fc42be53ef0, - FFFC2be53ef07fc42be53ef0, + FFF2b5719ba07f9eb5719ba0, + FFF8b5719ba07f9eb5719ba0, + FFFCb5719ba07f9eb5719ba0, ); buildRules = ( ); @@ -5092,16 +5092,16 @@ ); name = "SceneQuery"; productName = "SceneQuery"; - productReference = FFFD2be53ef07fc42be53ef0 /* SceneQuery */; + productReference = FFFDb5719ba07f9eb5719ba0 /* SceneQuery */; productType = "com.apple.product-type.library.static"; }; - FFFA2be585307fc42be58530 /* SimulationController */ = { + FFFAb571e1e07f9eb571e1e0 /* SimulationController */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62be585307fc42be58530 /* Build configuration list for PBXNativeTarget "SimulationController" */; + buildConfigurationList = FFF6b571e1e07f9eb571e1e0 /* Build configuration list for PBXNativeTarget "SimulationController" */; buildPhases = ( - FFF22be585307fc42be58530, - FFF82be585307fc42be58530, - FFFC2be585307fc42be58530, + FFF2b571e1e07f9eb571e1e0, + FFF8b571e1e07f9eb571e1e0, + FFFCb571e1e07f9eb571e1e0, ); buildRules = ( ); @@ -5109,54 +5109,54 @@ ); name = "SimulationController"; productName = "SimulationController"; - productReference = FFFD2be585307fc42be58530 /* SimulationController */; + productReference = FFFDb571e1e07f9eb571e1e0 /* SimulationController */; productType = "com.apple.product-type.library.static"; }; - FFFA2be5ccd07fc42be5ccd0 /* PhysXCooking */ = { + FFFAb472b3907f9eb472b390 /* PhysXCooking */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62be5ccd07fc42be5ccd0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; + buildConfigurationList = FFF6b472b3907f9eb472b390 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; buildPhases = ( - FFF22be5ccd07fc42be5ccd0, - FFF82be5ccd07fc42be5ccd0, - FFFC2be5ccd07fc42be5ccd0, + FFF2b472b3907f9eb472b390, + FFF8b472b3907f9eb472b390, + FFFCb472b3907f9eb472b390, ); buildRules = ( ); dependencies = ( - FFF42be665207fc42be66520, /* PhysXCommon */ - FFF42be664407fc42be66440, /* PhysXExtensions */ - FFF42be61c507fc42be61c50, /* PxFoundation */ + FFF4b4723bd07f9eb4723bd0, /* PhysXCommon */ + FFF4b472ed907f9eb472ed90, /* PhysXExtensions */ + FFF4b472af607f9eb472af60, /* PxFoundation */ ); name = "PhysXCooking"; productName = "PhysXCooking"; - productReference = FFFD2be5ccd07fc42be5ccd0 /* PhysXCooking */; + productReference = FFFDb472b3907f9eb472b390 /* PhysXCooking */; productType = "com.apple.product-type.library.static"; }; - FFFA2b949d707fc42b949d70 /* PhysXCommon */ = { + FFFAb43288707f9eb4328870 /* PhysXCommon */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62b949d707fc42b949d70 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; + buildConfigurationList = FFF6b43288707f9eb4328870 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; buildPhases = ( - FFF22b949d707fc42b949d70, - FFF82b949d707fc42b949d70, - FFFC2b949d707fc42b949d70, + FFF2b43288707f9eb4328870, + FFF8b43288707f9eb4328870, + FFFCb43288707f9eb4328870, ); buildRules = ( ); dependencies = ( - FFF42b95b6107fc42b95b610, /* PxFoundation */ + FFF4b43213307f9eb4321330, /* PxFoundation */ ); name = "PhysXCommon"; productName = "PhysXCommon"; - productReference = FFFD2b949d707fc42b949d70 /* PhysXCommon */; + productReference = FFFDb43288707f9eb4328870 /* PhysXCommon */; productType = "com.apple.product-type.library.static"; }; - FFFA2b95e5907fc42b95e590 /* PxFoundation */ = { + FFFAb430a8607f9eb430a860 /* PxFoundation */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62b95e5907fc42b95e590 /* Build configuration list for PBXNativeTarget "PxFoundation" */; + buildConfigurationList = FFF6b430a8607f9eb430a860 /* Build configuration list for PBXNativeTarget "PxFoundation" */; buildPhases = ( - FFF22b95e5907fc42b95e590, - FFF82b95e5907fc42b95e590, - FFFC2b95e5907fc42b95e590, + FFF2b430a8607f9eb430a860, + FFF8b430a8607f9eb430a860, + FFFCb430a8607f9eb430a860, ); buildRules = ( ); @@ -5164,34 +5164,34 @@ ); name = "PxFoundation"; productName = "PxFoundation"; - productReference = FFFD2b95e5907fc42b95e590 /* PxFoundation */; + productReference = FFFDb430a8607f9eb430a860 /* PxFoundation */; productType = "com.apple.product-type.library.static"; }; - FFFA2b8e87e07fc42b8e87e0 /* PxPvdSDK */ = { + FFFAb2c116407f9eb2c11640 /* PxPvdSDK */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62b8e87e07fc42b8e87e0 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; + buildConfigurationList = FFF6b2c116407f9eb2c11640 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; buildPhases = ( - FFF22b8e87e07fc42b8e87e0, - FFF82b8e87e07fc42b8e87e0, - FFFC2b8e87e07fc42b8e87e0, + FFF2b2c116407f9eb2c11640, + FFF8b2c116407f9eb2c11640, + FFFCb2c116407f9eb2c11640, ); buildRules = ( ); dependencies = ( - FFF42b8fa5707fc42b8fa570, /* PxFoundation */ + FFF4b2c108007f9eb2c10800, /* PxFoundation */ ); name = "PxPvdSDK"; productName = "PxPvdSDK"; - productReference = FFFD2b8e87e07fc42b8e87e0 /* PxPvdSDK */; + productReference = FFFDb2c116407f9eb2c11640 /* PxPvdSDK */; productType = "com.apple.product-type.library.static"; }; - FFFA2b9141107fc42b914110 /* LowLevel */ = { + FFFAb50092607f9eb5009260 /* LowLevel */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62b9141107fc42b914110 /* Build configuration list for PBXNativeTarget "LowLevel" */; + buildConfigurationList = FFF6b50092607f9eb5009260 /* Build configuration list for PBXNativeTarget "LowLevel" */; buildPhases = ( - FFF22b9141107fc42b914110, - FFF82b9141107fc42b914110, - FFFC2b9141107fc42b914110, + FFF2b50092607f9eb5009260, + FFF8b50092607f9eb5009260, + FFFCb50092607f9eb5009260, ); buildRules = ( ); @@ -5199,16 +5199,16 @@ ); name = "LowLevel"; productName = "LowLevel"; - productReference = FFFD2b9141107fc42b914110 /* LowLevel */; + productReference = FFFDb50092607f9eb5009260 /* LowLevel */; productType = "com.apple.product-type.library.static"; }; - FFFA2bdf89e07fc42bdf89e0 /* LowLevelAABB */ = { + FFFAb5034e907f9eb5034e90 /* LowLevelAABB */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62bdf89e07fc42bdf89e0 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; + buildConfigurationList = FFF6b5034e907f9eb5034e90 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; buildPhases = ( - FFF22bdf89e07fc42bdf89e0, - FFF82bdf89e07fc42bdf89e0, - FFFC2bdf89e07fc42bdf89e0, + FFF2b5034e907f9eb5034e90, + FFF8b5034e907f9eb5034e90, + FFFCb5034e907f9eb5034e90, ); buildRules = ( ); @@ -5216,16 +5216,16 @@ ); name = "LowLevelAABB"; productName = "LowLevelAABB"; - productReference = FFFD2bdf89e07fc42bdf89e0 /* LowLevelAABB */; + productReference = FFFDb5034e907f9eb5034e90 /* LowLevelAABB */; productType = "com.apple.product-type.library.static"; }; - FFFA2b8ca5207fc42b8ca520 /* LowLevelDynamics */ = { + FFFAb40739207f9eb4073920 /* LowLevelDynamics */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62b8ca5207fc42b8ca520 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; + buildConfigurationList = FFF6b40739207f9eb4073920 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; buildPhases = ( - FFF22b8ca5207fc42b8ca520, - FFF82b8ca5207fc42b8ca520, - FFFC2b8ca5207fc42b8ca520, + FFF2b40739207f9eb4073920, + FFF8b40739207f9eb4073920, + FFFCb40739207f9eb4073920, ); buildRules = ( ); @@ -5233,16 +5233,16 @@ ); name = "LowLevelDynamics"; productName = "LowLevelDynamics"; - productReference = FFFD2b8ca5207fc42b8ca520 /* LowLevelDynamics */; + productReference = FFFDb40739207f9eb4073920 /* LowLevelDynamics */; productType = "com.apple.product-type.library.static"; }; - FFFA2bf138507fc42bf13850 /* LowLevelCloth */ = { + FFFAb43314607f9eb4331460 /* LowLevelCloth */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62bf138507fc42bf13850 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; + buildConfigurationList = FFF6b43314607f9eb4331460 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; buildPhases = ( - FFF22bf138507fc42bf13850, - FFF82bf138507fc42bf13850, - FFFC2bf138507fc42bf13850, + FFF2b43314607f9eb4331460, + FFF8b43314607f9eb4331460, + FFFCb43314607f9eb4331460, ); buildRules = ( ); @@ -5250,16 +5250,16 @@ ); name = "LowLevelCloth"; productName = "LowLevelCloth"; - productReference = FFFD2bf138507fc42bf13850 /* LowLevelCloth */; + productReference = FFFDb43314607f9eb4331460 /* LowLevelCloth */; productType = "com.apple.product-type.library.static"; }; - FFFA2d1093507fc42d109350 /* LowLevelParticles */ = { + FFFAb50414c07f9eb50414c0 /* LowLevelParticles */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62d1093507fc42d109350 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; + buildConfigurationList = FFF6b50414c07f9eb50414c0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; buildPhases = ( - FFF22d1093507fc42d109350, - FFF82d1093507fc42d109350, - FFFC2d1093507fc42d109350, + FFF2b50414c07f9eb50414c0, + FFF8b50414c07f9eb50414c0, + FFFCb50414c07f9eb50414c0, ); buildRules = ( ); @@ -5267,16 +5267,16 @@ ); name = "LowLevelParticles"; productName = "LowLevelParticles"; - productReference = FFFD2d1093507fc42d109350 /* LowLevelParticles */; + productReference = FFFDb50414c07f9eb50414c0 /* LowLevelParticles */; productType = "com.apple.product-type.library.static"; }; - FFFA2b858e007fc42b858e00 /* PxTask */ = { + FFFAb50aea707f9eb50aea70 /* PxTask */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62b858e007fc42b858e00 /* Build configuration list for PBXNativeTarget "PxTask" */; + buildConfigurationList = FFF6b50aea707f9eb50aea70 /* Build configuration list for PBXNativeTarget "PxTask" */; buildPhases = ( - FFF22b858e007fc42b858e00, - FFF82b858e007fc42b858e00, - FFFC2b858e007fc42b858e00, + FFF2b50aea707f9eb50aea70, + FFF8b50aea707f9eb50aea70, + FFFCb50aea707f9eb50aea70, ); buildRules = ( ); @@ -5284,16 +5284,16 @@ ); name = "PxTask"; productName = "PxTask"; - productReference = FFFD2b858e007fc42b858e00 /* PxTask */; + productReference = FFFDb50aea707f9eb50aea70 /* PxTask */; productType = "com.apple.product-type.library.static"; }; - FFFA2be271907fc42be27190 /* PsFastXml */ = { + FFFAb43575307f9eb4357530 /* PsFastXml */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62be271907fc42be27190 /* Build configuration list for PBXNativeTarget "PsFastXml" */; + buildConfigurationList = FFF6b43575307f9eb4357530 /* Build configuration list for PBXNativeTarget "PsFastXml" */; buildPhases = ( - FFF22be271907fc42be27190, - FFF82be271907fc42be27190, - FFFC2be271907fc42be27190, + FFF2b43575307f9eb4357530, + FFF8b43575307f9eb4357530, + FFFCb43575307f9eb4357530, ); buildRules = ( ); @@ -5301,213 +5301,213 @@ ); name = "PsFastXml"; productName = "PsFastXml"; - productReference = FFFD2be271907fc42be27190 /* PsFastXml */; + productReference = FFFDb43575307f9eb4357530 /* PsFastXml */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin XCConfigurationList section */ - FFF62be2bdd07fc42be2bdd0 = { + FFF6b43495107f9eb4349510 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c855c007fc42c855c00, - FFF72c8562f07fc42c8562f0, - FFF72c8569e07fc42c8569e0, - FFF72c8570d07fc42c8570d0, + FFF7b303ac007f9eb303ac00, + FFF7b303b2f07f9eb303b2f0, + FFF7b303b9e07f9eb303b9e0, + FFF7b303c0d07f9eb303c0d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF62be302307fc42be30230 = { + FFF6b43604f07f9eb43604f0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c8578007fc42c857800, - FFF72c857ef07fc42c857ef0, - FFF72c8585e07fc42c8585e0, - FFF72c858cd07fc42c858cd0, + FFF7b303c8007f9eb303c800, + FFF7b303cef07f9eb303cef0, + FFF7b303d5e07f9eb303d5e0, + FFF7b303dcd07f9eb303dcd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62be373c07fc42be373c0 = { + FFF6b435d6307f9eb435d630 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c8594007fc42c859400, - FFF72c859af07fc42c859af0, - FFF72c85a1e07fc42c85a1e0, - FFF72c85a8d07fc42c85a8d0, + FFF7b303e4007f9eb303e400, + FFF7b303eaf07f9eb303eaf0, + FFF7b303f1e07f9eb303f1e0, + FFF7b303f8d07f9eb303f8d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62be415207fc42be41520 = { + FFF6b57071d07f9eb57071d0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c85b0007fc42c85b000, - FFF72c85b6f07fc42c85b6f0, - FFF72c85bde07fc42c85bde0, - FFF72c85c4d07fc42c85c4d0, + FFF7b30400007f9eb3040000, + FFF7b30406f07f9eb30406f0, + FFF7b3040de07f9eb3040de0, + FFF7b30414d07f9eb30414d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62be53ef07fc42be53ef0 = { + FFF6b5719ba07f9eb5719ba0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c85cc007fc42c85cc00, - FFF72c85d2f07fc42c85d2f0, - FFF72c85d9e07fc42c85d9e0, - FFF72c85e0d07fc42c85e0d0, + FFF7b3041c007f9eb3041c00, + FFF7b30422f07f9eb30422f0, + FFF7b30429e07f9eb30429e0, + FFF7b30430d07f9eb30430d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62be585307fc42be58530 = { + FFF6b571e1e07f9eb571e1e0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c85e8007fc42c85e800, - FFF72c85eef07fc42c85eef0, - FFF72c85f5e07fc42c85f5e0, - FFF72c85fcd07fc42c85fcd0, + FFF7b30438007f9eb3043800, + FFF7b3043ef07f9eb3043ef0, + FFF7b30445e07f9eb30445e0, + FFF7b3044cd07f9eb3044cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62be5ccd07fc42be5ccd0 = { + FFF6b472b3907f9eb472b390 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c8604007fc42c860400, - FFF72c860af07fc42c860af0, - FFF72c8611e07fc42c8611e0, - FFF72c8618d07fc42c8618d0, + FFF7b30454007f9eb3045400, + FFF7b3045af07f9eb3045af0, + FFF7b30461e07f9eb30461e0, + FFF7b30468d07f9eb30468d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF62b949d707fc42b949d70 = { + FFF6b43288707f9eb4328870 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72b1a2e007fc42b1a2e00, - FFF72b1a34f07fc42b1a34f0, - FFF72b1a3be07fc42b1a3be0, - FFF72b1a42d07fc42b1a42d0, + FFF7b3829e007f9eb3829e00, + FFF7b382a4f07f9eb382a4f0, + FFF7b382abe07f9eb382abe0, + FFF7b382b2d07f9eb382b2d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF62b95e5907fc42b95e590 = { + FFF6b430a8607f9eb430a860 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72b1aa4007fc42b1aa400, - FFF72b1aaaf07fc42b1aaaf0, - FFF72b1ab1e07fc42b1ab1e0, - FFF72b1ab8d07fc42b1ab8d0, + FFF7b498f2007f9eb498f200, + FFF7b498f8f07f9eb498f8f0, + FFF7b498ffe07f9eb498ffe0, + FFF7b49906d07f9eb49906d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62b8e87e07fc42b8e87e0 = { + FFF6b2c116407f9eb2c11640 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c00de007fc42c00de00, - FFF72c00e4f07fc42c00e4f0, - FFF72c00ebe07fc42c00ebe0, - FFF72c00f2d07fc42c00f2d0, + FFF7b3028c007f9eb3028c00, + FFF7b30292f07f9eb30292f0, + FFF7b30299e07f9eb30299e0, + FFF7b302a0d07f9eb302a0d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62b9141107fc42b914110 = { + FFF6b50092607f9eb5009260 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72b1c94007fc42b1c9400, - FFF72b1c9af07fc42b1c9af0, - FFF72b1ca1e07fc42b1ca1e0, - FFF72b1ca8d07fc42b1ca8d0, + FFF7b580be007f9eb580be00, + FFF7b580c4f07f9eb580c4f0, + FFF7b580cbe07f9eb580cbe0, + FFF7b580d2d07f9eb580d2d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62bdf89e07fc42bdf89e0 = { + FFF6b5034e907f9eb5034e90 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c828a007fc42c828a00, - FFF72c8290f07fc42c8290f0, - FFF72c8297e07fc42c8297e0, - FFF72c829ed07fc42c829ed0, + FFF7b58140007f9eb5814000, + FFF7b58146f07f9eb58146f0, + FFF7b5814de07f9eb5814de0, + FFF7b58154d07f9eb58154d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62b8ca5207fc42b8ca520 = { + FFF6b40739207f9eb4073920 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c01c0007fc42c01c000, - FFF72c01c6f07fc42c01c6f0, - FFF72c01cde07fc42c01cde0, - FFF72c01d4d07fc42c01d4d0, + FFF7b38346007f9eb3834600, + FFF7b3834cf07f9eb3834cf0, + FFF7b38353e07f9eb38353e0, + FFF7b3835ad07f9eb3835ad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62bf138507fc42bf13850 = { + FFF6b43314607f9eb4331460 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72b1d2e007fc42b1d2e00, - FFF72b1d34f07fc42b1d34f0, - FFF72b1d3be07fc42b1d3be0, - FFF72b1d42d07fc42b1d42d0, + FFF7b499e2007f9eb499e200, + FFF7b499e8f07f9eb499e8f0, + FFF7b499efe07f9eb499efe0, + FFF7b499f6d07f9eb499f6d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62d1093507fc42d109350 = { + FFF6b50414c07f9eb50414c0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72d80ba007fc42d80ba00, - FFF72d80c0f07fc42d80c0f0, - FFF72d80c7e07fc42d80c7e0, - FFF72d80ced07fc42d80ced0, + FFF7b581ea007f9eb581ea00, + FFF7b581f0f07f9eb581f0f0, + FFF7b581f7e07f9eb581f7e0, + FFF7b581fed07f9eb581fed0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62b858e007fc42b858e00 = { + FFF6b50aea707f9eb50aea70 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c0242007fc42c024200, - FFF72c0248f07fc42c0248f0, - FFF72c024fe07fc42c024fe0, - FFF72c0256d07fc42c0256d0, + FFF7b3848a007f9eb3848a00, + FFF7b38490f07f9eb38490f0, + FFF7b38497e07f9eb38497e0, + FFF7b3849ed07f9eb3849ed0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62be271907fc42be27190 = { + FFF6b43575307f9eb4357530 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c82fc007fc42c82fc00, - FFF72c8302f07fc42c8302f0, - FFF72c8309e07fc42c8309e0, - FFF72c8310d07fc42c8310d0, + FFF7b49a54007f9eb49a5400, + FFF7b49a5af07f9eb49a5af0, + FFF7b49a61e07f9eb49a61e0, + FFF7b49a68d07f9eb49a68d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62ac7d1c07fc42ac7d1c0 = { + FFF6b4106fb07f9eb4106fb0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF32c855c007fc42c855c00 /* release */, - FFF32c8562f07fc42c8562f0 /* debug */, - FFF32c8569e07fc42c8569e0 /* checked */, - FFF32c8570d07fc42c8570d0 /* profile */, + FFF3b303ac007f9eb303ac00 /* release */, + FFF3b303b2f07f9eb303b2f0 /* debug */, + FFF3b303b9e07f9eb303b9e0 /* checked */, + FFF3b303c0d07f9eb303c0d0 /* profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; /* End XCConfigurationList section */ /* Begin XCBuildConfiguration section */ - FFF72c855c007fc42c855c00 /* release */ = { + FFF7b303ac007f9eb303ac00 /* 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; @@ -5537,7 +5537,7 @@ }; name = "release"; }; - FFF72c8562f07fc42c8562f0 /* debug */ = { + FFF7b303b2f07f9eb303b2f0 /* 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; @@ -5567,7 +5567,7 @@ }; name = "debug"; }; - FFF72c8569e07fc42c8569e0 /* checked */ = { + FFF7b303b9e07f9eb303b9e0 /* 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; @@ -5597,7 +5597,7 @@ }; name = "checked"; }; - FFF72c8570d07fc42c8570d0 /* profile */ = { + FFF7b303c0d07f9eb303c0d0 /* 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; @@ -5627,7 +5627,7 @@ }; name = "profile"; }; - FFF72c8578007fc42c857800 /* debug */ = { + FFF7b303c8007f9eb303c800 /* 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; @@ -5657,7 +5657,7 @@ }; name = "debug"; }; - FFF72c857ef07fc42c857ef0 /* checked */ = { + FFF7b303cef07f9eb303cef0 /* 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; @@ -5687,7 +5687,7 @@ }; name = "checked"; }; - FFF72c8585e07fc42c8585e0 /* profile */ = { + FFF7b303d5e07f9eb303d5e0 /* 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; @@ -5717,7 +5717,7 @@ }; name = "profile"; }; - FFF72c858cd07fc42c858cd0 /* release */ = { + FFF7b303dcd07f9eb303dcd0 /* 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; @@ -5747,7 +5747,7 @@ }; name = "release"; }; - FFF72c8594007fc42c859400 /* debug */ = { + FFF7b303e4007f9eb303e400 /* 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; @@ -5777,7 +5777,7 @@ }; name = "debug"; }; - FFF72c859af07fc42c859af0 /* checked */ = { + FFF7b303eaf07f9eb303eaf0 /* 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; @@ -5807,7 +5807,7 @@ }; name = "checked"; }; - FFF72c85a1e07fc42c85a1e0 /* profile */ = { + FFF7b303f1e07f9eb303f1e0 /* 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; @@ -5837,7 +5837,7 @@ }; name = "profile"; }; - FFF72c85a8d07fc42c85a8d0 /* release */ = { + FFF7b303f8d07f9eb303f8d0 /* 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; @@ -5867,7 +5867,7 @@ }; name = "release"; }; - FFF72c85b0007fc42c85b000 /* debug */ = { + FFF7b30400007f9eb3040000 /* 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; @@ -5875,7 +5875,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5897,7 +5897,7 @@ }; name = "debug"; }; - FFF72c85b6f07fc42c85b6f0 /* checked */ = { + FFF7b30406f07f9eb30406f0 /* 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; @@ -5905,7 +5905,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5927,7 +5927,7 @@ }; name = "checked"; }; - FFF72c85bde07fc42c85bde0 /* profile */ = { + FFF7b3040de07f9eb3040de0 /* 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; @@ -5935,7 +5935,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5957,7 +5957,7 @@ }; name = "profile"; }; - FFF72c85c4d07fc42c85c4d0 /* release */ = { + FFF7b30414d07f9eb30414d0 /* 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; @@ -5965,7 +5965,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5987,7 +5987,7 @@ }; name = "release"; }; - FFF72c85cc007fc42c85cc00 /* debug */ = { + FFF7b3041c007f9eb3041c00 /* 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; @@ -6017,7 +6017,7 @@ }; name = "debug"; }; - FFF72c85d2f07fc42c85d2f0 /* checked */ = { + FFF7b30422f07f9eb30422f0 /* 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; @@ -6047,7 +6047,7 @@ }; name = "checked"; }; - FFF72c85d9e07fc42c85d9e0 /* profile */ = { + FFF7b30429e07f9eb30429e0 /* 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; @@ -6077,7 +6077,7 @@ }; name = "profile"; }; - FFF72c85e0d07fc42c85e0d0 /* release */ = { + FFF7b30430d07f9eb30430d0 /* 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; @@ -6107,7 +6107,7 @@ }; name = "release"; }; - FFF72c85e8007fc42c85e800 /* debug */ = { + FFF7b30438007f9eb3043800 /* 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; @@ -6137,7 +6137,7 @@ }; name = "debug"; }; - FFF72c85eef07fc42c85eef0 /* checked */ = { + FFF7b3043ef07f9eb3043ef0 /* 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; @@ -6167,7 +6167,7 @@ }; name = "checked"; }; - FFF72c85f5e07fc42c85f5e0 /* profile */ = { + FFF7b30445e07f9eb30445e0 /* 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; @@ -6197,7 +6197,7 @@ }; name = "profile"; }; - FFF72c85fcd07fc42c85fcd0 /* release */ = { + FFF7b3044cd07f9eb3044cd0 /* 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; @@ -6227,7 +6227,7 @@ }; name = "release"; }; - FFF72c8604007fc42c860400 /* release */ = { + FFF7b30454007f9eb3045400 /* 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; @@ -6257,7 +6257,7 @@ }; name = "release"; }; - FFF72c860af07fc42c860af0 /* debug */ = { + FFF7b3045af07f9eb3045af0 /* 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; @@ -6287,7 +6287,7 @@ }; name = "debug"; }; - FFF72c8611e07fc42c8611e0 /* checked */ = { + FFF7b30461e07f9eb30461e0 /* 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; @@ -6317,7 +6317,7 @@ }; name = "checked"; }; - FFF72c8618d07fc42c8618d0 /* profile */ = { + FFF7b30468d07f9eb30468d0 /* 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; @@ -6347,7 +6347,7 @@ }; name = "profile"; }; - FFF72b1a2e007fc42b1a2e00 /* release */ = { + FFF7b3829e007f9eb3829e00 /* 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; @@ -6377,7 +6377,7 @@ }; name = "release"; }; - FFF72b1a34f07fc42b1a34f0 /* debug */ = { + FFF7b382a4f07f9eb382a4f0 /* 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; @@ -6407,7 +6407,7 @@ }; name = "debug"; }; - FFF72b1a3be07fc42b1a3be0 /* checked */ = { + FFF7b382abe07f9eb382abe0 /* 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; @@ -6437,7 +6437,7 @@ }; name = "checked"; }; - FFF72b1a42d07fc42b1a42d0 /* profile */ = { + FFF7b382b2d07f9eb382b2d0 /* 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; @@ -6467,7 +6467,7 @@ }; name = "profile"; }; - FFF72b1aa4007fc42b1aa400 /* debug */ = { + FFF7b498f2007f9eb498f200 /* 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; @@ -6497,7 +6497,7 @@ }; name = "debug"; }; - FFF72b1aaaf07fc42b1aaaf0 /* release */ = { + FFF7b498f8f07f9eb498f8f0 /* 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; @@ -6527,7 +6527,7 @@ }; name = "release"; }; - FFF72b1ab1e07fc42b1ab1e0 /* checked */ = { + FFF7b498ffe07f9eb498ffe0 /* 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; @@ -6557,7 +6557,7 @@ }; name = "checked"; }; - FFF72b1ab8d07fc42b1ab8d0 /* profile */ = { + FFF7b49906d07f9eb49906d0 /* 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; @@ -6587,7 +6587,7 @@ }; name = "profile"; }; - FFF72c00de007fc42c00de00 /* debug */ = { + FFF7b3028c007f9eb3028c00 /* 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; @@ -6617,7 +6617,7 @@ }; name = "debug"; }; - FFF72c00e4f07fc42c00e4f0 /* release */ = { + FFF7b30292f07f9eb30292f0 /* 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; @@ -6647,7 +6647,7 @@ }; name = "release"; }; - FFF72c00ebe07fc42c00ebe0 /* checked */ = { + FFF7b30299e07f9eb30299e0 /* 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; @@ -6677,7 +6677,7 @@ }; name = "checked"; }; - FFF72c00f2d07fc42c00f2d0 /* profile */ = { + FFF7b302a0d07f9eb302a0d0 /* 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; @@ -6707,7 +6707,7 @@ }; name = "profile"; }; - FFF72b1c94007fc42b1c9400 /* debug */ = { + FFF7b580be007f9eb580be00 /* 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; @@ -6737,7 +6737,7 @@ }; name = "debug"; }; - FFF72b1c9af07fc42b1c9af0 /* checked */ = { + FFF7b580c4f07f9eb580c4f0 /* 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; @@ -6767,7 +6767,7 @@ }; name = "checked"; }; - FFF72b1ca1e07fc42b1ca1e0 /* profile */ = { + FFF7b580cbe07f9eb580cbe0 /* 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; @@ -6797,7 +6797,7 @@ }; name = "profile"; }; - FFF72b1ca8d07fc42b1ca8d0 /* release */ = { + FFF7b580d2d07f9eb580d2d0 /* 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; @@ -6827,7 +6827,7 @@ }; name = "release"; }; - FFF72c828a007fc42c828a00 /* debug */ = { + FFF7b58140007f9eb5814000 /* 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; @@ -6857,7 +6857,7 @@ }; name = "debug"; }; - FFF72c8290f07fc42c8290f0 /* checked */ = { + FFF7b58146f07f9eb58146f0 /* 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; @@ -6887,7 +6887,7 @@ }; name = "checked"; }; - FFF72c8297e07fc42c8297e0 /* profile */ = { + FFF7b5814de07f9eb5814de0 /* 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; @@ -6917,7 +6917,7 @@ }; name = "profile"; }; - FFF72c829ed07fc42c829ed0 /* release */ = { + FFF7b58154d07f9eb58154d0 /* 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; @@ -6947,7 +6947,7 @@ }; name = "release"; }; - FFF72c01c0007fc42c01c000 /* debug */ = { + FFF7b38346007f9eb3834600 /* 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; @@ -6977,7 +6977,7 @@ }; name = "debug"; }; - FFF72c01c6f07fc42c01c6f0 /* checked */ = { + FFF7b3834cf07f9eb3834cf0 /* 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; @@ -7007,7 +7007,7 @@ }; name = "checked"; }; - FFF72c01cde07fc42c01cde0 /* profile */ = { + FFF7b38353e07f9eb38353e0 /* 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; @@ -7037,7 +7037,7 @@ }; name = "profile"; }; - FFF72c01d4d07fc42c01d4d0 /* release */ = { + FFF7b3835ad07f9eb3835ad0 /* 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; @@ -7067,7 +7067,7 @@ }; name = "release"; }; - FFF72b1d2e007fc42b1d2e00 /* debug */ = { + FFF7b499e2007f9eb499e200 /* 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; @@ -7097,7 +7097,7 @@ }; name = "debug"; }; - FFF72b1d34f07fc42b1d34f0 /* checked */ = { + FFF7b499e8f07f9eb499e8f0 /* 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; @@ -7127,7 +7127,7 @@ }; name = "checked"; }; - FFF72b1d3be07fc42b1d3be0 /* profile */ = { + FFF7b499efe07f9eb499efe0 /* 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; @@ -7157,7 +7157,7 @@ }; name = "profile"; }; - FFF72b1d42d07fc42b1d42d0 /* release */ = { + FFF7b499f6d07f9eb499f6d0 /* 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; @@ -7187,7 +7187,7 @@ }; name = "release"; }; - FFF72d80ba007fc42d80ba00 /* debug */ = { + FFF7b581ea007f9eb581ea00 /* 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; @@ -7217,7 +7217,7 @@ }; name = "debug"; }; - FFF72d80c0f07fc42d80c0f0 /* checked */ = { + FFF7b581f0f07f9eb581f0f0 /* 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; @@ -7247,7 +7247,7 @@ }; name = "checked"; }; - FFF72d80c7e07fc42d80c7e0 /* profile */ = { + FFF7b581f7e07f9eb581f7e0 /* 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; @@ -7277,7 +7277,7 @@ }; name = "profile"; }; - FFF72d80ced07fc42d80ced0 /* release */ = { + FFF7b581fed07f9eb581fed0 /* 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; @@ -7307,7 +7307,7 @@ }; name = "release"; }; - FFF72c0242007fc42c024200 /* debug */ = { + FFF7b3848a007f9eb3848a00 /* 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; @@ -7337,7 +7337,7 @@ }; name = "debug"; }; - FFF72c0248f07fc42c0248f0 /* release */ = { + FFF7b38490f07f9eb38490f0 /* 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; @@ -7367,7 +7367,7 @@ }; name = "release"; }; - FFF72c024fe07fc42c024fe0 /* checked */ = { + FFF7b38497e07f9eb38497e0 /* 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; @@ -7397,7 +7397,7 @@ }; name = "checked"; }; - FFF72c0256d07fc42c0256d0 /* profile */ = { + FFF7b3849ed07f9eb3849ed0 /* 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; @@ -7427,7 +7427,7 @@ }; name = "profile"; }; - FFF72c82fc007fc42c82fc00 /* debug */ = { + FFF7b49a54007f9eb49a5400 /* 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; @@ -7457,7 +7457,7 @@ }; name = "debug"; }; - FFF72c8302f07fc42c8302f0 /* release */ = { + FFF7b49a5af07f9eb49a5af0 /* 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; @@ -7487,7 +7487,7 @@ }; name = "release"; }; - FFF72c8309e07fc42c8309e0 /* checked */ = { + FFF7b49a61e07f9eb49a61e0 /* 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; @@ -7517,7 +7517,7 @@ }; name = "checked"; }; - FFF72c8310d07fc42c8310d0 /* profile */ = { + FFF7b49a68d07f9eb49a68d0 /* 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; @@ -7547,25 +7547,25 @@ }; name = "profile"; }; - FFF32c855c007fc42c855c00 /* release */ = { + FFF3b303ac007f9eb303ac00 /* release */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "release"; }; - FFF32c8562f07fc42c8562f0 /* debug */ = { + FFF3b303b2f07f9eb303b2f0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "debug"; }; - FFF32c8569e07fc42c8569e0 /* checked */ = { + FFF3b303b9e07f9eb303b9e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "checked"; }; - FFF32c8570d07fc42c8570d0 /* profile */ = { + FFF3b303c0d07f9eb303c0d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { }; @@ -7574,34 +7574,34 @@ /* End XCBuildConfiguration section */ /* Begin PBXProject section */ - FFF92ac7d1c07fc42ac7d1c0 /* Project object */ = { + FFF9b4106fb07f9eb4106fb0 /* Project object */ = { isa = PBXProject; - buildConfigurationList = FFF62ac7d1c07fc42ac7d1c0 /* Build configuration list for PBXProject PhysX */; + buildConfigurationList = FFF6b4106fb07f9eb4106fb0 /* Build configuration list for PBXProject PhysX */; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 1; - mainGroup = FFFB2ac7d2287fc42ac7d228 /* PhysX */; + mainGroup = FFFBb41070187f9eb4107018 /* PhysX */; targets = ( - FFFA2be2bdd07fc42be2bdd0, - FFFA2be302307fc42be30230, - FFFA2be373c07fc42be373c0, - FFFA2be415207fc42be41520, - FFFA2be53ef07fc42be53ef0, - FFFA2be585307fc42be58530, - FFFA2be5ccd07fc42be5ccd0, - FFFA2b949d707fc42b949d70, - FFFA2b95e5907fc42b95e590, - FFFA2b8e87e07fc42b8e87e0, - FFFA2b9141107fc42b914110, - FFFA2bdf89e07fc42bdf89e0, - FFFA2b8ca5207fc42b8ca520, - FFFA2bf138507fc42bf13850, - FFFA2d1093507fc42d109350, - FFFA2b858e007fc42b858e00, - FFFA2be271907fc42be27190, + FFFAb43495107f9eb4349510, + FFFAb43604f07f9eb43604f0, + FFFAb435d6307f9eb435d630, + FFFAb57071d07f9eb57071d0, + FFFAb5719ba07f9eb5719ba0, + FFFAb571e1e07f9eb571e1e0, + FFFAb472b3907f9eb472b390, + FFFAb43288707f9eb4328870, + FFFAb430a8607f9eb430a860, + FFFAb2c116407f9eb2c11640, + FFFAb50092607f9eb5009260, + FFFAb5034e907f9eb5034e90, + FFFAb40739207f9eb4073920, + FFFAb43314607f9eb4331460, + FFFAb50414c07f9eb50414c0, + FFFAb50aea707f9eb50aea70, + FFFAb43575307f9eb4357530, ); }; /* End PBXProject section */ }; - rootObject = FFF92ac7d1c07fc42ac7d1c0 /* Project object */; + rootObject = FFF9b4106fb07f9eb4106fb0 /* 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 819f503e..1156e512 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 */ - FFFF8144ef607f8a8144ef60 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD814803907f8a81480390 /* SceneQuery */; }; - FFFF814608807f8a81460880 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD81484a807f8a81484a80 /* SimulationController */; }; - FFFF8202a0387f8a8202a038 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a0387f8a8202a038 /* NpActor.cpp */; }; - FFFF8202a0a07f8a8202a0a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a0a07f8a8202a0a0 /* NpAggregate.cpp */; }; - FFFF8202a1087f8a8202a108 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a1087f8a8202a108 /* NpArticulation.cpp */; }; - FFFF8202a1707f8a8202a170 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a1707f8a8202a170 /* NpArticulationJoint.cpp */; }; - FFFF8202a1d87f8a8202a1d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a1d87f8a8202a1d8 /* NpArticulationLink.cpp */; }; - FFFF8202a2407f8a8202a240 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a2407f8a8202a240 /* NpBatchQuery.cpp */; }; - FFFF8202a2a87f8a8202a2a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a2a87f8a8202a2a8 /* NpConstraint.cpp */; }; - FFFF8202a3107f8a8202a310 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a3107f8a8202a310 /* NpFactory.cpp */; }; - FFFF8202a3787f8a8202a378 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a3787f8a8202a378 /* NpMaterial.cpp */; }; - FFFF8202a3e07f8a8202a3e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a3e07f8a8202a3e0 /* NpMetaData.cpp */; }; - FFFF8202a4487f8a8202a448 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a4487f8a8202a448 /* NpPhysics.cpp */; }; - FFFF8202a4b07f8a8202a4b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a4b07f8a8202a4b0 /* NpPvdSceneQueryCollector.cpp */; }; - FFFF8202a5187f8a8202a518 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a5187f8a8202a518 /* NpReadCheck.cpp */; }; - FFFF8202a5807f8a8202a580 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a5807f8a8202a580 /* NpRigidDynamic.cpp */; }; - FFFF8202a5e87f8a8202a5e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a5e87f8a8202a5e8 /* NpRigidStatic.cpp */; }; - FFFF8202a6507f8a8202a650 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a6507f8a8202a650 /* NpScene.cpp */; }; - FFFF8202a6b87f8a8202a6b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a6b87f8a8202a6b8 /* NpSceneQueries.cpp */; }; - FFFF8202a7207f8a8202a720 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a7207f8a8202a720 /* NpSerializerAdapter.cpp */; }; - FFFF8202a7887f8a8202a788 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a7887f8a8202a788 /* NpShape.cpp */; }; - FFFF8202a7f07f8a8202a7f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a7f07f8a8202a7f0 /* NpShapeManager.cpp */; }; - FFFF8202a8587f8a8202a858 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a8587f8a8202a858 /* NpSpatialIndex.cpp */; }; - FFFF8202a8c07f8a8202a8c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a8c07f8a8202a8c0 /* NpVolumeCache.cpp */; }; - FFFF8202a9287f8a8202a928 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a9287f8a8202a928 /* NpWriteCheck.cpp */; }; - FFFF8202a9907f8a8202a990 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a9907f8a8202a990 /* PvdMetaDataPvdBinding.cpp */; }; - FFFF8202a9f87f8a8202a9f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202a9f87f8a8202a9f8 /* PvdPhysicsClient.cpp */; }; - FFFF8202ac007f8a8202ac00 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202ac007f8a8202ac00 /* particles/NpParticleFluid.cpp */; }; - FFFF8202ac687f8a8202ac68 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202ac687f8a8202ac68 /* particles/NpParticleSystem.cpp */; }; - FFFF8202b4207f8a8202b420 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202b4207f8a8202b420 /* buffering/ScbActor.cpp */; }; - FFFF8202b4887f8a8202b488 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202b4887f8a8202b488 /* buffering/ScbAggregate.cpp */; }; - FFFF8202b4f07f8a8202b4f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202b4f07f8a8202b4f0 /* buffering/ScbBase.cpp */; }; - FFFF8202b5587f8a8202b558 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202b5587f8a8202b558 /* buffering/ScbCloth.cpp */; }; - FFFF8202b5c07f8a8202b5c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202b5c07f8a8202b5c0 /* buffering/ScbMetaData.cpp */; }; - FFFF8202b6287f8a8202b628 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202b6287f8a8202b628 /* buffering/ScbParticleSystem.cpp */; }; - FFFF8202b6907f8a8202b690 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202b6907f8a8202b690 /* buffering/ScbScene.cpp */; }; - FFFF8202b6f87f8a8202b6f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202b6f87f8a8202b6f8 /* buffering/ScbScenePvdClient.cpp */; }; - FFFF8202b7607f8a8202b760 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202b7607f8a8202b760 /* buffering/ScbShape.cpp */; }; - FFFF8202b9007f8a8202b900 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202b9007f8a8202b900 /* cloth/NpCloth.cpp */; }; - FFFF8202b9687f8a8202b968 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202b9687f8a8202b968 /* cloth/NpClothFabric.cpp */; }; - FFFF8202b9d07f8a8202b9d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202b9d07f8a8202b9d0 /* cloth/NpClothParticleData.cpp */; }; - FFFF8202ba387f8a8202ba38 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202ba387f8a8202ba38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; - FFFF820241a87f8a820241a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD820241a87f8a820241a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; - FFFF820242107f8a82024210 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD820242107f8a82024210 /* core/src/PxMetaDataObjects.cpp */; }; + FFFF5d179a207fc05d179a20 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5d19d4d07fc05d19d4d0 /* SceneQuery */; }; + FFFF5d179a807fc05d179a80 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5d1a1bc07fc05d1a1bc0 /* SimulationController */; }; + FFFF5a8724387fc05a872438 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8724387fc05a872438 /* NpActor.cpp */; }; + FFFF5a8724a07fc05a8724a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8724a07fc05a8724a0 /* NpAggregate.cpp */; }; + FFFF5a8725087fc05a872508 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8725087fc05a872508 /* NpArticulation.cpp */; }; + FFFF5a8725707fc05a872570 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8725707fc05a872570 /* NpArticulationJoint.cpp */; }; + FFFF5a8725d87fc05a8725d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8725d87fc05a8725d8 /* NpArticulationLink.cpp */; }; + FFFF5a8726407fc05a872640 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8726407fc05a872640 /* NpBatchQuery.cpp */; }; + FFFF5a8726a87fc05a8726a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8726a87fc05a8726a8 /* NpConstraint.cpp */; }; + FFFF5a8727107fc05a872710 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8727107fc05a872710 /* NpFactory.cpp */; }; + FFFF5a8727787fc05a872778 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8727787fc05a872778 /* NpMaterial.cpp */; }; + FFFF5a8727e07fc05a8727e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8727e07fc05a8727e0 /* NpMetaData.cpp */; }; + FFFF5a8728487fc05a872848 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8728487fc05a872848 /* NpPhysics.cpp */; }; + FFFF5a8728b07fc05a8728b0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8728b07fc05a8728b0 /* NpPvdSceneQueryCollector.cpp */; }; + FFFF5a8729187fc05a872918 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8729187fc05a872918 /* NpReadCheck.cpp */; }; + FFFF5a8729807fc05a872980 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8729807fc05a872980 /* NpRigidDynamic.cpp */; }; + FFFF5a8729e87fc05a8729e8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8729e87fc05a8729e8 /* NpRigidStatic.cpp */; }; + FFFF5a872a507fc05a872a50 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a872a507fc05a872a50 /* NpScene.cpp */; }; + FFFF5a872ab87fc05a872ab8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a872ab87fc05a872ab8 /* NpSceneQueries.cpp */; }; + FFFF5a872b207fc05a872b20 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a872b207fc05a872b20 /* NpSerializerAdapter.cpp */; }; + FFFF5a872b887fc05a872b88 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a872b887fc05a872b88 /* NpShape.cpp */; }; + FFFF5a872bf07fc05a872bf0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a872bf07fc05a872bf0 /* NpShapeManager.cpp */; }; + FFFF5a872c587fc05a872c58 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a872c587fc05a872c58 /* NpSpatialIndex.cpp */; }; + FFFF5a872cc07fc05a872cc0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a872cc07fc05a872cc0 /* NpVolumeCache.cpp */; }; + FFFF5a872d287fc05a872d28 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a872d287fc05a872d28 /* NpWriteCheck.cpp */; }; + FFFF5a872d907fc05a872d90 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a872d907fc05a872d90 /* PvdMetaDataPvdBinding.cpp */; }; + FFFF5a872df87fc05a872df8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a872df87fc05a872df8 /* PvdPhysicsClient.cpp */; }; + FFFF5a8730007fc05a873000 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8730007fc05a873000 /* particles/NpParticleFluid.cpp */; }; + FFFF5a8730687fc05a873068 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8730687fc05a873068 /* particles/NpParticleSystem.cpp */; }; + FFFF5a8738207fc05a873820 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8738207fc05a873820 /* buffering/ScbActor.cpp */; }; + FFFF5a8738887fc05a873888 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8738887fc05a873888 /* buffering/ScbAggregate.cpp */; }; + FFFF5a8738f07fc05a8738f0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8738f07fc05a8738f0 /* buffering/ScbBase.cpp */; }; + FFFF5a8739587fc05a873958 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8739587fc05a873958 /* buffering/ScbCloth.cpp */; }; + FFFF5a8739c07fc05a8739c0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8739c07fc05a8739c0 /* buffering/ScbMetaData.cpp */; }; + FFFF5a873a287fc05a873a28 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a873a287fc05a873a28 /* buffering/ScbParticleSystem.cpp */; }; + FFFF5a873a907fc05a873a90 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a873a907fc05a873a90 /* buffering/ScbScene.cpp */; }; + FFFF5a873af87fc05a873af8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a873af87fc05a873af8 /* buffering/ScbScenePvdClient.cpp */; }; + FFFF5a873b607fc05a873b60 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a873b607fc05a873b60 /* buffering/ScbShape.cpp */; }; + FFFF5a873d007fc05a873d00 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a873d007fc05a873d00 /* cloth/NpCloth.cpp */; }; + FFFF5a873d687fc05a873d68 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a873d687fc05a873d68 /* cloth/NpClothFabric.cpp */; }; + FFFF5a873dd07fc05a873dd0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a873dd07fc05a873dd0 /* cloth/NpClothParticleData.cpp */; }; + FFFF5a873e387fc05a873e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a873e387fc05a873e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; + FFFF5a8709a87fc05a8709a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5a8709a87fc05a8709a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; + FFFF5a870a107fc05a870a10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5a870a107fc05a870a10 /* core/src/PxMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD814495b07f8a814495b0 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD820292007f8a82029200 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD820292687f8a82029268 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD820292d07f8a820292d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD820293387f8a82029338 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD820293a07f8a820293a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD820294087f8a82029408 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFD820294707f8a82029470 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD820294d87f8a820294d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; - FFFD820295407f8a82029540 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; - FFFD820295a87f8a820295a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD820296107f8a82029610 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD820296787f8a82029678 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFD820296e07f8a820296e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD820297487f8a82029748 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD820297b07f8a820297b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD820298187f8a82029818 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD820298807f8a82029880 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; - FFFD820298e87f8a820298e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD820299507f8a82029950 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFD820299b87f8a820299b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD82029a207f8a82029a20 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD82029a887f8a82029a88 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD82029af07f8a82029af0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFD82029b587f8a82029b58 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD82029bc07f8a82029bc0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD82029c287f8a82029c28 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; - FFFD82029c907f8a82029c90 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD82029cf87f8a82029cf8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD82029d607f8a82029d60 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD82029dc87f8a82029dc8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD82029e307f8a82029e30 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFD82029e987f8a82029e98 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; - FFFD82029f007f8a82029f00 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; - FFFD82029f687f8a82029f68 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD82029fd07f8a82029fd0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202a0387f8a8202a038 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a0a07f8a8202a0a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a1087f8a8202a108 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a1707f8a8202a170 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a1d87f8a8202a1d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a2407f8a8202a240 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a2a87f8a8202a2a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a3107f8a8202a310 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a3787f8a8202a378 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a3e07f8a8202a3e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a4487f8a8202a448 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a4b07f8a8202a4b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a5187f8a8202a518 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a5807f8a8202a580 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a5e87f8a8202a5e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a6507f8a8202a650 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a6b87f8a8202a6b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a7207f8a8202a720 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a7887f8a8202a788 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a7f07f8a8202a7f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a8587f8a8202a858 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a8c07f8a8202a8c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a9287f8a8202a928 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a9907f8a8202a990 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202a9f87f8a8202a9f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202aa607f8a8202aa60 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202aac87f8a8202aac8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202ab307f8a8202ab30 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202ab987f8a8202ab98 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202ac007f8a8202ac00 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202ac687f8a8202ac68 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202acd07f8a8202acd0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202ad387f8a8202ad38 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202ada07f8a8202ada0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202ae087f8a8202ae08 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202ae707f8a8202ae70 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202aed87f8a8202aed8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202af407f8a8202af40 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202afa87f8a8202afa8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202b0107f8a8202b010 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202b0787f8a8202b078 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202b0e07f8a8202b0e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202b1487f8a8202b148 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202b1b07f8a8202b1b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202b2187f8a8202b218 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202b2807f8a8202b280 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202b2e87f8a8202b2e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202b3507f8a8202b350 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202b3b87f8a8202b3b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202b4207f8a8202b420 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202b4887f8a8202b488 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202b4f07f8a8202b4f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202b5587f8a8202b558 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202b5c07f8a8202b5c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202b6287f8a8202b628 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202b6907f8a8202b690 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202b6f87f8a8202b6f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202b7607f8a8202b760 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202b7c87f8a8202b7c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202b8307f8a8202b830 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202b8987f8a8202b898 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202b9007f8a8202b900 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202b9687f8a8202b968 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202b9d07f8a8202b9d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202ba387f8a8202ba38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202bc007f8a8202bc00 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202bc687f8a8202bc68 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202bcd07f8a8202bcd0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202bd387f8a8202bd38 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202bda07f8a8202bda0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202be087f8a8202be08 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202be707f8a8202be70 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202bed87f8a8202bed8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202bf407f8a8202bf40 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202bfa87f8a8202bfa8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c0107f8a8202c010 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c0787f8a8202c078 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c0e07f8a8202c0e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c1487f8a8202c148 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c1b07f8a8202c1b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c2187f8a8202c218 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c2807f8a8202c280 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c2e87f8a8202c2e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c3507f8a8202c350 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c3b87f8a8202c3b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c4207f8a8202c420 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c4887f8a8202c488 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c4f07f8a8202c4f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c5587f8a8202c558 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c5c07f8a8202c5c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c6287f8a8202c628 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c6907f8a8202c690 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c6f87f8a8202c6f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c7607f8a8202c760 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c7c87f8a8202c7c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c8307f8a8202c830 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c8987f8a8202c898 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c9007f8a8202c900 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c9687f8a8202c968 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202c9d07f8a8202c9d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202ca387f8a8202ca38 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202caa07f8a8202caa0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202cb087f8a8202cb08 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202cb707f8a8202cb70 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202cbd87f8a8202cbd8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202cc407f8a8202cc40 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202cca87f8a8202cca8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202cd107f8a8202cd10 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202cd787f8a8202cd78 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202cde07f8a8202cde0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202ce487f8a8202ce48 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202ceb07f8a8202ceb0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202cf187f8a8202cf18 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202cf807f8a8202cf80 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202cfe87f8a8202cfe8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d0507f8a8202d050 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d0b87f8a8202d0b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d1207f8a8202d120 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d1887f8a8202d188 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD82023e007f8a82023e00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD82023e687f8a82023e68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD82023ed07f8a82023ed0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD82023f387f8a82023f38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD82023fa07f8a82023fa0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD820240087f8a82024008 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFD820240707f8a82024070 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFD820240d87f8a820240d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD820241407f8a82024140 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD820241a87f8a820241a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820242107f8a82024210 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d170f707fc05d170f70 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5a8716007fc05a871600 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8716687fc05a871668 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8716d07fc05a8716d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8717387fc05a871738 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8717a07fc05a8717a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8718087fc05a871808 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8718707fc05a871870 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8718d87fc05a8718d8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8719407fc05a871940 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8719a87fc05a8719a8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a871a107fc05a871a10 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a871a787fc05a871a78 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a871ae07fc05a871ae0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a871b487fc05a871b48 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a871bb07fc05a871bb0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a871c187fc05a871c18 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a871c807fc05a871c80 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a871ce87fc05a871ce8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a871d507fc05a871d50 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a871db87fc05a871db8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a871e207fc05a871e20 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a871e887fc05a871e88 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a871ef07fc05a871ef0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a871f587fc05a871f58 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a871fc07fc05a871fc0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8720287fc05a872028 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8720907fc05a872090 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8720f87fc05a8720f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8721607fc05a872160 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8721c87fc05a8721c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8722307fc05a872230 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8722987fc05a872298 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8723007fc05a872300 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8723687fc05a872368 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8723d07fc05a8723d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8724387fc05a872438 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8724a07fc05a8724a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8725087fc05a872508 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8725707fc05a872570 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8725d87fc05a8725d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8726407fc05a872640 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8726a87fc05a8726a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8727107fc05a872710 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8727787fc05a872778 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8727e07fc05a8727e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8728487fc05a872848 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8728b07fc05a8728b0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8729187fc05a872918 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8729807fc05a872980 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8729e87fc05a8729e8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a872a507fc05a872a50 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a872ab87fc05a872ab8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a872b207fc05a872b20 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a872b887fc05a872b88 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a872bf07fc05a872bf0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a872c587fc05a872c58 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a872cc07fc05a872cc0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a872d287fc05a872d28 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a872d907fc05a872d90 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a872df87fc05a872df8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a872e607fc05a872e60 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a872ec87fc05a872ec8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a872f307fc05a872f30 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a872f987fc05a872f98 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8730007fc05a873000 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8730687fc05a873068 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8730d07fc05a8730d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8731387fc05a873138 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8731a07fc05a8731a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8732087fc05a873208 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8732707fc05a873270 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8732d87fc05a8732d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8733407fc05a873340 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8733a87fc05a8733a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8734107fc05a873410 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8734787fc05a873478 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8734e07fc05a8734e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8735487fc05a873548 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8735b07fc05a8735b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8736187fc05a873618 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8736807fc05a873680 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8736e87fc05a8736e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8737507fc05a873750 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8737b87fc05a8737b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8738207fc05a873820 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8738887fc05a873888 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8738f07fc05a8738f0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8739587fc05a873958 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8739c07fc05a8739c0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a873a287fc05a873a28 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a873a907fc05a873a90 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a873af87fc05a873af8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a873b607fc05a873b60 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a873bc87fc05a873bc8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a873c307fc05a873c30 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a873c987fc05a873c98 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a873d007fc05a873d00 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a873d687fc05a873d68 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a873dd07fc05a873dd0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a873e387fc05a873e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f0007fc05a86f000 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f0687fc05a86f068 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f0d07fc05a86f0d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f1387fc05a86f138 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f1a07fc05a86f1a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f2087fc05a86f208 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f2707fc05a86f270 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f2d87fc05a86f2d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f3407fc05a86f340 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f3a87fc05a86f3a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f4107fc05a86f410 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f4787fc05a86f478 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f4e07fc05a86f4e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f5487fc05a86f548 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f5b07fc05a86f5b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f6187fc05a86f618 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f6807fc05a86f680 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f6e87fc05a86f6e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f7507fc05a86f750 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f7b87fc05a86f7b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f8207fc05a86f820 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f8887fc05a86f888 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f8f07fc05a86f8f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f9587fc05a86f958 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86f9c07fc05a86f9c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86fa287fc05a86fa28 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86fa907fc05a86fa90 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86faf87fc05a86faf8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86fb607fc05a86fb60 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86fbc87fc05a86fbc8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86fc307fc05a86fc30 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86fc987fc05a86fc98 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86fd007fc05a86fd00 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86fd687fc05a86fd68 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86fdd07fc05a86fdd0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86fe387fc05a86fe38 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86fea07fc05a86fea0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86ff087fc05a86ff08 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86ff707fc05a86ff70 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a86ffd87fc05a86ffd8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8700407fc05a870040 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8700a87fc05a8700a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8701107fc05a870110 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8701787fc05a870178 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8701e07fc05a8701e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8702487fc05a870248 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8702b07fc05a8702b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8703187fc05a870318 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8703807fc05a870380 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8703e87fc05a8703e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8704507fc05a870450 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8704b87fc05a8704b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8705207fc05a870520 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8705887fc05a870588 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8706007fc05a870600 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8706687fc05a870668 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8706d07fc05a8706d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8707387fc05a870738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8707a07fc05a8707a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8708087fc05a870808 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8708707fc05a870870 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8708d87fc05a8708d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8709407fc05a870940 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8709a87fc05a8709a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a870a107fc05a870a10 /* 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 */ - FFF2814495b07f8a814495b0 /* Resources */ = { + FFF25d170f707fc05d170f70 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -233,7 +233,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC814495b07f8a814495b0 /* Frameworks */ = { + FFFC5d170f707fc05d170f70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -243,52 +243,52 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8814495b07f8a814495b0 /* Sources */ = { + FFF85d170f707fc05d170f70 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF8202a0387f8a8202a038, - FFFF8202a0a07f8a8202a0a0, - FFFF8202a1087f8a8202a108, - FFFF8202a1707f8a8202a170, - FFFF8202a1d87f8a8202a1d8, - FFFF8202a2407f8a8202a240, - FFFF8202a2a87f8a8202a2a8, - FFFF8202a3107f8a8202a310, - FFFF8202a3787f8a8202a378, - FFFF8202a3e07f8a8202a3e0, - FFFF8202a4487f8a8202a448, - FFFF8202a4b07f8a8202a4b0, - FFFF8202a5187f8a8202a518, - FFFF8202a5807f8a8202a580, - FFFF8202a5e87f8a8202a5e8, - FFFF8202a6507f8a8202a650, - FFFF8202a6b87f8a8202a6b8, - FFFF8202a7207f8a8202a720, - FFFF8202a7887f8a8202a788, - FFFF8202a7f07f8a8202a7f0, - FFFF8202a8587f8a8202a858, - FFFF8202a8c07f8a8202a8c0, - FFFF8202a9287f8a8202a928, - FFFF8202a9907f8a8202a990, - FFFF8202a9f87f8a8202a9f8, - FFFF8202ac007f8a8202ac00, - FFFF8202ac687f8a8202ac68, - FFFF8202b4207f8a8202b420, - FFFF8202b4887f8a8202b488, - FFFF8202b4f07f8a8202b4f0, - FFFF8202b5587f8a8202b558, - FFFF8202b5c07f8a8202b5c0, - FFFF8202b6287f8a8202b628, - FFFF8202b6907f8a8202b690, - FFFF8202b6f87f8a8202b6f8, - FFFF8202b7607f8a8202b760, - FFFF8202b9007f8a8202b900, - FFFF8202b9687f8a8202b968, - FFFF8202b9d07f8a8202b9d0, - FFFF8202ba387f8a8202ba38, - FFFF820241a87f8a820241a8, - FFFF820242107f8a82024210, + FFFF5a8724387fc05a872438, + FFFF5a8724a07fc05a8724a0, + FFFF5a8725087fc05a872508, + FFFF5a8725707fc05a872570, + FFFF5a8725d87fc05a8725d8, + FFFF5a8726407fc05a872640, + FFFF5a8726a87fc05a8726a8, + FFFF5a8727107fc05a872710, + FFFF5a8727787fc05a872778, + FFFF5a8727e07fc05a8727e0, + FFFF5a8728487fc05a872848, + FFFF5a8728b07fc05a8728b0, + FFFF5a8729187fc05a872918, + FFFF5a8729807fc05a872980, + FFFF5a8729e87fc05a8729e8, + FFFF5a872a507fc05a872a50, + FFFF5a872ab87fc05a872ab8, + FFFF5a872b207fc05a872b20, + FFFF5a872b887fc05a872b88, + FFFF5a872bf07fc05a872bf0, + FFFF5a872c587fc05a872c58, + FFFF5a872cc07fc05a872cc0, + FFFF5a872d287fc05a872d28, + FFFF5a872d907fc05a872d90, + FFFF5a872df87fc05a872df8, + FFFF5a8730007fc05a873000, + FFFF5a8730687fc05a873068, + FFFF5a8738207fc05a873820, + FFFF5a8738887fc05a873888, + FFFF5a8738f07fc05a8738f0, + FFFF5a8739587fc05a873958, + FFFF5a8739c07fc05a8739c0, + FFFF5a873a287fc05a873a28, + FFFF5a873a907fc05a873a90, + FFFF5a873af87fc05a873af8, + FFFF5a873b607fc05a873b60, + FFFF5a873d007fc05a873d00, + FFFF5a873d687fc05a873d68, + FFFF5a873dd07fc05a873dd0, + FFFF5a873e387fc05a873e38, + FFFF5a8709a87fc05a8709a8, + FFFF5a870a107fc05a870a10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -297,112 +297,112 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4814601d07f8a814601d0 /* PBXTargetDependency */ = { + FFF45d17a1107fc05d17a110 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA810c34707f8a810c3470 /* LowLevel */; - targetProxy = FFF5810c34707f8a810c3470 /* PBXContainerItemProxy */; + target = FFFA5be3ff207fc05be3ff20 /* LowLevel */; + targetProxy = FFF55be3ff207fc05be3ff20 /* PBXContainerItemProxy */; }; - FFF4814569507f8a81456950 /* PBXTargetDependency */ = { + FFF45d17cbe07fc05d17cbe0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA81149d807f8a81149d80 /* LowLevelAABB */; - targetProxy = FFF581149d807f8a81149d80 /* PBXContainerItemProxy */; + target = FFFA5bf207407fc05bf20740 /* LowLevelAABB */; + targetProxy = FFF55bf207407fc05bf20740 /* PBXContainerItemProxy */; }; - FFF4814607d07f8a814607d0 /* PBXTargetDependency */ = { + FFF45d17cca07fc05d17cca0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA816f83807f8a816f8380 /* LowLevelCloth */; - targetProxy = FFF5816f83807f8a816f8380 /* PBXContainerItemProxy */; + target = FFFA5bc335c07fc05bc335c0 /* LowLevelCloth */; + targetProxy = FFF55bc335c07fc05bc335c0 /* PBXContainerItemProxy */; }; - FFF4814607707f8a81460770 /* PBXTargetDependency */ = { + FFF45d17cc407fc05d17cc40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA81432a807f8a81432a80 /* LowLevelDynamics */; - targetProxy = FFF581432a807f8a81432a80 /* PBXContainerItemProxy */; + target = FFFA5bf4ac107fc05bf4ac10 /* LowLevelDynamics */; + targetProxy = FFF55bf4ac107fc05bf4ac10 /* PBXContainerItemProxy */; }; - FFF48144ef007f8a8144ef00 /* PBXTargetDependency */ = { + FFF45d1799c07fc05d1799c0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA8172b0d07f8a8172b0d0 /* LowLevelParticles */; - targetProxy = FFF58172b0d07f8a8172b0d0 /* PBXContainerItemProxy */; + target = FFFA5be6a2a07fc05be6a2a0 /* LowLevelParticles */; + targetProxy = FFF55be6a2a07fc05be6a2a0 /* PBXContainerItemProxy */; }; - FFF48144b5907f8a8144b590 /* PBXTargetDependency */ = { + FFF45d17a0b07fc05d17a0b0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA810dc3907f8a810dc390 /* PhysXCommon */; - targetProxy = FFF5810dc3907f8a810dc390 /* PBXContainerItemProxy */; + target = FFFA5b93e9407fc05b93e940 /* PhysXCommon */; + targetProxy = FFF55b93e9407fc05b93e940 /* PBXContainerItemProxy */; }; - FFF4814498a07f8a814498a0 /* PBXTargetDependency */ = { + FFF45d1712607fc05d171260 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA810edec07f8a810edec0 /* PxFoundation */; - targetProxy = FFF5810edec07f8a810edec0 /* PBXContainerItemProxy */; + target = FFFA5b91b1007fc05b91b100 /* PxFoundation */; + targetProxy = FFF55b91b1007fc05b91b100 /* PBXContainerItemProxy */; }; - FFF4814495507f8a81449550 /* PBXTargetDependency */ = { + FFF45d170f107fc05d170f10 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA81169e707f8a81169e70 /* PxPvdSDK */; - targetProxy = FFF581169e707f8a81169e70 /* PBXContainerItemProxy */; + target = FFFA5bf09c707fc05bf09c70 /* PxPvdSDK */; + targetProxy = FFF55bf09c707fc05bf09c70 /* PBXContainerItemProxy */; }; - FFF4814608b07f8a814608b0 /* PBXTargetDependency */ = { + FFF45d179b007fc05d179b00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA811077f07f8a811077f0 /* PxTask */; - targetProxy = FFF5811077f07f8a811077f0 /* PBXContainerItemProxy */; + target = FFFA5bf838007fc05bf83800 /* PxTask */; + targetProxy = FFF55bf838007fc05bf83800 /* PBXContainerItemProxy */; }; - FFF48144ef607f8a8144ef60 /* PBXTargetDependency */ = { + FFF45d179a207fc05d179a20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA814803907f8a81480390 /* SceneQuery */; - targetProxy = FFF5814803907f8a81480390 /* PBXContainerItemProxy */; + target = FFFA5d19d4d07fc05d19d4d0 /* SceneQuery */; + targetProxy = FFF55d19d4d07fc05d19d4d0 /* PBXContainerItemProxy */; }; - FFF4814608807f8a81460880 /* PBXTargetDependency */ = { + FFF45d179a807fc05d179a80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA81484a807f8a81484a80 /* SimulationController */; - targetProxy = FFF581484a807f8a81484a80 /* PBXContainerItemProxy */; + target = FFFA5d1a1bc07fc05d1a1bc0 /* SimulationController */; + targetProxy = FFF55d1a1bc07fc05d1a1bc0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCharacterKinematic */ - FFFF814622207f8a81462220 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD8146da607f8a8146da60 /* PhysXExtensions */; }; - FFFF8202d6787f8a8202d678 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202d6787f8a8202d678 /* CctBoxController.cpp */; }; - FFFF8202d6e07f8a8202d6e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202d6e07f8a8202d6e0 /* CctCapsuleController.cpp */; }; - FFFF8202d7487f8a8202d748 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202d7487f8a8202d748 /* CctCharacterController.cpp */; }; - FFFF8202d7b07f8a8202d7b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202d7b07f8a8202d7b0 /* CctCharacterControllerCallbacks.cpp */; }; - FFFF8202d8187f8a8202d818 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202d8187f8a8202d818 /* CctCharacterControllerManager.cpp */; }; - FFFF8202d8807f8a8202d880 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202d8807f8a8202d880 /* CctController.cpp */; }; - FFFF8202d8e87f8a8202d8e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202d8e87f8a8202d8e8 /* CctObstacleContext.cpp */; }; - FFFF8202d9507f8a8202d950 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202d9507f8a8202d950 /* CctSweptBox.cpp */; }; - FFFF8202d9b87f8a8202d9b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202d9b87f8a8202d9b8 /* CctSweptCapsule.cpp */; }; - FFFF8202da207f8a8202da20 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8202da207f8a8202da20 /* CctSweptVolume.cpp */; }; + FFFF5d17f4a07fc05d17f4a0 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5d18aba07fc05d18aba0 /* PhysXExtensions */; }; + FFFF5a8784787fc05a878478 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8784787fc05a878478 /* CctBoxController.cpp */; }; + FFFF5a8784e07fc05a8784e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8784e07fc05a8784e0 /* CctCapsuleController.cpp */; }; + FFFF5a8785487fc05a878548 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8785487fc05a878548 /* CctCharacterController.cpp */; }; + FFFF5a8785b07fc05a8785b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8785b07fc05a8785b0 /* CctCharacterControllerCallbacks.cpp */; }; + FFFF5a8786187fc05a878618 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8786187fc05a878618 /* CctCharacterControllerManager.cpp */; }; + FFFF5a8786807fc05a878680 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8786807fc05a878680 /* CctController.cpp */; }; + FFFF5a8786e87fc05a8786e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8786e87fc05a8786e8 /* CctObstacleContext.cpp */; }; + FFFF5a8787507fc05a878750 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8787507fc05a878750 /* CctSweptBox.cpp */; }; + FFFF5a8787b87fc05a8787b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8787b87fc05a8787b8 /* CctSweptCapsule.cpp */; }; + FFFF5a8788207fc05a878820 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8788207fc05a878820 /* CctSweptVolume.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD8144ebc07f8a8144ebc0 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD814639207f8a81463920 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD814639887f8a81463988 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFD814639f07f8a814639f0 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; - FFFD81463a587f8a81463a58 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD81463ac07f8a81463ac0 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; - FFFD81463b287f8a81463b28 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD81463b907f8a81463b90 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; - FFFD81463bf87f8a81463bf8 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d2007f8a8202d200 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d2687f8a8202d268 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d2d07f8a8202d2d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d3387f8a8202d338 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d3a07f8a8202d3a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d4087f8a8202d408 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d4707f8a8202d470 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d4d87f8a8202d4d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d5407f8a8202d540 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d5a87f8a8202d5a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d6107f8a8202d610 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202d6787f8a8202d678 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202d6e07f8a8202d6e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202d7487f8a8202d748 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202d7b07f8a8202d7b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202d8187f8a8202d818 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202d8807f8a8202d880 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202d8e87f8a8202d8e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202d9507f8a8202d950 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202d9b87f8a8202d9b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8202da207f8a8202da20 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d179b107fc05d179b10 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5d180ba07fc05d180ba0 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d180c087fc05d180c08 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d180c707fc05d180c70 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d180cd87fc05d180cd8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d180d407fc05d180d40 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d180da87fc05d180da8 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d180e107fc05d180e10 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d180e787fc05d180e78 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8780007fc05a878000 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8780687fc05a878068 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8780d07fc05a8780d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8781387fc05a878138 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8781a07fc05a8781a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8782087fc05a878208 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8782707fc05a878270 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8782d87fc05a8782d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8783407fc05a878340 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8783a87fc05a8783a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8784107fc05a878410 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8784787fc05a878478 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8784e07fc05a8784e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8785487fc05a878548 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8785b07fc05a8785b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8786187fc05a878618 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8786807fc05a878680 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8786e87fc05a8786e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8787507fc05a878750 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8787b87fc05a8787b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8788207fc05a878820 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF28144ebc07f8a8144ebc0 /* Resources */ = { + FFF25d179b107fc05d179b10 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -412,7 +412,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC8144ebc07f8a8144ebc0 /* Frameworks */ = { + FFFC5d179b107fc05d179b10 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -422,20 +422,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF88144ebc07f8a8144ebc0 /* Sources */ = { + FFF85d179b107fc05d179b10 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF8202d6787f8a8202d678, - FFFF8202d6e07f8a8202d6e0, - FFFF8202d7487f8a8202d748, - FFFF8202d7b07f8a8202d7b0, - FFFF8202d8187f8a8202d818, - FFFF8202d8807f8a8202d880, - FFFF8202d8e87f8a8202d8e8, - FFFF8202d9507f8a8202d950, - FFFF8202d9b87f8a8202d9b8, - FFFF8202da207f8a8202da20, + FFFF5a8784787fc05a878478, + FFFF5a8784e07fc05a8784e0, + FFFF5a8785487fc05a878548, + FFFF5a8785b07fc05a8785b0, + FFFF5a8786187fc05a878618, + FFFF5a8786807fc05a878680, + FFFF5a8786e87fc05a8786e8, + FFFF5a8787507fc05a878750, + FFFF5a8787b87fc05a8787b8, + FFFF5a8788207fc05a878820, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -444,91 +444,91 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4814577b07f8a814577b0 /* PBXTargetDependency */ = { + FFF45d1809507fc05d180950 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA810dc3907f8a810dc390 /* PhysXCommon */; - targetProxy = FFF5810dc3907f8a810dc390 /* PBXContainerItemProxy */; + target = FFFA5b93e9407fc05b93e940 /* PhysXCommon */; + targetProxy = FFF55b93e9407fc05b93e940 /* PBXContainerItemProxy */; }; - FFF4814622207f8a81462220 /* PBXTargetDependency */ = { + FFF45d17f4a07fc05d17f4a0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA8146da607f8a8146da60 /* PhysXExtensions */; - targetProxy = FFF58146da607f8a8146da60 /* PBXContainerItemProxy */; + target = FFFA5d18aba07fc05d18aba0 /* PhysXExtensions */; + targetProxy = FFF55d18aba07fc05d18aba0 /* PBXContainerItemProxy */; }; - FFF4814636f07f8a814636f0 /* PBXTargetDependency */ = { + FFF45d17f9507fc05d17f950 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA810edec07f8a810edec0 /* PxFoundation */; - targetProxy = FFF5810edec07f8a810edec0 /* PBXContainerItemProxy */; + target = FFFA5b91b1007fc05b91b100 /* PxFoundation */; + targetProxy = FFF55b91b1007fc05b91b100 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXVehicle */ - FFFF820318087f8a82031808 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820318087f8a82031808 /* PxVehicleComponents.cpp */; }; - FFFF820318707f8a82031870 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820318707f8a82031870 /* PxVehicleDrive.cpp */; }; - FFFF820318d87f8a820318d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820318d87f8a820318d8 /* PxVehicleDrive4W.cpp */; }; - FFFF820319407f8a82031940 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820319407f8a82031940 /* PxVehicleDriveNW.cpp */; }; - FFFF820319a87f8a820319a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820319a87f8a820319a8 /* PxVehicleDriveTank.cpp */; }; - FFFF82031a107f8a82031a10 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82031a107f8a82031a10 /* PxVehicleMetaData.cpp */; }; - FFFF82031a787f8a82031a78 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82031a787f8a82031a78 /* PxVehicleNoDrive.cpp */; }; - FFFF82031ae07f8a82031ae0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82031ae07f8a82031ae0 /* PxVehicleSDK.cpp */; }; - FFFF82031b487f8a82031b48 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82031b487f8a82031b48 /* PxVehicleSerialization.cpp */; }; - FFFF82031bb07f8a82031bb0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82031bb07f8a82031bb0 /* PxVehicleSuspWheelTire4.cpp */; }; - FFFF82031c187f8a82031c18 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82031c187f8a82031c18 /* PxVehicleTireFriction.cpp */; }; - FFFF82031c807f8a82031c80 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82031c807f8a82031c80 /* PxVehicleUpdate.cpp */; }; - FFFF82031ce87f8a82031ce8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82031ce87f8a82031ce8 /* PxVehicleWheels.cpp */; }; - FFFF82031d507f8a82031d50 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82031d507f8a82031d50 /* VehicleUtilControl.cpp */; }; - FFFF82031db87f8a82031db8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82031db87f8a82031db8 /* VehicleUtilSetup.cpp */; }; - FFFF82031e207f8a82031e20 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82031e207f8a82031e20 /* VehicleUtilTelemetry.cpp */; }; - FFFF8146f9387f8a8146f938 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD8146f9387f8a8146f938 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; - FFFF8146f9a07f8a8146f9a0 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD8146f9a07f8a8146f9a0 /* src/PxVehicleMetaDataObjects.cpp */; }; + FFFF5a87d2087fc05a87d208 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d2087fc05a87d208 /* PxVehicleComponents.cpp */; }; + FFFF5a87d2707fc05a87d270 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d2707fc05a87d270 /* PxVehicleDrive.cpp */; }; + FFFF5a87d2d87fc05a87d2d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d2d87fc05a87d2d8 /* PxVehicleDrive4W.cpp */; }; + FFFF5a87d3407fc05a87d340 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d3407fc05a87d340 /* PxVehicleDriveNW.cpp */; }; + FFFF5a87d3a87fc05a87d3a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d3a87fc05a87d3a8 /* PxVehicleDriveTank.cpp */; }; + FFFF5a87d4107fc05a87d410 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d4107fc05a87d410 /* PxVehicleMetaData.cpp */; }; + FFFF5a87d4787fc05a87d478 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d4787fc05a87d478 /* PxVehicleNoDrive.cpp */; }; + FFFF5a87d4e07fc05a87d4e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d4e07fc05a87d4e0 /* PxVehicleSDK.cpp */; }; + FFFF5a87d5487fc05a87d548 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d5487fc05a87d548 /* PxVehicleSerialization.cpp */; }; + FFFF5a87d5b07fc05a87d5b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d5b07fc05a87d5b0 /* PxVehicleSuspWheelTire4.cpp */; }; + FFFF5a87d6187fc05a87d618 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d6187fc05a87d618 /* PxVehicleTireFriction.cpp */; }; + FFFF5a87d6807fc05a87d680 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d6807fc05a87d680 /* PxVehicleUpdate.cpp */; }; + FFFF5a87d6e87fc05a87d6e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d6e87fc05a87d6e8 /* PxVehicleWheels.cpp */; }; + FFFF5a87d7507fc05a87d750 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d7507fc05a87d750 /* VehicleUtilControl.cpp */; }; + FFFF5a87d7b87fc05a87d7b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d7b87fc05a87d7b8 /* VehicleUtilSetup.cpp */; }; + FFFF5a87d8207fc05a87d820 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87d8207fc05a87d820 /* VehicleUtilTelemetry.cpp */; }; + FFFF5d18ca787fc05d18ca78 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5d18ca787fc05d18ca78 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; + FFFF5d18cae07fc05d18cae0 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5d18cae07fc05d18cae0 /* src/PxVehicleMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD814570a07f8a814570a0 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD8202f8007f8a8202f800 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202f8687f8a8202f868 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202f8d07f8a8202f8d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202f9387f8a8202f938 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202f9a07f8a8202f9a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202fa087f8a8202fa08 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202fa707f8a8202fa70 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202fad87f8a8202fad8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202fb407f8a8202fb40 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202fba87f8a8202fba8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202fc107f8a8202fc10 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202fc787f8a8202fc78 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202fce07f8a8202fce0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202fd487f8a8202fd48 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; - FFFD8202fdb07f8a8202fdb0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; - FFFD820316007f8a82031600 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD820316687f8a82031668 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD820316d07f8a820316d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD820317387f8a82031738 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; - FFFD820317a07f8a820317a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; - FFFD820318087f8a82031808 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820318707f8a82031870 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820318d87f8a820318d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820319407f8a82031940 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820319a87f8a820319a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82031a107f8a82031a10 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82031a787f8a82031a78 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82031ae07f8a82031ae0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82031b487f8a82031b48 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82031bb07f8a82031bb0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82031c187f8a82031c18 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82031c807f8a82031c80 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82031ce87f8a82031ce8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82031d507f8a82031d50 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82031db87f8a82031db8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82031e207f8a82031e20 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8146f8007f8a8146f800 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD8146f8687f8a8146f868 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD8146f8d07f8a8146f8d0 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD8146f9387f8a8146f938 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8146f9a07f8a8146f9a0 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d17ae507fc05d17ae50 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5a87ae007fc05a87ae00 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87ae687fc05a87ae68 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87aed07fc05a87aed0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87af387fc05a87af38 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87afa07fc05a87afa0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87b0087fc05a87b008 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87b0707fc05a87b070 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87b0d87fc05a87b0d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87b1407fc05a87b140 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87b1a87fc05a87b1a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87b2107fc05a87b210 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87b2787fc05a87b278 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87b2e07fc05a87b2e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87b3487fc05a87b348 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87b3b07fc05a87b3b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d0007fc05a87d000 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d0687fc05a87d068 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d0d07fc05a87d0d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d1387fc05a87d138 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d1a07fc05a87d1a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d2087fc05a87d208 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d2707fc05a87d270 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d2d87fc05a87d2d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d3407fc05a87d340 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d3a87fc05a87d3a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d4107fc05a87d410 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d4787fc05a87d478 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d4e07fc05a87d4e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d5487fc05a87d548 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d5b07fc05a87d5b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d6187fc05a87d618 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d6807fc05a87d680 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d6e87fc05a87d6e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d7507fc05a87d750 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d7b87fc05a87d7b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87d8207fc05a87d820 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d18c9407fc05d18c940 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d18c9a87fc05d18c9a8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d18ca107fc05d18ca10 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d18ca787fc05d18ca78 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d18cae07fc05d18cae0 /* 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 */ - FFF2814570a07f8a814570a0 /* Resources */ = { + FFF25d17ae507fc05d17ae50 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -538,7 +538,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC814570a07f8a814570a0 /* Frameworks */ = { + FFFC5d17ae507fc05d17ae50 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -548,28 +548,28 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8814570a07f8a814570a0 /* Sources */ = { + FFF85d17ae507fc05d17ae50 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF820318087f8a82031808, - FFFF820318707f8a82031870, - FFFF820318d87f8a820318d8, - FFFF820319407f8a82031940, - FFFF820319a87f8a820319a8, - FFFF82031a107f8a82031a10, - FFFF82031a787f8a82031a78, - FFFF82031ae07f8a82031ae0, - FFFF82031b487f8a82031b48, - FFFF82031bb07f8a82031bb0, - FFFF82031c187f8a82031c18, - FFFF82031c807f8a82031c80, - FFFF82031ce87f8a82031ce8, - FFFF82031d507f8a82031d50, - FFFF82031db87f8a82031db8, - FFFF82031e207f8a82031e20, - FFFF8146f9387f8a8146f938, - FFFF8146f9a07f8a8146f9a0, + FFFF5a87d2087fc05a87d208, + FFFF5a87d2707fc05a87d270, + FFFF5a87d2d87fc05a87d2d8, + FFFF5a87d3407fc05a87d340, + FFFF5a87d3a87fc05a87d3a8, + FFFF5a87d4107fc05a87d410, + FFFF5a87d4787fc05a87d478, + FFFF5a87d4e07fc05a87d4e0, + FFFF5a87d5487fc05a87d548, + FFFF5a87d5b07fc05a87d5b0, + FFFF5a87d6187fc05a87d618, + FFFF5a87d6807fc05a87d680, + FFFF5a87d6e87fc05a87d6e8, + FFFF5a87d7507fc05a87d750, + FFFF5a87d7b87fc05a87d7b8, + FFFF5a87d8207fc05a87d820, + FFFF5d18ca787fc05d18ca78, + FFFF5d18cae07fc05d18cae0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -581,220 +581,220 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXExtensions */ - FFFF82033ee87f8a82033ee8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82033ee87f8a82033ee8 /* ExtBroadPhase.cpp */; }; - FFFF82033f507f8a82033f50 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82033f507f8a82033f50 /* ExtClothFabricCooker.cpp */; }; - FFFF82033fb87f8a82033fb8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82033fb87f8a82033fb8 /* ExtClothGeodesicTetherCooker.cpp */; }; - FFFF820340207f8a82034020 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820340207f8a82034020 /* ExtClothMeshQuadifier.cpp */; }; - FFFF820340887f8a82034088 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820340887f8a82034088 /* ExtClothSimpleTetherCooker.cpp */; }; - FFFF820340f07f8a820340f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820340f07f8a820340f0 /* ExtCollection.cpp */; }; - FFFF820341587f8a82034158 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820341587f8a82034158 /* ExtConvexMeshExt.cpp */; }; - FFFF820341c07f8a820341c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820341c07f8a820341c0 /* ExtCpuWorkerThread.cpp */; }; - FFFF820342287f8a82034228 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820342287f8a82034228 /* ExtD6Joint.cpp */; }; - FFFF820342907f8a82034290 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820342907f8a82034290 /* ExtD6JointSolverPrep.cpp */; }; - FFFF820342f87f8a820342f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820342f87f8a820342f8 /* ExtDefaultCpuDispatcher.cpp */; }; - FFFF820343607f8a82034360 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820343607f8a82034360 /* ExtDefaultErrorCallback.cpp */; }; - FFFF820343c87f8a820343c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820343c87f8a820343c8 /* ExtDefaultSimulationFilterShader.cpp */; }; - FFFF820344307f8a82034430 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820344307f8a82034430 /* ExtDefaultStreams.cpp */; }; - FFFF820344987f8a82034498 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820344987f8a82034498 /* ExtDistanceJoint.cpp */; }; - FFFF820345007f8a82034500 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820345007f8a82034500 /* ExtDistanceJointSolverPrep.cpp */; }; - FFFF820345687f8a82034568 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820345687f8a82034568 /* ExtExtensions.cpp */; }; - FFFF820345d07f8a820345d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820345d07f8a820345d0 /* ExtFixedJoint.cpp */; }; - FFFF820346387f8a82034638 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820346387f8a82034638 /* ExtFixedJointSolverPrep.cpp */; }; - FFFF820346a07f8a820346a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820346a07f8a820346a0 /* ExtJoint.cpp */; }; - FFFF820347087f8a82034708 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820347087f8a82034708 /* ExtMetaData.cpp */; }; - FFFF820347707f8a82034770 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820347707f8a82034770 /* ExtParticleExt.cpp */; }; - FFFF820347d87f8a820347d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820347d87f8a820347d8 /* ExtPrismaticJoint.cpp */; }; - FFFF820348407f8a82034840 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820348407f8a82034840 /* ExtPrismaticJointSolverPrep.cpp */; }; - FFFF820348a87f8a820348a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820348a87f8a820348a8 /* ExtPvd.cpp */; }; - FFFF820349107f8a82034910 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820349107f8a82034910 /* ExtPxStringTable.cpp */; }; - FFFF820349787f8a82034978 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820349787f8a82034978 /* ExtRaycastCCD.cpp */; }; - FFFF820349e07f8a820349e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD820349e07f8a820349e0 /* ExtRevoluteJoint.cpp */; }; - FFFF82034a487f8a82034a48 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82034a487f8a82034a48 /* ExtRevoluteJointSolverPrep.cpp */; }; - FFFF82034ab07f8a82034ab0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82034ab07f8a82034ab0 /* ExtRigidBodyExt.cpp */; }; - FFFF82034b187f8a82034b18 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82034b187f8a82034b18 /* ExtSceneQueryExt.cpp */; }; - FFFF82034b807f8a82034b80 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82034b807f8a82034b80 /* ExtSimpleFactory.cpp */; }; - FFFF82034be87f8a82034be8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82034be87f8a82034be8 /* ExtSmoothNormals.cpp */; }; - FFFF82034c507f8a82034c50 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82034c507f8a82034c50 /* ExtSphericalJoint.cpp */; }; - FFFF82034cb87f8a82034cb8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82034cb87f8a82034cb8 /* ExtSphericalJointSolverPrep.cpp */; }; - FFFF82034d207f8a82034d20 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82034d207f8a82034d20 /* ExtTriangleMeshExt.cpp */; }; - FFFF820374d07f8a820374d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD820374d07f8a820374d0 /* SnSerialUtils.cpp */; }; - FFFF820375387f8a82037538 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD820375387f8a82037538 /* SnSerialization.cpp */; }; - FFFF820375a07f8a820375a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD820375a07f8a820375a0 /* SnSerializationRegistry.cpp */; }; - FFFF820378e07f8a820378e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD820378e07f8a820378e0 /* Binary/SnBinaryDeserialization.cpp */; }; - FFFF820379487f8a82037948 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD820379487f8a82037948 /* Binary/SnBinarySerialization.cpp */; }; - FFFF820379b07f8a820379b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD820379b07f8a820379b0 /* Binary/SnConvX.cpp */; }; - FFFF82037a187f8a82037a18 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD82037a187f8a82037a18 /* Binary/SnConvX_Align.cpp */; }; - FFFF82037a807f8a82037a80 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD82037a807f8a82037a80 /* Binary/SnConvX_Convert.cpp */; }; - FFFF82037ae87f8a82037ae8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD82037ae87f8a82037ae8 /* Binary/SnConvX_Error.cpp */; }; - FFFF82037b507f8a82037b50 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD82037b507f8a82037b50 /* Binary/SnConvX_MetaData.cpp */; }; - FFFF82037bb87f8a82037bb8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD82037bb87f8a82037bb8 /* Binary/SnConvX_Output.cpp */; }; - FFFF82037c207f8a82037c20 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD82037c207f8a82037c20 /* Binary/SnConvX_Union.cpp */; }; - FFFF82037c887f8a82037c88 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD82037c887f8a82037c88 /* Binary/SnSerializationContext.cpp */; }; - FFFF820385e07f8a820385e0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD820385e07f8a820385e0 /* Xml/SnJointRepXSerializer.cpp */; }; - FFFF820386487f8a82038648 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD820386487f8a82038648 /* Xml/SnRepXCoreSerializer.cpp */; }; - FFFF820386b07f8a820386b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD820386b07f8a820386b0 /* Xml/SnRepXUpgrader.cpp */; }; - FFFF820387187f8a82038718 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD820387187f8a82038718 /* Xml/SnXmlSerialization.cpp */; }; - FFFF820362e07f8a820362e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD820362e07f8a820362e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; + FFFF5a87f0e87fc05a87f0e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f0e87fc05a87f0e8 /* ExtBroadPhase.cpp */; }; + FFFF5a87f1507fc05a87f150 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f1507fc05a87f150 /* ExtClothFabricCooker.cpp */; }; + FFFF5a87f1b87fc05a87f1b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f1b87fc05a87f1b8 /* ExtClothGeodesicTetherCooker.cpp */; }; + FFFF5a87f2207fc05a87f220 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f2207fc05a87f220 /* ExtClothMeshQuadifier.cpp */; }; + FFFF5a87f2887fc05a87f288 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f2887fc05a87f288 /* ExtClothSimpleTetherCooker.cpp */; }; + FFFF5a87f2f07fc05a87f2f0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f2f07fc05a87f2f0 /* ExtCollection.cpp */; }; + FFFF5a87f3587fc05a87f358 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f3587fc05a87f358 /* ExtConvexMeshExt.cpp */; }; + FFFF5a87f3c07fc05a87f3c0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f3c07fc05a87f3c0 /* ExtCpuWorkerThread.cpp */; }; + FFFF5a87f4287fc05a87f428 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f4287fc05a87f428 /* ExtD6Joint.cpp */; }; + FFFF5a87f4907fc05a87f490 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f4907fc05a87f490 /* ExtD6JointSolverPrep.cpp */; }; + FFFF5a87f4f87fc05a87f4f8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f4f87fc05a87f4f8 /* ExtDefaultCpuDispatcher.cpp */; }; + FFFF5a87f5607fc05a87f560 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f5607fc05a87f560 /* ExtDefaultErrorCallback.cpp */; }; + FFFF5a87f5c87fc05a87f5c8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f5c87fc05a87f5c8 /* ExtDefaultSimulationFilterShader.cpp */; }; + FFFF5a87f6307fc05a87f630 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f6307fc05a87f630 /* ExtDefaultStreams.cpp */; }; + FFFF5a87f6987fc05a87f698 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f6987fc05a87f698 /* ExtDistanceJoint.cpp */; }; + FFFF5a87f7007fc05a87f700 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f7007fc05a87f700 /* ExtDistanceJointSolverPrep.cpp */; }; + FFFF5a87f7687fc05a87f768 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f7687fc05a87f768 /* ExtExtensions.cpp */; }; + FFFF5a87f7d07fc05a87f7d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f7d07fc05a87f7d0 /* ExtFixedJoint.cpp */; }; + FFFF5a87f8387fc05a87f838 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f8387fc05a87f838 /* ExtFixedJointSolverPrep.cpp */; }; + FFFF5a87f8a07fc05a87f8a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f8a07fc05a87f8a0 /* ExtJoint.cpp */; }; + FFFF5a87f9087fc05a87f908 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f9087fc05a87f908 /* ExtMetaData.cpp */; }; + FFFF5a87f9707fc05a87f970 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f9707fc05a87f970 /* ExtParticleExt.cpp */; }; + FFFF5a87f9d87fc05a87f9d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87f9d87fc05a87f9d8 /* ExtPrismaticJoint.cpp */; }; + FFFF5a87fa407fc05a87fa40 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87fa407fc05a87fa40 /* ExtPrismaticJointSolverPrep.cpp */; }; + FFFF5a87faa87fc05a87faa8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87faa87fc05a87faa8 /* ExtPvd.cpp */; }; + FFFF5a87fb107fc05a87fb10 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87fb107fc05a87fb10 /* ExtPxStringTable.cpp */; }; + FFFF5a87fb787fc05a87fb78 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87fb787fc05a87fb78 /* ExtRaycastCCD.cpp */; }; + FFFF5a87fbe07fc05a87fbe0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87fbe07fc05a87fbe0 /* ExtRevoluteJoint.cpp */; }; + FFFF5a87fc487fc05a87fc48 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87fc487fc05a87fc48 /* ExtRevoluteJointSolverPrep.cpp */; }; + FFFF5a87fcb07fc05a87fcb0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87fcb07fc05a87fcb0 /* ExtRigidBodyExt.cpp */; }; + FFFF5a87fd187fc05a87fd18 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87fd187fc05a87fd18 /* ExtSceneQueryExt.cpp */; }; + FFFF5a87fd807fc05a87fd80 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87fd807fc05a87fd80 /* ExtSimpleFactory.cpp */; }; + FFFF5a87fde87fc05a87fde8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87fde87fc05a87fde8 /* ExtSmoothNormals.cpp */; }; + FFFF5a87fe507fc05a87fe50 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87fe507fc05a87fe50 /* ExtSphericalJoint.cpp */; }; + FFFF5a87feb87fc05a87feb8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87feb87fc05a87feb8 /* ExtSphericalJointSolverPrep.cpp */; }; + FFFF5a87ff207fc05a87ff20 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a87ff207fc05a87ff20 /* ExtTriangleMeshExt.cpp */; }; + FFFF5a8834d07fc05a8834d0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a8834d07fc05a8834d0 /* SnSerialUtils.cpp */; }; + FFFF5a8835387fc05a883538 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a8835387fc05a883538 /* SnSerialization.cpp */; }; + FFFF5a8835a07fc05a8835a0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a8835a07fc05a8835a0 /* SnSerializationRegistry.cpp */; }; + FFFF5a8838e07fc05a8838e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a8838e07fc05a8838e0 /* Binary/SnBinaryDeserialization.cpp */; }; + FFFF5a8839487fc05a883948 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a8839487fc05a883948 /* Binary/SnBinarySerialization.cpp */; }; + FFFF5a8839b07fc05a8839b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a8839b07fc05a8839b0 /* Binary/SnConvX.cpp */; }; + FFFF5a883a187fc05a883a18 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a883a187fc05a883a18 /* Binary/SnConvX_Align.cpp */; }; + FFFF5a883a807fc05a883a80 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a883a807fc05a883a80 /* Binary/SnConvX_Convert.cpp */; }; + FFFF5a883ae87fc05a883ae8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a883ae87fc05a883ae8 /* Binary/SnConvX_Error.cpp */; }; + FFFF5a883b507fc05a883b50 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a883b507fc05a883b50 /* Binary/SnConvX_MetaData.cpp */; }; + FFFF5a883bb87fc05a883bb8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a883bb87fc05a883bb8 /* Binary/SnConvX_Output.cpp */; }; + FFFF5a883c207fc05a883c20 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a883c207fc05a883c20 /* Binary/SnConvX_Union.cpp */; }; + FFFF5a883c887fc05a883c88 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a883c887fc05a883c88 /* Binary/SnSerializationContext.cpp */; }; + FFFF5a8845e07fc05a8845e0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a8845e07fc05a8845e0 /* Xml/SnJointRepXSerializer.cpp */; }; + FFFF5a8846487fc05a884648 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a8846487fc05a884648 /* Xml/SnRepXCoreSerializer.cpp */; }; + FFFF5a8846b07fc05a8846b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a8846b07fc05a8846b0 /* Xml/SnRepXUpgrader.cpp */; }; + FFFF5a8847187fc05a884718 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD5a8847187fc05a884718 /* Xml/SnXmlSerialization.cpp */; }; + FFFF5a8814e07fc05a8814e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD5a8814e07fc05a8814e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD8146da607f8a8146da60 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD82034e007f8a82034e00 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; - FFFD82034e687f8a82034e68 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD82034ed07f8a82034ed0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFD82034f387f8a82034f38 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD82034fa07f8a82034fa0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; - FFFD820350087f8a82035008 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFD820350707f8a82035070 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD820350d87f8a820350d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD820351407f8a82035140 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD820351a87f8a820351a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFD820352107f8a82035210 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD820352787f8a82035278 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD820352e07f8a820352e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD820353487f8a82035348 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; - FFFD820353b07f8a820353b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD820354187f8a82035418 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD820354807f8a82035480 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD820354e87f8a820354e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD820355507f8a82035550 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD820355b87f8a820355b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; - FFFD820356207f8a82035620 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD820356887f8a82035688 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD820356f07f8a820356f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD820357587f8a82035758 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFD820357c07f8a820357c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD820358287f8a82035828 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; - FFFD820358907f8a82035890 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD820358f87f8a820358f8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD820359607f8a82035960 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD820359c87f8a820359c8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD82035a307f8a82035a30 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD82035a987f8a82035a98 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD82035b007f8a82035b00 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD82035b687f8a82035b68 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; - FFFD82035bd07f8a82035bd0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD82035c387f8a82035c38 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD82035ca07f8a82035ca0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD820338007f8a82033800 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD820338687f8a82033868 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; - FFFD820338d07f8a820338d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFD820339387f8a82033938 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD820339a07f8a820339a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD82033a087f8a82033a08 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD82033a707f8a82033a70 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; - FFFD82033ad87f8a82033ad8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD82033b407f8a82033b40 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD82033ba87f8a82033ba8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; - FFFD82033c107f8a82033c10 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD82033c787f8a82033c78 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD82033ce07f8a82033ce0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD82033d487f8a82033d48 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD82033db07f8a82033db0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD82033e187f8a82033e18 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD82033e807f8a82033e80 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD82033ee87f8a82033ee8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82033f507f8a82033f50 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82033fb87f8a82033fb8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820340207f8a82034020 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820340887f8a82034088 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820340f07f8a820340f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820341587f8a82034158 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820341c07f8a820341c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820342287f8a82034228 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820342907f8a82034290 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820342f87f8a820342f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820343607f8a82034360 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820343c87f8a820343c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820344307f8a82034430 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820344987f8a82034498 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820345007f8a82034500 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820345687f8a82034568 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820345d07f8a820345d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820346387f8a82034638 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820346a07f8a820346a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820347087f8a82034708 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820347707f8a82034770 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820347d87f8a820347d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820348407f8a82034840 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820348a87f8a820348a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820349107f8a82034910 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820349787f8a82034978 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820349e07f8a820349e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82034a487f8a82034a48 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82034ab07f8a82034ab0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82034b187f8a82034b18 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82034b807f8a82034b80 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82034be87f8a82034be8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82034c507f8a82034c50 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82034cb87f8a82034cb8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82034d207f8a82034d20 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820374007f8a82037400 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD820374687f8a82037468 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; - FFFD820374d07f8a820374d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820375387f8a82037538 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820375a07f8a820375a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820376087f8a82037608 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; - FFFD820376707f8a82037670 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; - FFFD820376d87f8a820376d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFD820377407f8a82037740 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD820377a87f8a820377a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; - FFFD820378107f8a82037810 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; - FFFD820378787f8a82037878 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD820378e07f8a820378e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820379487f8a82037948 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820379b07f8a820379b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82037a187f8a82037a18 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82037a807f8a82037a80 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82037ae87f8a82037ae8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82037b507f8a82037b50 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82037bb87f8a82037bb8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82037c207f8a82037c20 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82037c887f8a82037c88 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82037cf07f8a82037cf0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD82037d587f8a82037d58 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; - FFFD82037dc07f8a82037dc0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD82037e287f8a82037e28 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD82037e907f8a82037e90 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD82037ef87f8a82037ef8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD82037f607f8a82037f60 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD82037fc87f8a82037fc8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD820380307f8a82038030 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; - FFFD820380987f8a82038098 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD820381007f8a82038100 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD820381687f8a82038168 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD820381d07f8a820381d0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD820382387f8a82038238 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD820382a07f8a820382a0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD820383087f8a82038308 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; - FFFD820383707f8a82038370 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD820383d87f8a820383d8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD820384407f8a82038440 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; - FFFD820384a87f8a820384a8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; - FFFD820385107f8a82038510 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD820385787f8a82038578 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD820385e07f8a820385e0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820386487f8a82038648 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820386b07f8a820386b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820387187f8a82038718 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820387807f8a82038780 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; - FFFD82035e007f8a82035e00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD82035e687f8a82035e68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD82035ed07f8a82035ed0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD82035f387f8a82035f38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD82035fa07f8a82035fa0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD820360087f8a82036008 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFD820360707f8a82036070 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFD820360d87f8a820360d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD820361407f8a82036140 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD820361a87f8a820361a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD820362107f8a82036210 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD820362787f8a82036278 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD820362e07f8a820362e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d18aba07fc05d18aba0 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5a8800007fc05a880000 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8800687fc05a880068 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8800d07fc05a8800d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8801387fc05a880138 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8801a07fc05a8801a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8802087fc05a880208 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8802707fc05a880270 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8802d87fc05a8802d8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8803407fc05a880340 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8803a87fc05a8803a8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8804107fc05a880410 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8804787fc05a880478 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8804e07fc05a8804e0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8805487fc05a880548 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8805b07fc05a8805b0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8806187fc05a880618 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8806807fc05a880680 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8806e87fc05a8806e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8807507fc05a880750 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8807b87fc05a8807b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8808207fc05a880820 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8808887fc05a880888 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8808f07fc05a8808f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8809587fc05a880958 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8809c07fc05a8809c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a880a287fc05a880a28 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a880a907fc05a880a90 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a880af87fc05a880af8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a880b607fc05a880b60 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a880bc87fc05a880bc8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a880c307fc05a880c30 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a880c987fc05a880c98 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a880d007fc05a880d00 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a880d687fc05a880d68 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a880dd07fc05a880dd0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a880e387fc05a880e38 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a880ea07fc05a880ea0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87ea007fc05a87ea00 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87ea687fc05a87ea68 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87ead07fc05a87ead0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87eb387fc05a87eb38 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87eba07fc05a87eba0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87ec087fc05a87ec08 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87ec707fc05a87ec70 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87ecd87fc05a87ecd8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87ed407fc05a87ed40 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87eda87fc05a87eda8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87ee107fc05a87ee10 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87ee787fc05a87ee78 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87eee07fc05a87eee0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87ef487fc05a87ef48 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87efb07fc05a87efb0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f0187fc05a87f018 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f0807fc05a87f080 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f0e87fc05a87f0e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f1507fc05a87f150 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f1b87fc05a87f1b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f2207fc05a87f220 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f2887fc05a87f288 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f2f07fc05a87f2f0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f3587fc05a87f358 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f3c07fc05a87f3c0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f4287fc05a87f428 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f4907fc05a87f490 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f4f87fc05a87f4f8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f5607fc05a87f560 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f5c87fc05a87f5c8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f6307fc05a87f630 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f6987fc05a87f698 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f7007fc05a87f700 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f7687fc05a87f768 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f7d07fc05a87f7d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f8387fc05a87f838 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f8a07fc05a87f8a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f9087fc05a87f908 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f9707fc05a87f970 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87f9d87fc05a87f9d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87fa407fc05a87fa40 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87faa87fc05a87faa8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87fb107fc05a87fb10 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87fb787fc05a87fb78 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87fbe07fc05a87fbe0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87fc487fc05a87fc48 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87fcb07fc05a87fcb0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87fd187fc05a87fd18 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87fd807fc05a87fd80 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87fde87fc05a87fde8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87fe507fc05a87fe50 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87feb87fc05a87feb8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a87ff207fc05a87ff20 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8834007fc05a883400 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8834687fc05a883468 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8834d07fc05a8834d0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8835387fc05a883538 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8835a07fc05a8835a0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8836087fc05a883608 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8836707fc05a883670 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8836d87fc05a8836d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8837407fc05a883740 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8837a87fc05a8837a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8838107fc05a883810 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8838787fc05a883878 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8838e07fc05a8838e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8839487fc05a883948 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8839b07fc05a8839b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a883a187fc05a883a18 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a883a807fc05a883a80 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a883ae87fc05a883ae8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a883b507fc05a883b50 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a883bb87fc05a883bb8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a883c207fc05a883c20 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a883c887fc05a883c88 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a883cf07fc05a883cf0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a883d587fc05a883d58 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a883dc07fc05a883dc0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a883e287fc05a883e28 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a883e907fc05a883e90 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a883ef87fc05a883ef8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a883f607fc05a883f60 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a883fc87fc05a883fc8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8840307fc05a884030 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8840987fc05a884098 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8841007fc05a884100 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8841687fc05a884168 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8841d07fc05a8841d0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8842387fc05a884238 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8842a07fc05a8842a0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8843087fc05a884308 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8843707fc05a884370 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8843d87fc05a8843d8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8844407fc05a884440 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8844a87fc05a8844a8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8845107fc05a884510 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8845787fc05a884578 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8845e07fc05a8845e0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8846487fc05a884648 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8846b07fc05a8846b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8847187fc05a884718 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8847807fc05a884780 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8810007fc05a881000 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8810687fc05a881068 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8810d07fc05a8810d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8811387fc05a881138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8811a07fc05a8811a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8812087fc05a881208 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8812707fc05a881270 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8812d87fc05a8812d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8813407fc05a881340 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8813a87fc05a8813a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8814107fc05a881410 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8814787fc05a881478 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8814e07fc05a8814e0 /* 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 */ - FFF28146da607f8a8146da60 /* Resources */ = { + FFF25d18aba07fc05d18aba0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -804,7 +804,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC8146da607f8a8146da60 /* Frameworks */ = { + FFFC5d18aba07fc05d18aba0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -814,64 +814,64 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF88146da607f8a8146da60 /* Sources */ = { + FFF85d18aba07fc05d18aba0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF82033ee87f8a82033ee8, - FFFF82033f507f8a82033f50, - FFFF82033fb87f8a82033fb8, - FFFF820340207f8a82034020, - FFFF820340887f8a82034088, - FFFF820340f07f8a820340f0, - FFFF820341587f8a82034158, - FFFF820341c07f8a820341c0, - FFFF820342287f8a82034228, - FFFF820342907f8a82034290, - FFFF820342f87f8a820342f8, - FFFF820343607f8a82034360, - FFFF820343c87f8a820343c8, - FFFF820344307f8a82034430, - FFFF820344987f8a82034498, - FFFF820345007f8a82034500, - FFFF820345687f8a82034568, - FFFF820345d07f8a820345d0, - FFFF820346387f8a82034638, - FFFF820346a07f8a820346a0, - FFFF820347087f8a82034708, - FFFF820347707f8a82034770, - FFFF820347d87f8a820347d8, - FFFF820348407f8a82034840, - FFFF820348a87f8a820348a8, - FFFF820349107f8a82034910, - FFFF820349787f8a82034978, - FFFF820349e07f8a820349e0, - FFFF82034a487f8a82034a48, - FFFF82034ab07f8a82034ab0, - FFFF82034b187f8a82034b18, - FFFF82034b807f8a82034b80, - FFFF82034be87f8a82034be8, - FFFF82034c507f8a82034c50, - FFFF82034cb87f8a82034cb8, - FFFF82034d207f8a82034d20, - FFFF820374d07f8a820374d0, - FFFF820375387f8a82037538, - FFFF820375a07f8a820375a0, - FFFF820378e07f8a820378e0, - FFFF820379487f8a82037948, - FFFF820379b07f8a820379b0, - FFFF82037a187f8a82037a18, - FFFF82037a807f8a82037a80, - FFFF82037ae87f8a82037ae8, - FFFF82037b507f8a82037b50, - FFFF82037bb87f8a82037bb8, - FFFF82037c207f8a82037c20, - FFFF82037c887f8a82037c88, - FFFF820385e07f8a820385e0, - FFFF820386487f8a82038648, - FFFF820386b07f8a820386b0, - FFFF820387187f8a82038718, - FFFF820362e07f8a820362e0, + FFFF5a87f0e87fc05a87f0e8, + FFFF5a87f1507fc05a87f150, + FFFF5a87f1b87fc05a87f1b8, + FFFF5a87f2207fc05a87f220, + FFFF5a87f2887fc05a87f288, + FFFF5a87f2f07fc05a87f2f0, + FFFF5a87f3587fc05a87f358, + FFFF5a87f3c07fc05a87f3c0, + FFFF5a87f4287fc05a87f428, + FFFF5a87f4907fc05a87f490, + FFFF5a87f4f87fc05a87f4f8, + FFFF5a87f5607fc05a87f560, + FFFF5a87f5c87fc05a87f5c8, + FFFF5a87f6307fc05a87f630, + FFFF5a87f6987fc05a87f698, + FFFF5a87f7007fc05a87f700, + FFFF5a87f7687fc05a87f768, + FFFF5a87f7d07fc05a87f7d0, + FFFF5a87f8387fc05a87f838, + FFFF5a87f8a07fc05a87f8a0, + FFFF5a87f9087fc05a87f908, + FFFF5a87f9707fc05a87f970, + FFFF5a87f9d87fc05a87f9d8, + FFFF5a87fa407fc05a87fa40, + FFFF5a87faa87fc05a87faa8, + FFFF5a87fb107fc05a87fb10, + FFFF5a87fb787fc05a87fb78, + FFFF5a87fbe07fc05a87fbe0, + FFFF5a87fc487fc05a87fc48, + FFFF5a87fcb07fc05a87fcb0, + FFFF5a87fd187fc05a87fd18, + FFFF5a87fd807fc05a87fd80, + FFFF5a87fde87fc05a87fde8, + FFFF5a87fe507fc05a87fe50, + FFFF5a87feb87fc05a87feb8, + FFFF5a87ff207fc05a87ff20, + FFFF5a8834d07fc05a8834d0, + FFFF5a8835387fc05a883538, + FFFF5a8835a07fc05a8835a0, + FFFF5a8838e07fc05a8838e0, + FFFF5a8839487fc05a883948, + FFFF5a8839b07fc05a8839b0, + FFFF5a883a187fc05a883a18, + FFFF5a883a807fc05a883a80, + FFFF5a883ae87fc05a883ae8, + FFFF5a883b507fc05a883b50, + FFFF5a883bb87fc05a883bb8, + FFFF5a883c207fc05a883c20, + FFFF5a883c887fc05a883c88, + FFFF5a8845e07fc05a8845e0, + FFFF5a8846487fc05a884648, + FFFF5a8846b07fc05a8846b0, + FFFF5a8847187fc05a884718, + FFFF5a8814e07fc05a8814e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -880,56 +880,56 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF48146dee07f8a8146dee0 /* PBXTargetDependency */ = { + FFF45d18b0207fc05d18b020 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA8145b5107f8a8145b510 /* PsFastXml */; - targetProxy = FFF58145b5107f8a8145b510 /* PBXContainerItemProxy */; + target = FFFA5d16dba07fc05d16dba0 /* PsFastXml */; + targetProxy = FFF55d16dba07fc05d16dba0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SceneQuery */ - FFFF8203c4007f8a8203c400 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8203c4007f8a8203c400 /* SqAABBPruner.cpp */; }; - FFFF8203c4687f8a8203c468 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8203c4687f8a8203c468 /* SqAABBTree.cpp */; }; - FFFF8203c4d07f8a8203c4d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8203c4d07f8a8203c4d0 /* SqAABBTreeUpdateMap.cpp */; }; - FFFF8203c5387f8a8203c538 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8203c5387f8a8203c538 /* SqBounds.cpp */; }; - FFFF8203c5a07f8a8203c5a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8203c5a07f8a8203c5a0 /* SqBucketPruner.cpp */; }; - FFFF8203c6087f8a8203c608 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8203c6087f8a8203c608 /* SqExtendedBucketPruner.cpp */; }; - FFFF8203c6707f8a8203c670 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8203c6707f8a8203c670 /* SqMetaData.cpp */; }; - FFFF8203c6d87f8a8203c6d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8203c6d87f8a8203c6d8 /* SqPruningPool.cpp */; }; - FFFF8203c7407f8a8203c740 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8203c7407f8a8203c740 /* SqPruningStructure.cpp */; }; - FFFF8203c7a87f8a8203c7a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8203c7a87f8a8203c7a8 /* SqSceneQueryManager.cpp */; }; + FFFF5a8874007fc05a887400 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8874007fc05a887400 /* SqAABBPruner.cpp */; }; + FFFF5a8874687fc05a887468 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8874687fc05a887468 /* SqAABBTree.cpp */; }; + FFFF5a8874d07fc05a8874d0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8874d07fc05a8874d0 /* SqAABBTreeUpdateMap.cpp */; }; + FFFF5a8875387fc05a887538 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8875387fc05a887538 /* SqBounds.cpp */; }; + FFFF5a8875a07fc05a8875a0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8875a07fc05a8875a0 /* SqBucketPruner.cpp */; }; + FFFF5a8876087fc05a887608 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8876087fc05a887608 /* SqExtendedBucketPruner.cpp */; }; + FFFF5a8876707fc05a887670 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8876707fc05a887670 /* SqMetaData.cpp */; }; + FFFF5a8876d87fc05a8876d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8876d87fc05a8876d8 /* SqPruningPool.cpp */; }; + FFFF5a8877407fc05a887740 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8877407fc05a887740 /* SqPruningStructure.cpp */; }; + FFFF5a8877a87fc05a8877a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8877a87fc05a8877a8 /* SqSceneQueryManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD814803907f8a81480390 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD8203c4007f8a8203c400 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8203c4687f8a8203c468 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8203c4d07f8a8203c4d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8203c5387f8a8203c538 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8203c5a07f8a8203c5a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8203c6087f8a8203c608 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8203c6707f8a8203c670 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8203c6d87f8a8203c6d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8203c7407f8a8203c740 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8203c7a87f8a8203c7a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8203c8107f8a8203c810 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203c8787f8a8203c878 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203c8e07f8a8203c8e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203c9487f8a8203c948 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203c9b07f8a8203c9b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203ca187f8a8203ca18 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203ca807f8a8203ca80 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203cae87f8a8203cae8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203cb507f8a8203cb50 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203cbb87f8a8203cbb8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; - FFFD814847c07f8a814847c0 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD814848287f8a81484828 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; - FFFD814848907f8a81484890 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFD814848f87f8a814848f8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d19d4d07fc05d19d4d0 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5a8874007fc05a887400 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8874687fc05a887468 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8874d07fc05a8874d0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8875387fc05a887538 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8875a07fc05a8875a0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8876087fc05a887608 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8876707fc05a887670 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8876d87fc05a8876d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8877407fc05a887740 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8877a87fc05a8877a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8878107fc05a887810 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8878787fc05a887878 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8878e07fc05a8878e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8879487fc05a887948 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8879b07fc05a8879b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a887a187fc05a887a18 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a887a807fc05a887a80 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a887ae87fc05a887ae8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a887b507fc05a887b50 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a887bb87fc05a887bb8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d1a19007fc05d1a1900 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d1a19687fc05d1a1968 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d1a19d07fc05d1a19d0 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d1a1a387fc05d1a1a38 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2814803907f8a81480390 /* Resources */ = { + FFF25d19d4d07fc05d19d4d0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -939,7 +939,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC814803907f8a81480390 /* Frameworks */ = { + FFFC5d19d4d07fc05d19d4d0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -949,20 +949,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8814803907f8a81480390 /* Sources */ = { + FFF85d19d4d07fc05d19d4d0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF8203c4007f8a8203c400, - FFFF8203c4687f8a8203c468, - FFFF8203c4d07f8a8203c4d0, - FFFF8203c5387f8a8203c538, - FFFF8203c5a07f8a8203c5a0, - FFFF8203c6087f8a8203c608, - FFFF8203c6707f8a8203c670, - FFFF8203c6d87f8a8203c6d8, - FFFF8203c7407f8a8203c740, - FFFF8203c7a87f8a8203c7a8, + FFFF5a8874007fc05a887400, + FFFF5a8874687fc05a887468, + FFFF5a8874d07fc05a8874d0, + FFFF5a8875387fc05a887538, + FFFF5a8875a07fc05a8875a0, + FFFF5a8876087fc05a887608, + FFFF5a8876707fc05a887670, + FFFF5a8876d87fc05a8876d8, + FFFF5a8877407fc05a887740, + FFFF5a8877a87fc05a8877a8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -974,154 +974,154 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SimulationController */ - FFFF81835bd07f8a81835bd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81835bd07f8a81835bd0 /* ScActorCore.cpp */; }; - FFFF81835c387f8a81835c38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81835c387f8a81835c38 /* ScActorSim.cpp */; }; - FFFF81835ca07f8a81835ca0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81835ca07f8a81835ca0 /* ScArticulationCore.cpp */; }; - FFFF81835d087f8a81835d08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81835d087f8a81835d08 /* ScArticulationJointCore.cpp */; }; - FFFF81835d707f8a81835d70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81835d707f8a81835d70 /* ScArticulationJointSim.cpp */; }; - FFFF81835dd87f8a81835dd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81835dd87f8a81835dd8 /* ScArticulationSim.cpp */; }; - FFFF81835e407f8a81835e40 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81835e407f8a81835e40 /* ScBodyCore.cpp */; }; - FFFF81835ea87f8a81835ea8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81835ea87f8a81835ea8 /* ScBodyCoreKinematic.cpp */; }; - FFFF81835f107f8a81835f10 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81835f107f8a81835f10 /* ScBodySim.cpp */; }; - FFFF81835f787f8a81835f78 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81835f787f8a81835f78 /* ScConstraintCore.cpp */; }; - FFFF81835fe07f8a81835fe0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81835fe07f8a81835fe0 /* ScConstraintGroupNode.cpp */; }; - FFFF818360487f8a81836048 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818360487f8a81836048 /* ScConstraintInteraction.cpp */; }; - FFFF818360b07f8a818360b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818360b07f8a818360b0 /* ScConstraintProjectionManager.cpp */; }; - FFFF818361187f8a81836118 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818361187f8a81836118 /* ScConstraintProjectionTree.cpp */; }; - FFFF818361807f8a81836180 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818361807f8a81836180 /* ScConstraintSim.cpp */; }; - FFFF818361e87f8a818361e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818361e87f8a818361e8 /* ScElementInteractionMarker.cpp */; }; - FFFF818362507f8a81836250 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818362507f8a81836250 /* ScElementSim.cpp */; }; - FFFF818362b87f8a818362b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818362b87f8a818362b8 /* ScInteraction.cpp */; }; - FFFF818363207f8a81836320 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818363207f8a81836320 /* ScIterators.cpp */; }; - FFFF818363887f8a81836388 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818363887f8a81836388 /* ScMaterialCore.cpp */; }; - FFFF818363f07f8a818363f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818363f07f8a818363f0 /* ScMetaData.cpp */; }; - FFFF818364587f8a81836458 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818364587f8a81836458 /* ScNPhaseCore.cpp */; }; - FFFF818364c07f8a818364c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818364c07f8a818364c0 /* ScPhysics.cpp */; }; - FFFF818365287f8a81836528 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818365287f8a81836528 /* ScRigidCore.cpp */; }; - FFFF818365907f8a81836590 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818365907f8a81836590 /* ScRigidSim.cpp */; }; - FFFF818365f87f8a818365f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818365f87f8a818365f8 /* ScScene.cpp */; }; - FFFF818366607f8a81836660 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818366607f8a81836660 /* ScShapeCore.cpp */; }; - FFFF818366c87f8a818366c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818366c87f8a818366c8 /* ScShapeInteraction.cpp */; }; - FFFF818367307f8a81836730 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818367307f8a81836730 /* ScShapeSim.cpp */; }; - FFFF818367987f8a81836798 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818367987f8a81836798 /* ScSimStats.cpp */; }; - FFFF818368007f8a81836800 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818368007f8a81836800 /* ScSimulationController.cpp */; }; - FFFF818368687f8a81836868 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818368687f8a81836868 /* ScSqBoundsManager.cpp */; }; - FFFF818368d07f8a818368d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818368d07f8a818368d0 /* ScStaticCore.cpp */; }; - FFFF818369387f8a81836938 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818369387f8a81836938 /* ScStaticSim.cpp */; }; - FFFF818369a07f8a818369a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818369a07f8a818369a0 /* ScTriggerInteraction.cpp */; }; - FFFF81836b407f8a81836b40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81836b407f8a81836b40 /* particles/ScParticleBodyInteraction.cpp */; }; - FFFF81836ba87f8a81836ba8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81836ba87f8a81836ba8 /* particles/ScParticlePacketShape.cpp */; }; - FFFF81836c107f8a81836c10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81836c107f8a81836c10 /* particles/ScParticleSystemCore.cpp */; }; - FFFF81836c787f8a81836c78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81836c787f8a81836c78 /* particles/ScParticleSystemSim.cpp */; }; - FFFF81836db07f8a81836db0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81836db07f8a81836db0 /* cloth/ScClothCore.cpp */; }; - FFFF81836e187f8a81836e18 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81836e187f8a81836e18 /* cloth/ScClothFabricCore.cpp */; }; - FFFF81836e807f8a81836e80 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81836e807f8a81836e80 /* cloth/ScClothShape.cpp */; }; - FFFF81836ee87f8a81836ee8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81836ee87f8a81836ee8 /* cloth/ScClothSim.cpp */; }; + FFFF5c8491d07fc05c8491d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8491d07fc05c8491d0 /* ScActorCore.cpp */; }; + FFFF5c8492387fc05c849238 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8492387fc05c849238 /* ScActorSim.cpp */; }; + FFFF5c8492a07fc05c8492a0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8492a07fc05c8492a0 /* ScArticulationCore.cpp */; }; + FFFF5c8493087fc05c849308 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8493087fc05c849308 /* ScArticulationJointCore.cpp */; }; + FFFF5c8493707fc05c849370 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8493707fc05c849370 /* ScArticulationJointSim.cpp */; }; + FFFF5c8493d87fc05c8493d8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8493d87fc05c8493d8 /* ScArticulationSim.cpp */; }; + FFFF5c8494407fc05c849440 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8494407fc05c849440 /* ScBodyCore.cpp */; }; + FFFF5c8494a87fc05c8494a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8494a87fc05c8494a8 /* ScBodyCoreKinematic.cpp */; }; + FFFF5c8495107fc05c849510 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8495107fc05c849510 /* ScBodySim.cpp */; }; + FFFF5c8495787fc05c849578 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8495787fc05c849578 /* ScConstraintCore.cpp */; }; + FFFF5c8495e07fc05c8495e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8495e07fc05c8495e0 /* ScConstraintGroupNode.cpp */; }; + FFFF5c8496487fc05c849648 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8496487fc05c849648 /* ScConstraintInteraction.cpp */; }; + FFFF5c8496b07fc05c8496b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8496b07fc05c8496b0 /* ScConstraintProjectionManager.cpp */; }; + FFFF5c8497187fc05c849718 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8497187fc05c849718 /* ScConstraintProjectionTree.cpp */; }; + FFFF5c8497807fc05c849780 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8497807fc05c849780 /* ScConstraintSim.cpp */; }; + FFFF5c8497e87fc05c8497e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8497e87fc05c8497e8 /* ScElementInteractionMarker.cpp */; }; + FFFF5c8498507fc05c849850 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8498507fc05c849850 /* ScElementSim.cpp */; }; + FFFF5c8498b87fc05c8498b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8498b87fc05c8498b8 /* ScInteraction.cpp */; }; + FFFF5c8499207fc05c849920 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8499207fc05c849920 /* ScIterators.cpp */; }; + FFFF5c8499887fc05c849988 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8499887fc05c849988 /* ScMaterialCore.cpp */; }; + FFFF5c8499f07fc05c8499f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8499f07fc05c8499f0 /* ScMetaData.cpp */; }; + FFFF5c849a587fc05c849a58 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c849a587fc05c849a58 /* ScNPhaseCore.cpp */; }; + FFFF5c849ac07fc05c849ac0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c849ac07fc05c849ac0 /* ScPhysics.cpp */; }; + FFFF5c849b287fc05c849b28 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c849b287fc05c849b28 /* ScRigidCore.cpp */; }; + FFFF5c849b907fc05c849b90 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c849b907fc05c849b90 /* ScRigidSim.cpp */; }; + FFFF5c849bf87fc05c849bf8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c849bf87fc05c849bf8 /* ScScene.cpp */; }; + FFFF5c849c607fc05c849c60 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c849c607fc05c849c60 /* ScShapeCore.cpp */; }; + FFFF5c849cc87fc05c849cc8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c849cc87fc05c849cc8 /* ScShapeInteraction.cpp */; }; + FFFF5c849d307fc05c849d30 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c849d307fc05c849d30 /* ScShapeSim.cpp */; }; + FFFF5c849d987fc05c849d98 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c849d987fc05c849d98 /* ScSimStats.cpp */; }; + FFFF5c849e007fc05c849e00 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c849e007fc05c849e00 /* ScSimulationController.cpp */; }; + FFFF5c849e687fc05c849e68 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c849e687fc05c849e68 /* ScSqBoundsManager.cpp */; }; + FFFF5c849ed07fc05c849ed0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c849ed07fc05c849ed0 /* ScStaticCore.cpp */; }; + FFFF5c849f387fc05c849f38 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c849f387fc05c849f38 /* ScStaticSim.cpp */; }; + FFFF5c849fa07fc05c849fa0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c849fa07fc05c849fa0 /* ScTriggerInteraction.cpp */; }; + FFFF5c84a1407fc05c84a140 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c84a1407fc05c84a140 /* particles/ScParticleBodyInteraction.cpp */; }; + FFFF5c84a1a87fc05c84a1a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c84a1a87fc05c84a1a8 /* particles/ScParticlePacketShape.cpp */; }; + FFFF5c84a2107fc05c84a210 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c84a2107fc05c84a210 /* particles/ScParticleSystemCore.cpp */; }; + FFFF5c84a2787fc05c84a278 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c84a2787fc05c84a278 /* particles/ScParticleSystemSim.cpp */; }; + FFFF5c84a3b07fc05c84a3b0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c84a3b07fc05c84a3b0 /* cloth/ScClothCore.cpp */; }; + FFFF5c84a4187fc05c84a418 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c84a4187fc05c84a418 /* cloth/ScClothFabricCore.cpp */; }; + FFFF5c84a4807fc05c84a480 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c84a4807fc05c84a480 /* cloth/ScClothShape.cpp */; }; + FFFF5c84a4e87fc05c84a4e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c84a4e87fc05c84a4e8 /* cloth/ScClothSim.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD81484a807f8a81484a80 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD8203ee007f8a8203ee00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203ee687f8a8203ee68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203eed07f8a8203eed0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203ef387f8a8203ef38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203efa07f8a8203efa0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203f0087f8a8203f008 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203f0707f8a8203f070 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203f0d87f8a8203f0d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203f1407f8a8203f140 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203f1a87f8a8203f1a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203f2107f8a8203f210 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203f2787f8a8203f278 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203f2e07f8a8203f2e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203f3487f8a8203f348 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD8203f3b07f8a8203f3b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD81834e007f8a81834e00 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD81834e687f8a81834e68 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD81834ed07f8a81834ed0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD81834f387f8a81834f38 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD81834fa07f8a81834fa0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD818350087f8a81835008 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD818350707f8a81835070 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFD818350d87f8a818350d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD818351407f8a81835140 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; - FFFD818351a87f8a818351a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD818352107f8a81835210 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD818352787f8a81835278 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD818352e07f8a818352e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD818353487f8a81835348 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD818353b07f8a818353b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD818354187f8a81835418 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; - FFFD818354807f8a81835480 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD818354e87f8a818354e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD818355507f8a81835550 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD818355b87f8a818355b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD818356207f8a81835620 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD818356887f8a81835688 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; - FFFD818356f07f8a818356f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD818357587f8a81835758 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD818357c07f8a818357c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD818358287f8a81835828 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFD818358907f8a81835890 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD818358f87f8a818358f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; - FFFD818359607f8a81835960 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFD818359c87f8a818359c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFD81835a307f8a81835a30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD81835a987f8a81835a98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD81835b007f8a81835b00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD81835b687f8a81835b68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; - FFFD81835bd07f8a81835bd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81835c387f8a81835c38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81835ca07f8a81835ca0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81835d087f8a81835d08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81835d707f8a81835d70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81835dd87f8a81835dd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81835e407f8a81835e40 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81835ea87f8a81835ea8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81835f107f8a81835f10 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81835f787f8a81835f78 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81835fe07f8a81835fe0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818360487f8a81836048 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818360b07f8a818360b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818361187f8a81836118 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818361807f8a81836180 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818361e87f8a818361e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818362507f8a81836250 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818362b87f8a818362b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818363207f8a81836320 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818363887f8a81836388 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818363f07f8a818363f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818364587f8a81836458 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818364c07f8a818364c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818365287f8a81836528 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818365907f8a81836590 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818365f87f8a818365f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818366607f8a81836660 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818366c87f8a818366c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818367307f8a81836730 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818367987f8a81836798 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818368007f8a81836800 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818368687f8a81836868 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818368d07f8a818368d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818369387f8a81836938 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818369a07f8a818369a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81836a087f8a81836a08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD81836a707f8a81836a70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD81836ad87f8a81836ad8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD81836b407f8a81836b40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81836ba87f8a81836ba8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81836c107f8a81836c10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81836c787f8a81836c78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81836ce07f8a81836ce0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD81836d487f8a81836d48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD81836db07f8a81836db0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81836e187f8a81836e18 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81836e807f8a81836e80 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81836ee87f8a81836ee8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d1a1bc07fc05d1a1bc0 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5a889e007fc05a889e00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a889e687fc05a889e68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a889ed07fc05a889ed0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a889f387fc05a889f38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a889fa07fc05a889fa0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a88a0087fc05a88a008 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a88a0707fc05a88a070 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a88a0d87fc05a88a0d8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a88a1407fc05a88a140 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a88a1a87fc05a88a1a8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a88a2107fc05a88a210 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a88a2787fc05a88a278 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a88a2e07fc05a88a2e0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a88a3487fc05a88a348 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a88a3b07fc05a88a3b0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8484007fc05c848400 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8484687fc05c848468 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8484d07fc05c8484d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8485387fc05c848538 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8485a07fc05c8485a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8486087fc05c848608 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8486707fc05c848670 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8486d87fc05c8486d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8487407fc05c848740 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8487a87fc05c8487a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8488107fc05c848810 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8488787fc05c848878 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8488e07fc05c8488e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8489487fc05c848948 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8489b07fc05c8489b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c848a187fc05c848a18 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c848a807fc05c848a80 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c848ae87fc05c848ae8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c848b507fc05c848b50 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c848bb87fc05c848bb8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c848c207fc05c848c20 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c848c887fc05c848c88 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c848cf07fc05c848cf0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c848d587fc05c848d58 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c848dc07fc05c848dc0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c848e287fc05c848e28 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c848e907fc05c848e90 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c848ef87fc05c848ef8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c848f607fc05c848f60 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c848fc87fc05c848fc8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8490307fc05c849030 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8490987fc05c849098 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8491007fc05c849100 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8491687fc05c849168 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8491d07fc05c8491d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8492387fc05c849238 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8492a07fc05c8492a0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8493087fc05c849308 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8493707fc05c849370 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8493d87fc05c8493d8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8494407fc05c849440 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8494a87fc05c8494a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8495107fc05c849510 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8495787fc05c849578 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8495e07fc05c8495e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8496487fc05c849648 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8496b07fc05c8496b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8497187fc05c849718 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8497807fc05c849780 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8497e87fc05c8497e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8498507fc05c849850 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8498b87fc05c8498b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8499207fc05c849920 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8499887fc05c849988 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8499f07fc05c8499f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c849a587fc05c849a58 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c849ac07fc05c849ac0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c849b287fc05c849b28 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c849b907fc05c849b90 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c849bf87fc05c849bf8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c849c607fc05c849c60 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c849cc87fc05c849cc8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c849d307fc05c849d30 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c849d987fc05c849d98 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c849e007fc05c849e00 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c849e687fc05c849e68 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c849ed07fc05c849ed0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c849f387fc05c849f38 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c849fa07fc05c849fa0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c84a0087fc05c84a008 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c84a0707fc05c84a070 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c84a0d87fc05c84a0d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c84a1407fc05c84a140 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c84a1a87fc05c84a1a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c84a2107fc05c84a210 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c84a2787fc05c84a278 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c84a2e07fc05c84a2e0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c84a3487fc05c84a348 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c84a3b07fc05c84a3b0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c84a4187fc05c84a418 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c84a4807fc05c84a480 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c84a4e87fc05c84a4e8 /* 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 */ - FFF281484a807f8a81484a80 /* Resources */ = { + FFF25d1a1bc07fc05d1a1bc0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1131,7 +1131,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC81484a807f8a81484a80 /* Frameworks */ = { + FFFC5d1a1bc07fc05d1a1bc0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1141,53 +1141,53 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF881484a807f8a81484a80 /* Sources */ = { + FFF85d1a1bc07fc05d1a1bc0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF81835bd07f8a81835bd0, - FFFF81835c387f8a81835c38, - FFFF81835ca07f8a81835ca0, - FFFF81835d087f8a81835d08, - FFFF81835d707f8a81835d70, - FFFF81835dd87f8a81835dd8, - FFFF81835e407f8a81835e40, - FFFF81835ea87f8a81835ea8, - FFFF81835f107f8a81835f10, - FFFF81835f787f8a81835f78, - FFFF81835fe07f8a81835fe0, - FFFF818360487f8a81836048, - FFFF818360b07f8a818360b0, - FFFF818361187f8a81836118, - FFFF818361807f8a81836180, - FFFF818361e87f8a818361e8, - FFFF818362507f8a81836250, - FFFF818362b87f8a818362b8, - FFFF818363207f8a81836320, - FFFF818363887f8a81836388, - FFFF818363f07f8a818363f0, - FFFF818364587f8a81836458, - FFFF818364c07f8a818364c0, - FFFF818365287f8a81836528, - FFFF818365907f8a81836590, - FFFF818365f87f8a818365f8, - FFFF818366607f8a81836660, - FFFF818366c87f8a818366c8, - FFFF818367307f8a81836730, - FFFF818367987f8a81836798, - FFFF818368007f8a81836800, - FFFF818368687f8a81836868, - FFFF818368d07f8a818368d0, - FFFF818369387f8a81836938, - FFFF818369a07f8a818369a0, - FFFF81836b407f8a81836b40, - FFFF81836ba87f8a81836ba8, - FFFF81836c107f8a81836c10, - FFFF81836c787f8a81836c78, - FFFF81836db07f8a81836db0, - FFFF81836e187f8a81836e18, - FFFF81836e807f8a81836e80, - FFFF81836ee87f8a81836ee8, + FFFF5c8491d07fc05c8491d0, + FFFF5c8492387fc05c849238, + FFFF5c8492a07fc05c8492a0, + FFFF5c8493087fc05c849308, + FFFF5c8493707fc05c849370, + FFFF5c8493d87fc05c8493d8, + FFFF5c8494407fc05c849440, + FFFF5c8494a87fc05c8494a8, + FFFF5c8495107fc05c849510, + FFFF5c8495787fc05c849578, + FFFF5c8495e07fc05c8495e0, + FFFF5c8496487fc05c849648, + FFFF5c8496b07fc05c8496b0, + FFFF5c8497187fc05c849718, + FFFF5c8497807fc05c849780, + FFFF5c8497e87fc05c8497e8, + FFFF5c8498507fc05c849850, + FFFF5c8498b87fc05c8498b8, + FFFF5c8499207fc05c849920, + FFFF5c8499887fc05c849988, + FFFF5c8499f07fc05c8499f0, + FFFF5c849a587fc05c849a58, + FFFF5c849ac07fc05c849ac0, + FFFF5c849b287fc05c849b28, + FFFF5c849b907fc05c849b90, + FFFF5c849bf87fc05c849bf8, + FFFF5c849c607fc05c849c60, + FFFF5c849cc87fc05c849cc8, + FFFF5c849d307fc05c849d30, + FFFF5c849d987fc05c849d98, + FFFF5c849e007fc05c849e00, + FFFF5c849e687fc05c849e68, + FFFF5c849ed07fc05c849ed0, + FFFF5c849f387fc05c849f38, + FFFF5c849fa07fc05c849fa0, + FFFF5c84a1407fc05c84a140, + FFFF5c84a1a87fc05c84a1a8, + FFFF5c84a2107fc05c84a210, + FFFF5c84a2787fc05c84a278, + FFFF5c84a3b07fc05c84a3b0, + FFFF5c84a4187fc05c84a418, + FFFF5c84a4807fc05c84a480, + FFFF5c84a4e87fc05c84a4e8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1199,80 +1199,80 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCooking */ - FFFF810608407f8a81060840 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD8146da607f8a8146da60 /* PhysXExtensions */; }; - FFFF8183b0007f8a8183b000 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183b0007f8a8183b000 /* Adjacencies.cpp */; }; - FFFF8183b0687f8a8183b068 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183b0687f8a8183b068 /* Cooking.cpp */; }; - FFFF8183b0d07f8a8183b0d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183b0d07f8a8183b0d0 /* CookingUtils.cpp */; }; - FFFF8183b1387f8a8183b138 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183b1387f8a8183b138 /* EdgeList.cpp */; }; - FFFF8183b1a07f8a8183b1a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183b1a07f8a8183b1a0 /* MeshCleaner.cpp */; }; - FFFF8183b2087f8a8183b208 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183b2087f8a8183b208 /* Quantizer.cpp */; }; - FFFF8183b4e07f8a8183b4e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183b4e07f8a8183b4e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; - FFFF8183b5487f8a8183b548 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183b5487f8a8183b548 /* mesh/HeightFieldCooking.cpp */; }; - FFFF8183b5b07f8a8183b5b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183b5b07f8a8183b5b0 /* mesh/RTreeCooking.cpp */; }; - FFFF8183b6187f8a8183b618 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183b6187f8a8183b618 /* mesh/TriangleMeshBuilder.cpp */; }; - FFFF8183b8887f8a8183b888 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183b8887f8a8183b888 /* convex/BigConvexDataBuilder.cpp */; }; - FFFF8183b8f07f8a8183b8f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183b8f07f8a8183b8f0 /* convex/ConvexHullBuilder.cpp */; }; - FFFF8183b9587f8a8183b958 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183b9587f8a8183b958 /* convex/ConvexHullLib.cpp */; }; - FFFF8183b9c07f8a8183b9c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183b9c07f8a8183b9c0 /* convex/ConvexHullUtils.cpp */; }; - FFFF8183ba287f8a8183ba28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183ba287f8a8183ba28 /* convex/ConvexMeshBuilder.cpp */; }; - FFFF8183ba907f8a8183ba90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183ba907f8a8183ba90 /* convex/ConvexPolygonsBuilder.cpp */; }; - FFFF8183baf87f8a8183baf8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183baf87f8a8183baf8 /* convex/InflationConvexHullLib.cpp */; }; - FFFF8183bb607f8a8183bb60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183bb607f8a8183bb60 /* convex/QuickHullConvexHullLib.cpp */; }; - FFFF8183bbc87f8a8183bbc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8183bbc87f8a8183bbc8 /* convex/VolumeIntegration.cpp */; }; + FFFF5bf99c407fc05bf99c40 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD5d18aba07fc05d18aba0 /* PhysXExtensions */; }; + FFFF5c8506007fc05c850600 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8506007fc05c850600 /* Adjacencies.cpp */; }; + FFFF5c8506687fc05c850668 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8506687fc05c850668 /* Cooking.cpp */; }; + FFFF5c8506d07fc05c8506d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8506d07fc05c8506d0 /* CookingUtils.cpp */; }; + FFFF5c8507387fc05c850738 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8507387fc05c850738 /* EdgeList.cpp */; }; + FFFF5c8507a07fc05c8507a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8507a07fc05c8507a0 /* MeshCleaner.cpp */; }; + FFFF5c8508087fc05c850808 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8508087fc05c850808 /* Quantizer.cpp */; }; + FFFF5c850ae07fc05c850ae0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c850ae07fc05c850ae0 /* mesh/GrbTriangleMeshCooking.cpp */; }; + FFFF5c850b487fc05c850b48 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c850b487fc05c850b48 /* mesh/HeightFieldCooking.cpp */; }; + FFFF5c850bb07fc05c850bb0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c850bb07fc05c850bb0 /* mesh/RTreeCooking.cpp */; }; + FFFF5c850c187fc05c850c18 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c850c187fc05c850c18 /* mesh/TriangleMeshBuilder.cpp */; }; + FFFF5c850e887fc05c850e88 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c850e887fc05c850e88 /* convex/BigConvexDataBuilder.cpp */; }; + FFFF5c850ef07fc05c850ef0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c850ef07fc05c850ef0 /* convex/ConvexHullBuilder.cpp */; }; + FFFF5c850f587fc05c850f58 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c850f587fc05c850f58 /* convex/ConvexHullLib.cpp */; }; + FFFF5c850fc07fc05c850fc0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c850fc07fc05c850fc0 /* convex/ConvexHullUtils.cpp */; }; + FFFF5c8510287fc05c851028 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8510287fc05c851028 /* convex/ConvexMeshBuilder.cpp */; }; + FFFF5c8510907fc05c851090 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8510907fc05c851090 /* convex/ConvexPolygonsBuilder.cpp */; }; + FFFF5c8510f87fc05c8510f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8510f87fc05c8510f8 /* convex/InflationConvexHullLib.cpp */; }; + FFFF5c8511607fc05c851160 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8511607fc05c851160 /* convex/QuickHullConvexHullLib.cpp */; }; + FFFF5c8511c87fc05c8511c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8511c87fc05c8511c8 /* convex/VolumeIntegration.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD8105c6407f8a8105c640 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD8105f5007f8a8105f500 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD8105f5687f8a8105f568 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD8105f5d07f8a8105f5d0 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD8105f6387f8a8105f638 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD8105f6a07f8a8105f6a0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD8105f7087f8a8105f708 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD8105f7707f8a8105f770 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183b0007f8a8183b000 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183b0687f8a8183b068 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183b0d07f8a8183b0d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183b1387f8a8183b138 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183b1a07f8a8183b1a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183b2087f8a8183b208 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183b2707f8a8183b270 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183b2d87f8a8183b2d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183b3407f8a8183b340 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183b3a87f8a8183b3a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183b4107f8a8183b410 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183b4787f8a8183b478 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183b4e07f8a8183b4e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183b5487f8a8183b548 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183b5b07f8a8183b5b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183b6187f8a8183b618 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183b6807f8a8183b680 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183b6e87f8a8183b6e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183b7507f8a8183b750 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183b7b87f8a8183b7b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183b8207f8a8183b820 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183b8887f8a8183b888 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183b8f07f8a8183b8f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183b9587f8a8183b958 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183b9c07f8a8183b9c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183ba287f8a8183ba28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183ba907f8a8183ba90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183baf87f8a8183baf8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183bb607f8a8183bb60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183bbc87f8a8183bbc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8183bc307f8a8183bc30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183bc987f8a8183bc98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183bd007f8a8183bd00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183bd687f8a8183bd68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183bdd07f8a8183bdd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183be387f8a8183be38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183bea07f8a8183bea0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183bf087f8a8183bf08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD8183bf707f8a8183bf70 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bfadce07fc05bfadce0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5bf9d9707fc05bf9d970 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf9d9d87fc05bf9d9d8 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf9da407fc05bf9da40 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf9daa87fc05bf9daa8 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf9db107fc05bf9db10 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf9db787fc05bf9db78 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf9dbe07fc05bf9dbe0 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8506007fc05c850600 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8506687fc05c850668 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8506d07fc05c8506d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8507387fc05c850738 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8507a07fc05c8507a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8508087fc05c850808 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8508707fc05c850870 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8508d87fc05c8508d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8509407fc05c850940 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8509a87fc05c8509a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c850a107fc05c850a10 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c850a787fc05c850a78 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c850ae07fc05c850ae0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c850b487fc05c850b48 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c850bb07fc05c850bb0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c850c187fc05c850c18 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c850c807fc05c850c80 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c850ce87fc05c850ce8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c850d507fc05c850d50 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c850db87fc05c850db8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c850e207fc05c850e20 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c850e887fc05c850e88 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c850ef07fc05c850ef0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c850f587fc05c850f58 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c850fc07fc05c850fc0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8510287fc05c851028 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8510907fc05c851090 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8510f87fc05c8510f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8511607fc05c851160 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8511c87fc05c8511c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8512307fc05c851230 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8512987fc05c851298 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8513007fc05c851300 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8513687fc05c851368 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8513d07fc05c8513d0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8514387fc05c851438 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8514a07fc05c8514a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8515087fc05c851508 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8515707fc05c851570 /* 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 */ - FFF28105c6407f8a8105c640 /* Resources */ = { + FFF25bfadce07fc05bfadce0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1282,7 +1282,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC8105c6407f8a8105c640 /* Frameworks */ = { + FFFC5bfadce07fc05bfadce0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1292,29 +1292,29 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF88105c6407f8a8105c640 /* Sources */ = { + FFF85bfadce07fc05bfadce0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF8183b0007f8a8183b000, - FFFF8183b0687f8a8183b068, - FFFF8183b0d07f8a8183b0d0, - FFFF8183b1387f8a8183b138, - FFFF8183b1a07f8a8183b1a0, - FFFF8183b2087f8a8183b208, - FFFF8183b4e07f8a8183b4e0, - FFFF8183b5487f8a8183b548, - FFFF8183b5b07f8a8183b5b0, - FFFF8183b6187f8a8183b618, - FFFF8183b8887f8a8183b888, - FFFF8183b8f07f8a8183b8f0, - FFFF8183b9587f8a8183b958, - FFFF8183b9c07f8a8183b9c0, - FFFF8183ba287f8a8183ba28, - FFFF8183ba907f8a8183ba90, - FFFF8183baf87f8a8183baf8, - FFFF8183bb607f8a8183bb60, - FFFF8183bbc87f8a8183bbc8, + FFFF5c8506007fc05c850600, + FFFF5c8506687fc05c850668, + FFFF5c8506d07fc05c8506d0, + FFFF5c8507387fc05c850738, + FFFF5c8507a07fc05c8507a0, + FFFF5c8508087fc05c850808, + FFFF5c850ae07fc05c850ae0, + FFFF5c850b487fc05c850b48, + FFFF5c850bb07fc05c850bb0, + FFFF5c850c187fc05c850c18, + FFFF5c850e887fc05c850e88, + FFFF5c850ef07fc05c850ef0, + FFFF5c850f587fc05c850f58, + FFFF5c850fc07fc05c850fc0, + FFFF5c8510287fc05c851028, + FFFF5c8510907fc05c851090, + FFFF5c8510f87fc05c8510f8, + FFFF5c8511607fc05c851160, + FFFF5c8511c87fc05c8511c8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1323,515 +1323,515 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF48105dda07f8a8105dda0 /* PBXTargetDependency */ = { + FFF45bf98f607fc05bf98f60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA810dc3907f8a810dc390 /* PhysXCommon */; - targetProxy = FFF5810dc3907f8a810dc390 /* PBXContainerItemProxy */; + target = FFFA5b93e9407fc05b93e940 /* PhysXCommon */; + targetProxy = FFF55b93e9407fc05b93e940 /* PBXContainerItemProxy */; }; - FFF4810608407f8a81060840 /* PBXTargetDependency */ = { + FFF45bf99c407fc05bf99c40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA8146da607f8a8146da60 /* PhysXExtensions */; - targetProxy = FFF58146da607f8a8146da60 /* PBXContainerItemProxy */; + target = FFFA5d18aba07fc05d18aba0 /* PhysXExtensions */; + targetProxy = FFF55d18aba07fc05d18aba0 /* PBXContainerItemProxy */; }; - FFF48105c5407f8a8105c540 /* PBXTargetDependency */ = { + FFF45bfad5607fc05bfad560 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA810edec07f8a810edec0 /* PxFoundation */; - targetProxy = FFF5810edec07f8a810edec0 /* PBXContainerItemProxy */; + target = FFFA5b91b1007fc05b91b100 /* PxFoundation */; + targetProxy = FFF55b91b1007fc05b91b100 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCommon */ - FFFF8180b0007f8a8180b000 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD8180b0007f8a8180b000 /* src/CmBoxPruning.cpp */; }; - FFFF8180b0687f8a8180b068 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD8180b0687f8a8180b068 /* src/CmCollection.cpp */; }; - FFFF8180b0d07f8a8180b0d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD8180b0d07f8a8180b0d0 /* src/CmMathUtils.cpp */; }; - FFFF8180b1387f8a8180b138 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD8180b1387f8a8180b138 /* src/CmPtrTable.cpp */; }; - FFFF8180b1a07f8a8180b1a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD8180b1a07f8a8180b1a0 /* src/CmRadixSort.cpp */; }; - FFFF8180b2087f8a8180b208 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD8180b2087f8a8180b208 /* src/CmRadixSortBuffered.cpp */; }; - FFFF8180b2707f8a8180b270 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD8180b2707f8a8180b270 /* src/CmRenderOutput.cpp */; }; - FFFF8180b2d87f8a8180b2d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD8180b2d87f8a8180b2d8 /* src/CmVisualization.cpp */; }; - FFFF820013a87f8a820013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820013a87f8a820013a8 /* ../../Include/GeomUtils */; }; - FFFF820048e07f8a820048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820048e07f8a820048e0 /* src/GuBounds.cpp */; }; - FFFF820049487f8a82004948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820049487f8a82004948 /* src/GuBox.cpp */; }; - FFFF820049b07f8a820049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820049b07f8a820049b0 /* src/GuCCTSweepTests.cpp */; }; - FFFF82004a187f8a82004a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82004a187f8a82004a18 /* src/GuCapsule.cpp */; }; - FFFF82004a807f8a82004a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82004a807f8a82004a80 /* src/GuGeometryQuery.cpp */; }; - FFFF82004ae87f8a82004ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82004ae87f8a82004ae8 /* src/GuGeometryUnion.cpp */; }; - FFFF82004b507f8a82004b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82004b507f8a82004b50 /* src/GuInternal.cpp */; }; - FFFF82004bb87f8a82004bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82004bb87f8a82004bb8 /* src/GuMTD.cpp */; }; - FFFF82004c207f8a82004c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82004c207f8a82004c20 /* src/GuMeshFactory.cpp */; }; - FFFF82004c887f8a82004c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82004c887f8a82004c88 /* src/GuMetaData.cpp */; }; - FFFF82004cf07f8a82004cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82004cf07f8a82004cf0 /* src/GuOverlapTests.cpp */; }; - FFFF82004d587f8a82004d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82004d587f8a82004d58 /* src/GuRaycastTests.cpp */; }; - FFFF82004dc07f8a82004dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82004dc07f8a82004dc0 /* src/GuSerialize.cpp */; }; - FFFF82004e287f8a82004e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82004e287f8a82004e28 /* src/GuSweepMTD.cpp */; }; - FFFF82004e907f8a82004e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82004e907f8a82004e90 /* src/GuSweepSharedTests.cpp */; }; - FFFF82004ef87f8a82004ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82004ef87f8a82004ef8 /* src/GuSweepTests.cpp */; }; - FFFF82004f607f8a82004f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82004f607f8a82004f60 /* src/contact/GuContactBoxBox.cpp */; }; - FFFF82004fc87f8a82004fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82004fc87f8a82004fc8 /* src/contact/GuContactCapsuleBox.cpp */; }; - FFFF820050307f8a82005030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820050307f8a82005030 /* src/contact/GuContactCapsuleCapsule.cpp */; }; - FFFF820050987f8a82005098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820050987f8a82005098 /* src/contact/GuContactCapsuleConvex.cpp */; }; - FFFF820051007f8a82005100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820051007f8a82005100 /* src/contact/GuContactCapsuleMesh.cpp */; }; - FFFF820051687f8a82005168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820051687f8a82005168 /* src/contact/GuContactConvexConvex.cpp */; }; - FFFF820051d07f8a820051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820051d07f8a820051d0 /* src/contact/GuContactConvexMesh.cpp */; }; - FFFF820052387f8a82005238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820052387f8a82005238 /* src/contact/GuContactPlaneBox.cpp */; }; - FFFF820052a07f8a820052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820052a07f8a820052a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; - FFFF820053087f8a82005308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820053087f8a82005308 /* src/contact/GuContactPlaneConvex.cpp */; }; - FFFF820053707f8a82005370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820053707f8a82005370 /* src/contact/GuContactPolygonPolygon.cpp */; }; - FFFF820053d87f8a820053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820053d87f8a820053d8 /* src/contact/GuContactSphereBox.cpp */; }; - FFFF820054407f8a82005440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820054407f8a82005440 /* src/contact/GuContactSphereCapsule.cpp */; }; - FFFF820054a87f8a820054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820054a87f8a820054a8 /* src/contact/GuContactSphereMesh.cpp */; }; - FFFF820055107f8a82005510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820055107f8a82005510 /* src/contact/GuContactSpherePlane.cpp */; }; - FFFF820055787f8a82005578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820055787f8a82005578 /* src/contact/GuContactSphereSphere.cpp */; }; - FFFF820055e07f8a820055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820055e07f8a820055e0 /* src/contact/GuFeatureCode.cpp */; }; - FFFF820056487f8a82005648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820056487f8a82005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; - FFFF820056b07f8a820056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820056b07f8a820056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; - FFFF820057187f8a82005718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820057187f8a82005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; - FFFF820057807f8a82005780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820057807f8a82005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; - FFFF820057e87f8a820057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820057e87f8a820057e8 /* src/common/GuBarycentricCoordinates.cpp */; }; - FFFF820058507f8a82005850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820058507f8a82005850 /* src/common/GuSeparatingAxes.cpp */; }; - FFFF820058b87f8a820058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820058b87f8a820058b8 /* src/convex/GuBigConvexData.cpp */; }; - FFFF820059207f8a82005920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820059207f8a82005920 /* src/convex/GuConvexHelper.cpp */; }; - FFFF820059887f8a82005988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820059887f8a82005988 /* src/convex/GuConvexMesh.cpp */; }; - FFFF820059f07f8a820059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820059f07f8a820059f0 /* src/convex/GuConvexSupportTable.cpp */; }; - FFFF82005a587f8a82005a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82005a587f8a82005a58 /* src/convex/GuConvexUtilsInternal.cpp */; }; - FFFF82005ac07f8a82005ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82005ac07f8a82005ac0 /* src/convex/GuHillClimbing.cpp */; }; - FFFF82005b287f8a82005b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82005b287f8a82005b28 /* src/convex/GuShapeConvex.cpp */; }; - FFFF82005b907f8a82005b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82005b907f8a82005b90 /* src/distance/GuDistancePointBox.cpp */; }; - FFFF82005bf87f8a82005bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82005bf87f8a82005bf8 /* src/distance/GuDistancePointTriangle.cpp */; }; - FFFF82005c607f8a82005c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82005c607f8a82005c60 /* src/distance/GuDistanceSegmentBox.cpp */; }; - FFFF82005cc87f8a82005cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82005cc87f8a82005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; - FFFF82005d307f8a82005d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82005d307f8a82005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; - FFFF82005d987f8a82005d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82005d987f8a82005d98 /* src/sweep/GuSweepBoxBox.cpp */; }; - FFFF82005e007f8a82005e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82005e007f8a82005e00 /* src/sweep/GuSweepBoxSphere.cpp */; }; - FFFF82005e687f8a82005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82005e687f8a82005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; - FFFF82005ed07f8a82005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82005ed07f8a82005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; - FFFF82005f387f8a82005f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82005f387f8a82005f38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; - FFFF82005fa07f8a82005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82005fa07f8a82005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; - FFFF820060087f8a82006008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820060087f8a82006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; - FFFF820060707f8a82006070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820060707f8a82006070 /* src/sweep/GuSweepSphereCapsule.cpp */; }; - FFFF820060d87f8a820060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820060d87f8a820060d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; - FFFF820061407f8a82006140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820061407f8a82006140 /* src/sweep/GuSweepSphereTriangle.cpp */; }; - FFFF820061a87f8a820061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820061a87f8a820061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; - FFFF820062107f8a82006210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820062107f8a82006210 /* src/gjk/GuEPA.cpp */; }; - FFFF820062787f8a82006278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820062787f8a82006278 /* src/gjk/GuGJKSimplex.cpp */; }; - FFFF820062e07f8a820062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820062e07f8a820062e0 /* src/gjk/GuGJKTest.cpp */; }; - FFFF820063487f8a82006348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820063487f8a82006348 /* src/intersection/GuIntersectionBoxBox.cpp */; }; - FFFF820063b07f8a820063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820063b07f8a820063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; - FFFF820064187f8a82006418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820064187f8a82006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; - FFFF820064807f8a82006480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820064807f8a82006480 /* src/intersection/GuIntersectionRayBox.cpp */; }; - FFFF820064e87f8a820064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820064e87f8a820064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; - FFFF820065507f8a82006550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820065507f8a82006550 /* src/intersection/GuIntersectionRaySphere.cpp */; }; - FFFF820065b87f8a820065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820065b87f8a820065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; - FFFF820066207f8a82006620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820066207f8a82006620 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; - FFFF820066887f8a82006688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820066887f8a82006688 /* src/mesh/GuBV32.cpp */; }; - FFFF820066f07f8a820066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820066f07f8a820066f0 /* src/mesh/GuBV32Build.cpp */; }; - FFFF820067587f8a82006758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820067587f8a82006758 /* src/mesh/GuBV4.cpp */; }; - FFFF820067c07f8a820067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820067c07f8a820067c0 /* src/mesh/GuBV4Build.cpp */; }; - FFFF820068287f8a82006828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820068287f8a82006828 /* src/mesh/GuBV4_AABBSweep.cpp */; }; - FFFF820068907f8a82006890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820068907f8a82006890 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; - FFFF820068f87f8a820068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820068f87f8a820068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; - FFFF820069607f8a82006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820069607f8a82006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; - FFFF820069c87f8a820069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820069c87f8a820069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; - FFFF82006a307f8a82006a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82006a307f8a82006a30 /* src/mesh/GuBV4_Raycast.cpp */; }; - FFFF82006a987f8a82006a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82006a987f8a82006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; - FFFF82006b007f8a82006b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82006b007f8a82006b00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; - FFFF82006b687f8a82006b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82006b687f8a82006b68 /* src/mesh/GuMeshQuery.cpp */; }; - FFFF82006bd07f8a82006bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82006bd07f8a82006bd0 /* src/mesh/GuMidphaseBV4.cpp */; }; - FFFF82006c387f8a82006c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82006c387f8a82006c38 /* src/mesh/GuMidphaseRTree.cpp */; }; - FFFF82006ca07f8a82006ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82006ca07f8a82006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; - FFFF82006d087f8a82006d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82006d087f8a82006d08 /* src/mesh/GuRTree.cpp */; }; - FFFF82006d707f8a82006d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82006d707f8a82006d70 /* src/mesh/GuRTreeQueries.cpp */; }; - FFFF82006dd87f8a82006dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82006dd87f8a82006dd8 /* src/mesh/GuSweepsMesh.cpp */; }; - FFFF82006e407f8a82006e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82006e407f8a82006e40 /* src/mesh/GuTriangleMesh.cpp */; }; - FFFF82006ea87f8a82006ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82006ea87f8a82006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; - FFFF82006f107f8a82006f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82006f107f8a82006f10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; - FFFF82006f787f8a82006f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82006f787f8a82006f78 /* src/hf/GuHeightField.cpp */; }; - FFFF82006fe07f8a82006fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82006fe07f8a82006fe0 /* src/hf/GuHeightFieldUtil.cpp */; }; - FFFF820070487f8a82007048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820070487f8a82007048 /* src/hf/GuOverlapTestsHF.cpp */; }; - FFFF820070b07f8a820070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820070b07f8a820070b0 /* src/hf/GuSweepsHF.cpp */; }; - FFFF820071187f8a82007118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820071187f8a82007118 /* src/pcm/GuPCMContactBoxBox.cpp */; }; - FFFF820071807f8a82007180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820071807f8a82007180 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; - FFFF820071e87f8a820071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820071e87f8a820071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; - FFFF820072507f8a82007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820072507f8a82007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; - FFFF820072b87f8a820072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820072b87f8a820072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; - FFFF820073207f8a82007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820073207f8a82007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; - FFFF820073887f8a82007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820073887f8a82007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; - FFFF820073f07f8a820073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820073f07f8a820073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; - FFFF820074587f8a82007458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820074587f8a82007458 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; - FFFF820074c07f8a820074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820074c07f8a820074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; - FFFF820075287f8a82007528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820075287f8a82007528 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; - FFFF820075907f8a82007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820075907f8a82007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; - FFFF820075f87f8a820075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820075f87f8a820075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; - FFFF820076607f8a82007660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820076607f8a82007660 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; - FFFF820076c87f8a820076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820076c87f8a820076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; - FFFF820077307f8a82007730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820077307f8a82007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; - FFFF820077987f8a82007798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820077987f8a82007798 /* src/pcm/GuPCMContactSphereBox.cpp */; }; - FFFF820078007f8a82007800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820078007f8a82007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; - FFFF820078687f8a82007868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820078687f8a82007868 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; - FFFF820078d07f8a820078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820078d07f8a820078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; - FFFF820079387f8a82007938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820079387f8a82007938 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; - FFFF820079a07f8a820079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD820079a07f8a820079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; - FFFF82007a087f8a82007a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82007a087f8a82007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; - FFFF82007a707f8a82007a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82007a707f8a82007a70 /* src/pcm/GuPCMShapeConvex.cpp */; }; - FFFF82007ad87f8a82007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82007ad87f8a82007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; - FFFF82007b407f8a82007b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82007b407f8a82007b40 /* src/pcm/GuPersistentContactManifold.cpp */; }; - FFFF82007ba87f8a82007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82007ba87f8a82007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; - FFFF82007c107f8a82007c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD82007c107f8a82007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; + FFFF5b18f6007fc05b18f600 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5b18f6007fc05b18f600 /* src/CmBoxPruning.cpp */; }; + FFFF5b18f6687fc05b18f668 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5b18f6687fc05b18f668 /* src/CmCollection.cpp */; }; + FFFF5b18f6d07fc05b18f6d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5b18f6d07fc05b18f6d0 /* src/CmMathUtils.cpp */; }; + FFFF5b18f7387fc05b18f738 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5b18f7387fc05b18f738 /* src/CmPtrTable.cpp */; }; + FFFF5b18f7a07fc05b18f7a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5b18f7a07fc05b18f7a0 /* src/CmRadixSort.cpp */; }; + FFFF5b18f8087fc05b18f808 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5b18f8087fc05b18f808 /* src/CmRadixSortBuffered.cpp */; }; + FFFF5b18f8707fc05b18f870 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5b18f8707fc05b18f870 /* src/CmRenderOutput.cpp */; }; + FFFF5b18f8d87fc05b18f8d8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD5b18f8d87fc05b18f8d8 /* src/CmVisualization.cpp */; }; + FFFF5c0013a87fc05c0013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0013a87fc05c0013a8 /* ../../Include/GeomUtils */; }; + FFFF5c0048e07fc05c0048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0048e07fc05c0048e0 /* src/GuBounds.cpp */; }; + FFFF5c0049487fc05c004948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0049487fc05c004948 /* src/GuBox.cpp */; }; + FFFF5c0049b07fc05c0049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0049b07fc05c0049b0 /* src/GuCCTSweepTests.cpp */; }; + FFFF5c004a187fc05c004a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c004a187fc05c004a18 /* src/GuCapsule.cpp */; }; + FFFF5c004a807fc05c004a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c004a807fc05c004a80 /* src/GuGeometryQuery.cpp */; }; + FFFF5c004ae87fc05c004ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c004ae87fc05c004ae8 /* src/GuGeometryUnion.cpp */; }; + FFFF5c004b507fc05c004b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c004b507fc05c004b50 /* src/GuInternal.cpp */; }; + FFFF5c004bb87fc05c004bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c004bb87fc05c004bb8 /* src/GuMTD.cpp */; }; + FFFF5c004c207fc05c004c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c004c207fc05c004c20 /* src/GuMeshFactory.cpp */; }; + FFFF5c004c887fc05c004c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c004c887fc05c004c88 /* src/GuMetaData.cpp */; }; + FFFF5c004cf07fc05c004cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c004cf07fc05c004cf0 /* src/GuOverlapTests.cpp */; }; + FFFF5c004d587fc05c004d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c004d587fc05c004d58 /* src/GuRaycastTests.cpp */; }; + FFFF5c004dc07fc05c004dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c004dc07fc05c004dc0 /* src/GuSerialize.cpp */; }; + FFFF5c004e287fc05c004e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c004e287fc05c004e28 /* src/GuSweepMTD.cpp */; }; + FFFF5c004e907fc05c004e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c004e907fc05c004e90 /* src/GuSweepSharedTests.cpp */; }; + FFFF5c004ef87fc05c004ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c004ef87fc05c004ef8 /* src/GuSweepTests.cpp */; }; + FFFF5c004f607fc05c004f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c004f607fc05c004f60 /* src/contact/GuContactBoxBox.cpp */; }; + FFFF5c004fc87fc05c004fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c004fc87fc05c004fc8 /* src/contact/GuContactCapsuleBox.cpp */; }; + FFFF5c0050307fc05c005030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0050307fc05c005030 /* src/contact/GuContactCapsuleCapsule.cpp */; }; + FFFF5c0050987fc05c005098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0050987fc05c005098 /* src/contact/GuContactCapsuleConvex.cpp */; }; + FFFF5c0051007fc05c005100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0051007fc05c005100 /* src/contact/GuContactCapsuleMesh.cpp */; }; + FFFF5c0051687fc05c005168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0051687fc05c005168 /* src/contact/GuContactConvexConvex.cpp */; }; + FFFF5c0051d07fc05c0051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0051d07fc05c0051d0 /* src/contact/GuContactConvexMesh.cpp */; }; + FFFF5c0052387fc05c005238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0052387fc05c005238 /* src/contact/GuContactPlaneBox.cpp */; }; + FFFF5c0052a07fc05c0052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0052a07fc05c0052a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; + FFFF5c0053087fc05c005308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0053087fc05c005308 /* src/contact/GuContactPlaneConvex.cpp */; }; + FFFF5c0053707fc05c005370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0053707fc05c005370 /* src/contact/GuContactPolygonPolygon.cpp */; }; + FFFF5c0053d87fc05c0053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0053d87fc05c0053d8 /* src/contact/GuContactSphereBox.cpp */; }; + FFFF5c0054407fc05c005440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0054407fc05c005440 /* src/contact/GuContactSphereCapsule.cpp */; }; + FFFF5c0054a87fc05c0054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0054a87fc05c0054a8 /* src/contact/GuContactSphereMesh.cpp */; }; + FFFF5c0055107fc05c005510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0055107fc05c005510 /* src/contact/GuContactSpherePlane.cpp */; }; + FFFF5c0055787fc05c005578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0055787fc05c005578 /* src/contact/GuContactSphereSphere.cpp */; }; + FFFF5c0055e07fc05c0055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0055e07fc05c0055e0 /* src/contact/GuFeatureCode.cpp */; }; + FFFF5c0056487fc05c005648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0056487fc05c005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; + FFFF5c0056b07fc05c0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0056b07fc05c0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; + FFFF5c0057187fc05c005718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0057187fc05c005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; + FFFF5c0057807fc05c005780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0057807fc05c005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; + FFFF5c0057e87fc05c0057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0057e87fc05c0057e8 /* src/common/GuBarycentricCoordinates.cpp */; }; + FFFF5c0058507fc05c005850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0058507fc05c005850 /* src/common/GuSeparatingAxes.cpp */; }; + FFFF5c0058b87fc05c0058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0058b87fc05c0058b8 /* src/convex/GuBigConvexData.cpp */; }; + FFFF5c0059207fc05c005920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0059207fc05c005920 /* src/convex/GuConvexHelper.cpp */; }; + FFFF5c0059887fc05c005988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0059887fc05c005988 /* src/convex/GuConvexMesh.cpp */; }; + FFFF5c0059f07fc05c0059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0059f07fc05c0059f0 /* src/convex/GuConvexSupportTable.cpp */; }; + FFFF5c005a587fc05c005a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c005a587fc05c005a58 /* src/convex/GuConvexUtilsInternal.cpp */; }; + FFFF5c005ac07fc05c005ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c005ac07fc05c005ac0 /* src/convex/GuHillClimbing.cpp */; }; + FFFF5c005b287fc05c005b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c005b287fc05c005b28 /* src/convex/GuShapeConvex.cpp */; }; + FFFF5c005b907fc05c005b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c005b907fc05c005b90 /* src/distance/GuDistancePointBox.cpp */; }; + FFFF5c005bf87fc05c005bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c005bf87fc05c005bf8 /* src/distance/GuDistancePointTriangle.cpp */; }; + FFFF5c005c607fc05c005c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c005c607fc05c005c60 /* src/distance/GuDistanceSegmentBox.cpp */; }; + FFFF5c005cc87fc05c005cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c005cc87fc05c005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; + FFFF5c005d307fc05c005d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c005d307fc05c005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; + FFFF5c005d987fc05c005d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c005d987fc05c005d98 /* src/sweep/GuSweepBoxBox.cpp */; }; + FFFF5c005e007fc05c005e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c005e007fc05c005e00 /* src/sweep/GuSweepBoxSphere.cpp */; }; + FFFF5c005e687fc05c005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c005e687fc05c005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; + FFFF5c005ed07fc05c005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c005ed07fc05c005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; + FFFF5c005f387fc05c005f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c005f387fc05c005f38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; + FFFF5c005fa07fc05c005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c005fa07fc05c005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; + FFFF5c0060087fc05c006008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0060087fc05c006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; + FFFF5c0060707fc05c006070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0060707fc05c006070 /* src/sweep/GuSweepSphereCapsule.cpp */; }; + FFFF5c0060d87fc05c0060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0060d87fc05c0060d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; + FFFF5c0061407fc05c006140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0061407fc05c006140 /* src/sweep/GuSweepSphereTriangle.cpp */; }; + FFFF5c0061a87fc05c0061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0061a87fc05c0061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; + FFFF5c0062107fc05c006210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0062107fc05c006210 /* src/gjk/GuEPA.cpp */; }; + FFFF5c0062787fc05c006278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0062787fc05c006278 /* src/gjk/GuGJKSimplex.cpp */; }; + FFFF5c0062e07fc05c0062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0062e07fc05c0062e0 /* src/gjk/GuGJKTest.cpp */; }; + FFFF5c0063487fc05c006348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0063487fc05c006348 /* src/intersection/GuIntersectionBoxBox.cpp */; }; + FFFF5c0063b07fc05c0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0063b07fc05c0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; + FFFF5c0064187fc05c006418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0064187fc05c006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; + FFFF5c0064807fc05c006480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0064807fc05c006480 /* src/intersection/GuIntersectionRayBox.cpp */; }; + FFFF5c0064e87fc05c0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0064e87fc05c0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; + FFFF5c0065507fc05c006550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0065507fc05c006550 /* src/intersection/GuIntersectionRaySphere.cpp */; }; + FFFF5c0065b87fc05c0065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0065b87fc05c0065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; + FFFF5c0066207fc05c006620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0066207fc05c006620 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; + FFFF5c0066887fc05c006688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0066887fc05c006688 /* src/mesh/GuBV32.cpp */; }; + FFFF5c0066f07fc05c0066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0066f07fc05c0066f0 /* src/mesh/GuBV32Build.cpp */; }; + FFFF5c0067587fc05c006758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0067587fc05c006758 /* src/mesh/GuBV4.cpp */; }; + FFFF5c0067c07fc05c0067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0067c07fc05c0067c0 /* src/mesh/GuBV4Build.cpp */; }; + FFFF5c0068287fc05c006828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0068287fc05c006828 /* src/mesh/GuBV4_AABBSweep.cpp */; }; + FFFF5c0068907fc05c006890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0068907fc05c006890 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; + FFFF5c0068f87fc05c0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0068f87fc05c0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; + FFFF5c0069607fc05c006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0069607fc05c006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; + FFFF5c0069c87fc05c0069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0069c87fc05c0069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; + FFFF5c006a307fc05c006a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c006a307fc05c006a30 /* src/mesh/GuBV4_Raycast.cpp */; }; + FFFF5c006a987fc05c006a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c006a987fc05c006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; + FFFF5c006b007fc05c006b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c006b007fc05c006b00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; + FFFF5c006b687fc05c006b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c006b687fc05c006b68 /* src/mesh/GuMeshQuery.cpp */; }; + FFFF5c006bd07fc05c006bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c006bd07fc05c006bd0 /* src/mesh/GuMidphaseBV4.cpp */; }; + FFFF5c006c387fc05c006c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c006c387fc05c006c38 /* src/mesh/GuMidphaseRTree.cpp */; }; + FFFF5c006ca07fc05c006ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c006ca07fc05c006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; + FFFF5c006d087fc05c006d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c006d087fc05c006d08 /* src/mesh/GuRTree.cpp */; }; + FFFF5c006d707fc05c006d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c006d707fc05c006d70 /* src/mesh/GuRTreeQueries.cpp */; }; + FFFF5c006dd87fc05c006dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c006dd87fc05c006dd8 /* src/mesh/GuSweepsMesh.cpp */; }; + FFFF5c006e407fc05c006e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c006e407fc05c006e40 /* src/mesh/GuTriangleMesh.cpp */; }; + FFFF5c006ea87fc05c006ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c006ea87fc05c006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; + FFFF5c006f107fc05c006f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c006f107fc05c006f10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; + FFFF5c006f787fc05c006f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c006f787fc05c006f78 /* src/hf/GuHeightField.cpp */; }; + FFFF5c006fe07fc05c006fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c006fe07fc05c006fe0 /* src/hf/GuHeightFieldUtil.cpp */; }; + FFFF5c0070487fc05c007048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0070487fc05c007048 /* src/hf/GuOverlapTestsHF.cpp */; }; + FFFF5c0070b07fc05c0070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0070b07fc05c0070b0 /* src/hf/GuSweepsHF.cpp */; }; + FFFF5c0071187fc05c007118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0071187fc05c007118 /* src/pcm/GuPCMContactBoxBox.cpp */; }; + FFFF5c0071807fc05c007180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0071807fc05c007180 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; + FFFF5c0071e87fc05c0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0071e87fc05c0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; + FFFF5c0072507fc05c007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0072507fc05c007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; + FFFF5c0072b87fc05c0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0072b87fc05c0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; + FFFF5c0073207fc05c007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0073207fc05c007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; + FFFF5c0073887fc05c007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0073887fc05c007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; + FFFF5c0073f07fc05c0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0073f07fc05c0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; + FFFF5c0074587fc05c007458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0074587fc05c007458 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; + FFFF5c0074c07fc05c0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0074c07fc05c0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; + FFFF5c0075287fc05c007528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0075287fc05c007528 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; + FFFF5c0075907fc05c007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0075907fc05c007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; + FFFF5c0075f87fc05c0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0075f87fc05c0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; + FFFF5c0076607fc05c007660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0076607fc05c007660 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; + FFFF5c0076c87fc05c0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0076c87fc05c0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; + FFFF5c0077307fc05c007730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0077307fc05c007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; + FFFF5c0077987fc05c007798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0077987fc05c007798 /* src/pcm/GuPCMContactSphereBox.cpp */; }; + FFFF5c0078007fc05c007800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0078007fc05c007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; + FFFF5c0078687fc05c007868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0078687fc05c007868 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; + FFFF5c0078d07fc05c0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0078d07fc05c0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; + FFFF5c0079387fc05c007938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0079387fc05c007938 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; + FFFF5c0079a07fc05c0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c0079a07fc05c0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; + FFFF5c007a087fc05c007a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c007a087fc05c007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; + FFFF5c007a707fc05c007a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c007a707fc05c007a70 /* src/pcm/GuPCMShapeConvex.cpp */; }; + FFFF5c007ad87fc05c007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c007ad87fc05c007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; + FFFF5c007b407fc05c007b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c007b407fc05c007b40 /* src/pcm/GuPersistentContactManifold.cpp */; }; + FFFF5c007ba87fc05c007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c007ba87fc05c007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; + FFFF5c007c107fc05c007c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD5c007c107fc05c007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD810dc3907f8a810dc390 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD8200ec007f8a8200ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200ec687f8a8200ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200ecd07f8a8200ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200ed387f8a8200ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200eda07f8a8200eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200ee087f8a8200ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200ee707f8a8200ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200eed87f8a8200eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200ef407f8a8200ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200efa87f8a8200efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f0107f8a8200f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f0787f8a8200f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f0e07f8a8200f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f1487f8a8200f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f1b07f8a8200f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f2187f8a8200f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f2807f8a8200f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f2e87f8a8200f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f3507f8a8200f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f3b87f8a8200f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f4207f8a8200f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f4887f8a8200f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f4f07f8a8200f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f5587f8a8200f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f5c07f8a8200f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f6287f8a8200f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f6907f8a8200f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f6f87f8a8200f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f7607f8a8200f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f7c87f8a8200f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f8307f8a8200f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f8987f8a8200f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD8200f9007f8a8200f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b0007f8a8180b000 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8180b0687f8a8180b068 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8180b0d07f8a8180b0d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8180b1387f8a8180b138 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8180b1a07f8a8180b1a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8180b2087f8a8180b208 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8180b2707f8a8180b270 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8180b2d87f8a8180b2d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8180b3407f8a8180b340 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b3a87f8a8180b3a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b4107f8a8180b410 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b4787f8a8180b478 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b4e07f8a8180b4e0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b5487f8a8180b548 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b5b07f8a8180b5b0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b6187f8a8180b618 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b6807f8a8180b680 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b6e87f8a8180b6e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b7507f8a8180b750 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b7b87f8a8180b7b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b8207f8a8180b820 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b8887f8a8180b888 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b8f07f8a8180b8f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b9587f8a8180b958 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180b9c07f8a8180b9c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180ba287f8a8180ba28 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180ba907f8a8180ba90 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180baf87f8a8180baf8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180bb607f8a8180bb60 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180bbc87f8a8180bbc8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180bc307f8a8180bc30 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180bc987f8a8180bc98 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180bd007f8a8180bd00 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180bd687f8a8180bd68 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180bdd07f8a8180bdd0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD8180be387f8a8180be38 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; - FFFD820010007f8a82001000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFD820010687f8a82001068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD820010d07f8a820010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD820011387f8a82001138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD820011a07f8a820011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD820012087f8a82001208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD820012707f8a82001270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD820012d87f8a820012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD820013407f8a82001340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD820013a87f8a820013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; - FFFD820014107f8a82001410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFD820014787f8a82001478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD820014e07f8a820014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; - FFFD820015487f8a82001548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; - FFFD820015b07f8a820015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD820016187f8a82001618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFD820016807f8a82001680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD820016e87f8a820016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD820017507f8a82001750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; - FFFD820017b87f8a820017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD820018207f8a82001820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFD820018887f8a82001888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD820018f07f8a820018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD820019587f8a82001958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD820019c07f8a820019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; - FFFD82001a287f8a82001a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; - FFFD82001a907f8a82001a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD82001af87f8a82001af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; - FFFD82001b607f8a82001b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; - FFFD82001bc87f8a82001bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD82001c307f8a82001c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; - FFFD82001c987f8a82001c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFD82001d007f8a82001d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; - FFFD82001d687f8a82001d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; - FFFD82001dd07f8a82001dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD82001e387f8a82001e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD82001ea07f8a82001ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD82001f087f8a82001f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFD82001f707f8a82001f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD82001fd87f8a82001fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD820020407f8a82002040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD820020a87f8a820020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; - FFFD820021107f8a82002110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD820021787f8a82002178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD820021e07f8a820021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD820022487f8a82002248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD820022b07f8a820022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD820023187f8a82002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD820023807f8a82002380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD820023e87f8a820023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD820024507f8a82002450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD820024b87f8a820024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD820025207f8a82002520 /* 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; }; - FFFD820025887f8a82002588 /* 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; }; - FFFD820025f07f8a820025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD820026587f8a82002658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD820026c07f8a820026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD820027287f8a82002728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD820027907f8a82002790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD820027f87f8a820027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD820028607f8a82002860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD820028c87f8a820028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; - FFFD820029307f8a82002930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; - FFFD820029987f8a82002998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; - FFFD82002a007f8a82002a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; - FFFD82002a687f8a82002a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; - FFFD82002ad07f8a82002ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; - FFFD82002b387f8a82002b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD82002ba07f8a82002ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; - FFFD82002c087f8a82002c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD82002c707f8a82002c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD82002cd87f8a82002cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD82002d407f8a82002d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD82002da87f8a82002da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFD82002e107f8a82002e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD82002e787f8a82002e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD82002ee07f8a82002ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD82002f487f8a82002f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFD82002fb07f8a82002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD820030187f8a82003018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD820030807f8a82003080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD820030e87f8a820030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD820031507f8a82003150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; - FFFD820031b87f8a820031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; - FFFD820032207f8a82003220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD820032887f8a82003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD820032f07f8a820032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD820033587f8a82003358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD820033c07f8a820033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD820034287f8a82003428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD820034907f8a82003490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD820034f87f8a820034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; - FFFD820035607f8a82003560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; - FFFD820035c87f8a820035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFD820036307f8a82003630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; - FFFD820036987f8a82003698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; - FFFD820037007f8a82003700 /* 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; }; - FFFD820037687f8a82003768 /* 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; }; - FFFD820037d07f8a820037d0 /* 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; }; - FFFD820038387f8a82003838 /* 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; }; - FFFD820038a07f8a820038a0 /* 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; }; - FFFD820039087f8a82003908 /* 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; }; - FFFD820039707f8a82003970 /* 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; }; - FFFD820039d87f8a820039d8 /* 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; }; - FFFD82003a407f8a82003a40 /* 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; }; - FFFD82003aa87f8a82003aa8 /* 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; }; - FFFD82003b107f8a82003b10 /* 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; }; - FFFD82003b787f8a82003b78 /* 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; }; - FFFD82003be07f8a82003be0 /* 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; }; - FFFD82003c487f8a82003c48 /* 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; }; - FFFD82003cb07f8a82003cb0 /* 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; }; - FFFD82003d187f8a82003d18 /* 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; }; - FFFD82003d807f8a82003d80 /* 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; }; - FFFD82003de87f8a82003de8 /* 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; }; - FFFD82003e507f8a82003e50 /* 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; }; - FFFD82003eb87f8a82003eb8 /* 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; }; - FFFD82003f207f8a82003f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD82003f887f8a82003f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFD82003ff07f8a82003ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; - FFFD820040587f8a82004058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD820040c07f8a820040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; - FFFD820041287f8a82004128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD820041907f8a82004190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; - FFFD820041f87f8a820041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD820042607f8a82004260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD820042c87f8a820042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFD820043307f8a82004330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD820043987f8a82004398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; - FFFD820044007f8a82004400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; - FFFD820044687f8a82004468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFD820044d07f8a820044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; - FFFD820045387f8a82004538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD820045a07f8a820045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD820046087f8a82004608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFD820046707f8a82004670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD820046d87f8a820046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD820047407f8a82004740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD820047a87f8a820047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFD820048107f8a82004810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; - FFFD820048787f8a82004878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD820048e07f8a820048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820049487f8a82004948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820049b07f8a820049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82004a187f8a82004a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82004a807f8a82004a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82004ae87f8a82004ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82004b507f8a82004b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82004bb87f8a82004bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82004c207f8a82004c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82004c887f8a82004c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82004cf07f8a82004cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82004d587f8a82004d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82004dc07f8a82004dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82004e287f8a82004e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82004e907f8a82004e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82004ef87f8a82004ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82004f607f8a82004f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82004fc87f8a82004fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820050307f8a82005030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820050987f8a82005098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820051007f8a82005100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820051687f8a82005168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820051d07f8a820051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820052387f8a82005238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820052a07f8a820052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820053087f8a82005308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820053707f8a82005370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820053d87f8a820053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820054407f8a82005440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820054a87f8a820054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820055107f8a82005510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820055787f8a82005578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820055e07f8a820055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820056487f8a82005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820056b07f8a820056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820057187f8a82005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820057807f8a82005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820057e87f8a820057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820058507f8a82005850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820058b87f8a820058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820059207f8a82005920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820059887f8a82005988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820059f07f8a820059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82005a587f8a82005a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82005ac07f8a82005ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82005b287f8a82005b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82005b907f8a82005b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82005bf87f8a82005bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82005c607f8a82005c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82005cc87f8a82005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82005d307f8a82005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82005d987f8a82005d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82005e007f8a82005e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82005e687f8a82005e68 /* 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; }; - FFFD82005ed07f8a82005ed0 /* 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; }; - FFFD82005f387f8a82005f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82005fa07f8a82005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820060087f8a82006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820060707f8a82006070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820060d87f8a820060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820061407f8a82006140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820061a87f8a820061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820062107f8a82006210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820062787f8a82006278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820062e07f8a820062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820063487f8a82006348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820063b07f8a820063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820064187f8a82006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820064807f8a82006480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820064e87f8a820064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820065507f8a82006550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820065b87f8a820065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820066207f8a82006620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820066887f8a82006688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820066f07f8a820066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820067587f8a82006758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820067c07f8a820067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820068287f8a82006828 /* 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; }; - FFFD820068907f8a82006890 /* 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; }; - FFFD820068f87f8a820068f8 /* 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; }; - FFFD820069607f8a82006960 /* 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; }; - FFFD820069c87f8a820069c8 /* 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; }; - FFFD82006a307f8a82006a30 /* 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; }; - FFFD82006a987f8a82006a98 /* 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; }; - FFFD82006b007f8a82006b00 /* 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; }; - FFFD82006b687f8a82006b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82006bd07f8a82006bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82006c387f8a82006c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82006ca07f8a82006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82006d087f8a82006d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82006d707f8a82006d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82006dd87f8a82006dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82006e407f8a82006e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82006ea87f8a82006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82006f107f8a82006f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82006f787f8a82006f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82006fe07f8a82006fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820070487f8a82007048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820070b07f8a820070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820071187f8a82007118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820071807f8a82007180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820071e87f8a820071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820072507f8a82007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820072b87f8a820072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820073207f8a82007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820073887f8a82007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820073f07f8a820073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820074587f8a82007458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820074c07f8a820074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820075287f8a82007528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820075907f8a82007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820075f87f8a820075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820076607f8a82007660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820076c87f8a820076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820077307f8a82007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820077987f8a82007798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820078007f8a82007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820078687f8a82007868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820078d07f8a820078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820079387f8a82007938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820079a07f8a820079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82007a087f8a82007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82007a707f8a82007a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82007ad87f8a82007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82007b407f8a82007b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82007ba87f8a82007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82007c107f8a82007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b93e9407fc05b93e940 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5c00ec007fc05c00ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00ec687fc05c00ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00ecd07fc05c00ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00ed387fc05c00ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00eda07fc05c00eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00ee087fc05c00ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00ee707fc05c00ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00eed87fc05c00eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00ef407fc05c00ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00efa87fc05c00efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f0107fc05c00f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f0787fc05c00f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f0e07fc05c00f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f1487fc05c00f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f1b07fc05c00f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f2187fc05c00f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f2807fc05c00f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f2e87fc05c00f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f3507fc05c00f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f3b87fc05c00f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f4207fc05c00f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f4887fc05c00f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f4f07fc05c00f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f5587fc05c00f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f5c07fc05c00f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f6287fc05c00f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f6907fc05c00f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f6f87fc05c00f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f7607fc05c00f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f7c87fc05c00f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f8307fc05c00f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f8987fc05c00f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c00f9007fc05c00f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18f6007fc05b18f600 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b18f6687fc05b18f668 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b18f6d07fc05b18f6d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b18f7387fc05b18f738 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b18f7a07fc05b18f7a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b18f8087fc05b18f808 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b18f8707fc05b18f870 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b18f8d87fc05b18f8d8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b18f9407fc05b18f940 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18f9a87fc05b18f9a8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18fa107fc05b18fa10 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18fa787fc05b18fa78 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18fae07fc05b18fae0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18fb487fc05b18fb48 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18fbb07fc05b18fbb0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18fc187fc05b18fc18 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18fc807fc05b18fc80 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18fce87fc05b18fce8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18fd507fc05b18fd50 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18fdb87fc05b18fdb8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18fe207fc05b18fe20 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18fe887fc05b18fe88 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18fef07fc05b18fef0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18ff587fc05b18ff58 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b18ffc07fc05b18ffc0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1900287fc05b190028 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1900907fc05b190090 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1900f87fc05b1900f8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1901607fc05b190160 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1901c87fc05b1901c8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1902307fc05b190230 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1902987fc05b190298 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1903007fc05b190300 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1903687fc05b190368 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1903d07fc05b1903d0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1904387fc05b190438 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0010007fc05c001000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0010687fc05c001068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0010d07fc05c0010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0011387fc05c001138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0011a07fc05c0011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0012087fc05c001208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0012707fc05c001270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0012d87fc05c0012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0013407fc05c001340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0013a87fc05c0013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; + FFFD5c0014107fc05c001410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0014787fc05c001478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0014e07fc05c0014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0015487fc05c001548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0015b07fc05c0015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0016187fc05c001618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0016807fc05c001680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0016e87fc05c0016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0017507fc05c001750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0017b87fc05c0017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0018207fc05c001820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0018887fc05c001888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0018f07fc05c0018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0019587fc05c001958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0019c07fc05c0019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c001a287fc05c001a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c001a907fc05c001a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c001af87fc05c001af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c001b607fc05c001b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c001bc87fc05c001bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c001c307fc05c001c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c001c987fc05c001c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c001d007fc05c001d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c001d687fc05c001d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c001dd07fc05c001dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c001e387fc05c001e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c001ea07fc05c001ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c001f087fc05c001f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c001f707fc05c001f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c001fd87fc05c001fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0020407fc05c002040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0020a87fc05c0020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0021107fc05c002110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0021787fc05c002178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0021e07fc05c0021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0022487fc05c002248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0022b07fc05c0022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0023187fc05c002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0023807fc05c002380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0023e87fc05c0023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0024507fc05c002450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0024b87fc05c0024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0025207fc05c002520 /* 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; }; + FFFD5c0025887fc05c002588 /* 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; }; + FFFD5c0025f07fc05c0025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0026587fc05c002658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0026c07fc05c0026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0027287fc05c002728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0027907fc05c002790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0027f87fc05c0027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0028607fc05c002860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0028c87fc05c0028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0029307fc05c002930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0029987fc05c002998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c002a007fc05c002a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c002a687fc05c002a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c002ad07fc05c002ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c002b387fc05c002b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c002ba07fc05c002ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c002c087fc05c002c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c002c707fc05c002c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c002cd87fc05c002cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c002d407fc05c002d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c002da87fc05c002da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c002e107fc05c002e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c002e787fc05c002e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c002ee07fc05c002ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c002f487fc05c002f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c002fb07fc05c002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0030187fc05c003018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0030807fc05c003080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0030e87fc05c0030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0031507fc05c003150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0031b87fc05c0031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0032207fc05c003220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0032887fc05c003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0032f07fc05c0032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0033587fc05c003358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0033c07fc05c0033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0034287fc05c003428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0034907fc05c003490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0034f87fc05c0034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0035607fc05c003560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0035c87fc05c0035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0036307fc05c003630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0036987fc05c003698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0037007fc05c003700 /* 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; }; + FFFD5c0037687fc05c003768 /* 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; }; + FFFD5c0037d07fc05c0037d0 /* 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; }; + FFFD5c0038387fc05c003838 /* 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; }; + FFFD5c0038a07fc05c0038a0 /* 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; }; + FFFD5c0039087fc05c003908 /* 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; }; + FFFD5c0039707fc05c003970 /* 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; }; + FFFD5c0039d87fc05c0039d8 /* 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; }; + FFFD5c003a407fc05c003a40 /* 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; }; + FFFD5c003aa87fc05c003aa8 /* 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; }; + FFFD5c003b107fc05c003b10 /* 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; }; + FFFD5c003b787fc05c003b78 /* 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; }; + FFFD5c003be07fc05c003be0 /* 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; }; + FFFD5c003c487fc05c003c48 /* 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; }; + FFFD5c003cb07fc05c003cb0 /* 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; }; + FFFD5c003d187fc05c003d18 /* 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; }; + FFFD5c003d807fc05c003d80 /* 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; }; + FFFD5c003de87fc05c003de8 /* 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; }; + FFFD5c003e507fc05c003e50 /* 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; }; + FFFD5c003eb87fc05c003eb8 /* 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; }; + FFFD5c003f207fc05c003f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c003f887fc05c003f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c003ff07fc05c003ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0040587fc05c004058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0040c07fc05c0040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0041287fc05c004128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0041907fc05c004190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0041f87fc05c0041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0042607fc05c004260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0042c87fc05c0042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0043307fc05c004330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0043987fc05c004398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0044007fc05c004400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0044687fc05c004468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0044d07fc05c0044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0045387fc05c004538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0045a07fc05c0045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0046087fc05c004608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0046707fc05c004670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0046d87fc05c0046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0047407fc05c004740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0047a87fc05c0047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0048107fc05c004810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0048787fc05c004878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c0048e07fc05c0048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0049487fc05c004948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0049b07fc05c0049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c004a187fc05c004a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c004a807fc05c004a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c004ae87fc05c004ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c004b507fc05c004b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c004bb87fc05c004bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c004c207fc05c004c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c004c887fc05c004c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c004cf07fc05c004cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c004d587fc05c004d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c004dc07fc05c004dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c004e287fc05c004e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c004e907fc05c004e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c004ef87fc05c004ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c004f607fc05c004f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c004fc87fc05c004fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0050307fc05c005030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0050987fc05c005098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0051007fc05c005100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0051687fc05c005168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0051d07fc05c0051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0052387fc05c005238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0052a07fc05c0052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0053087fc05c005308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0053707fc05c005370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0053d87fc05c0053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0054407fc05c005440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0054a87fc05c0054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0055107fc05c005510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0055787fc05c005578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0055e07fc05c0055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0056487fc05c005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0056b07fc05c0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0057187fc05c005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0057807fc05c005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0057e87fc05c0057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0058507fc05c005850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0058b87fc05c0058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0059207fc05c005920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0059887fc05c005988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0059f07fc05c0059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c005a587fc05c005a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c005ac07fc05c005ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c005b287fc05c005b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c005b907fc05c005b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c005bf87fc05c005bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c005c607fc05c005c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c005cc87fc05c005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c005d307fc05c005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c005d987fc05c005d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c005e007fc05c005e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c005e687fc05c005e68 /* 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; }; + FFFD5c005ed07fc05c005ed0 /* 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; }; + FFFD5c005f387fc05c005f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c005fa07fc05c005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0060087fc05c006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0060707fc05c006070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0060d87fc05c0060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0061407fc05c006140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0061a87fc05c0061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0062107fc05c006210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0062787fc05c006278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0062e07fc05c0062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0063487fc05c006348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0063b07fc05c0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0064187fc05c006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0064807fc05c006480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0064e87fc05c0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0065507fc05c006550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0065b87fc05c0065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0066207fc05c006620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0066887fc05c006688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0066f07fc05c0066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0067587fc05c006758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0067c07fc05c0067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0068287fc05c006828 /* 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; }; + FFFD5c0068907fc05c006890 /* 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; }; + FFFD5c0068f87fc05c0068f8 /* 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; }; + FFFD5c0069607fc05c006960 /* 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; }; + FFFD5c0069c87fc05c0069c8 /* 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; }; + FFFD5c006a307fc05c006a30 /* 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; }; + FFFD5c006a987fc05c006a98 /* 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; }; + FFFD5c006b007fc05c006b00 /* 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; }; + FFFD5c006b687fc05c006b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c006bd07fc05c006bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c006c387fc05c006c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c006ca07fc05c006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c006d087fc05c006d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c006d707fc05c006d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c006dd87fc05c006dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c006e407fc05c006e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c006ea87fc05c006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c006f107fc05c006f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c006f787fc05c006f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c006fe07fc05c006fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0070487fc05c007048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0070b07fc05c0070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0071187fc05c007118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0071807fc05c007180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0071e87fc05c0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0072507fc05c007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0072b87fc05c0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0073207fc05c007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0073887fc05c007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0073f07fc05c0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0074587fc05c007458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0074c07fc05c0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0075287fc05c007528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0075907fc05c007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0075f87fc05c0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0076607fc05c007660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0076c87fc05c0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0077307fc05c007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0077987fc05c007798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0078007fc05c007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0078687fc05c007868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0078d07fc05c0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0079387fc05c007938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c0079a07fc05c0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c007a087fc05c007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c007a707fc05c007a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c007ad87fc05c007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c007b407fc05c007b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c007ba87fc05c007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c007c107fc05c007c10 /* 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 */ - FFF2810dc3907f8a810dc390 /* Resources */ = { + FFF25b93e9407fc05b93e940 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF820013a87f8a820013a8, + FFFF5c0013a87fc05c0013a8, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC810dc3907f8a810dc390 /* Frameworks */ = { + FFFC5b93e9407fc05b93e940 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1841,145 +1841,145 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8810dc3907f8a810dc390 /* Sources */ = { + FFF85b93e9407fc05b93e940 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF8180b0007f8a8180b000, - FFFF8180b0687f8a8180b068, - FFFF8180b0d07f8a8180b0d0, - FFFF8180b1387f8a8180b138, - FFFF8180b1a07f8a8180b1a0, - FFFF8180b2087f8a8180b208, - FFFF8180b2707f8a8180b270, - FFFF8180b2d87f8a8180b2d8, - FFFF820048e07f8a820048e0, - FFFF820049487f8a82004948, - FFFF820049b07f8a820049b0, - FFFF82004a187f8a82004a18, - FFFF82004a807f8a82004a80, - FFFF82004ae87f8a82004ae8, - FFFF82004b507f8a82004b50, - FFFF82004bb87f8a82004bb8, - FFFF82004c207f8a82004c20, - FFFF82004c887f8a82004c88, - FFFF82004cf07f8a82004cf0, - FFFF82004d587f8a82004d58, - FFFF82004dc07f8a82004dc0, - FFFF82004e287f8a82004e28, - FFFF82004e907f8a82004e90, - FFFF82004ef87f8a82004ef8, - FFFF82004f607f8a82004f60, - FFFF82004fc87f8a82004fc8, - FFFF820050307f8a82005030, - FFFF820050987f8a82005098, - FFFF820051007f8a82005100, - FFFF820051687f8a82005168, - FFFF820051d07f8a820051d0, - FFFF820052387f8a82005238, - FFFF820052a07f8a820052a0, - FFFF820053087f8a82005308, - FFFF820053707f8a82005370, - FFFF820053d87f8a820053d8, - FFFF820054407f8a82005440, - FFFF820054a87f8a820054a8, - FFFF820055107f8a82005510, - FFFF820055787f8a82005578, - FFFF820055e07f8a820055e0, - FFFF820056487f8a82005648, - FFFF820056b07f8a820056b0, - FFFF820057187f8a82005718, - FFFF820057807f8a82005780, - FFFF820057e87f8a820057e8, - FFFF820058507f8a82005850, - FFFF820058b87f8a820058b8, - FFFF820059207f8a82005920, - FFFF820059887f8a82005988, - FFFF820059f07f8a820059f0, - FFFF82005a587f8a82005a58, - FFFF82005ac07f8a82005ac0, - FFFF82005b287f8a82005b28, - FFFF82005b907f8a82005b90, - FFFF82005bf87f8a82005bf8, - FFFF82005c607f8a82005c60, - FFFF82005cc87f8a82005cc8, - FFFF82005d307f8a82005d30, - FFFF82005d987f8a82005d98, - FFFF82005e007f8a82005e00, - FFFF82005e687f8a82005e68, - FFFF82005ed07f8a82005ed0, - FFFF82005f387f8a82005f38, - FFFF82005fa07f8a82005fa0, - FFFF820060087f8a82006008, - FFFF820060707f8a82006070, - FFFF820060d87f8a820060d8, - FFFF820061407f8a82006140, - FFFF820061a87f8a820061a8, - FFFF820062107f8a82006210, - FFFF820062787f8a82006278, - FFFF820062e07f8a820062e0, - FFFF820063487f8a82006348, - FFFF820063b07f8a820063b0, - FFFF820064187f8a82006418, - FFFF820064807f8a82006480, - FFFF820064e87f8a820064e8, - FFFF820065507f8a82006550, - FFFF820065b87f8a820065b8, - FFFF820066207f8a82006620, - FFFF820066887f8a82006688, - FFFF820066f07f8a820066f0, - FFFF820067587f8a82006758, - FFFF820067c07f8a820067c0, - FFFF820068287f8a82006828, - FFFF820068907f8a82006890, - FFFF820068f87f8a820068f8, - FFFF820069607f8a82006960, - FFFF820069c87f8a820069c8, - FFFF82006a307f8a82006a30, - FFFF82006a987f8a82006a98, - FFFF82006b007f8a82006b00, - FFFF82006b687f8a82006b68, - FFFF82006bd07f8a82006bd0, - FFFF82006c387f8a82006c38, - FFFF82006ca07f8a82006ca0, - FFFF82006d087f8a82006d08, - FFFF82006d707f8a82006d70, - FFFF82006dd87f8a82006dd8, - FFFF82006e407f8a82006e40, - FFFF82006ea87f8a82006ea8, - FFFF82006f107f8a82006f10, - FFFF82006f787f8a82006f78, - FFFF82006fe07f8a82006fe0, - FFFF820070487f8a82007048, - FFFF820070b07f8a820070b0, - FFFF820071187f8a82007118, - FFFF820071807f8a82007180, - FFFF820071e87f8a820071e8, - FFFF820072507f8a82007250, - FFFF820072b87f8a820072b8, - FFFF820073207f8a82007320, - FFFF820073887f8a82007388, - FFFF820073f07f8a820073f0, - FFFF820074587f8a82007458, - FFFF820074c07f8a820074c0, - FFFF820075287f8a82007528, - FFFF820075907f8a82007590, - FFFF820075f87f8a820075f8, - FFFF820076607f8a82007660, - FFFF820076c87f8a820076c8, - FFFF820077307f8a82007730, - FFFF820077987f8a82007798, - FFFF820078007f8a82007800, - FFFF820078687f8a82007868, - FFFF820078d07f8a820078d0, - FFFF820079387f8a82007938, - FFFF820079a07f8a820079a0, - FFFF82007a087f8a82007a08, - FFFF82007a707f8a82007a70, - FFFF82007ad87f8a82007ad8, - FFFF82007b407f8a82007b40, - FFFF82007ba87f8a82007ba8, - FFFF82007c107f8a82007c10, + FFFF5b18f6007fc05b18f600, + FFFF5b18f6687fc05b18f668, + FFFF5b18f6d07fc05b18f6d0, + FFFF5b18f7387fc05b18f738, + FFFF5b18f7a07fc05b18f7a0, + FFFF5b18f8087fc05b18f808, + FFFF5b18f8707fc05b18f870, + FFFF5b18f8d87fc05b18f8d8, + FFFF5c0048e07fc05c0048e0, + FFFF5c0049487fc05c004948, + FFFF5c0049b07fc05c0049b0, + FFFF5c004a187fc05c004a18, + FFFF5c004a807fc05c004a80, + FFFF5c004ae87fc05c004ae8, + FFFF5c004b507fc05c004b50, + FFFF5c004bb87fc05c004bb8, + FFFF5c004c207fc05c004c20, + FFFF5c004c887fc05c004c88, + FFFF5c004cf07fc05c004cf0, + FFFF5c004d587fc05c004d58, + FFFF5c004dc07fc05c004dc0, + FFFF5c004e287fc05c004e28, + FFFF5c004e907fc05c004e90, + FFFF5c004ef87fc05c004ef8, + FFFF5c004f607fc05c004f60, + FFFF5c004fc87fc05c004fc8, + FFFF5c0050307fc05c005030, + FFFF5c0050987fc05c005098, + FFFF5c0051007fc05c005100, + FFFF5c0051687fc05c005168, + FFFF5c0051d07fc05c0051d0, + FFFF5c0052387fc05c005238, + FFFF5c0052a07fc05c0052a0, + FFFF5c0053087fc05c005308, + FFFF5c0053707fc05c005370, + FFFF5c0053d87fc05c0053d8, + FFFF5c0054407fc05c005440, + FFFF5c0054a87fc05c0054a8, + FFFF5c0055107fc05c005510, + FFFF5c0055787fc05c005578, + FFFF5c0055e07fc05c0055e0, + FFFF5c0056487fc05c005648, + FFFF5c0056b07fc05c0056b0, + FFFF5c0057187fc05c005718, + FFFF5c0057807fc05c005780, + FFFF5c0057e87fc05c0057e8, + FFFF5c0058507fc05c005850, + FFFF5c0058b87fc05c0058b8, + FFFF5c0059207fc05c005920, + FFFF5c0059887fc05c005988, + FFFF5c0059f07fc05c0059f0, + FFFF5c005a587fc05c005a58, + FFFF5c005ac07fc05c005ac0, + FFFF5c005b287fc05c005b28, + FFFF5c005b907fc05c005b90, + FFFF5c005bf87fc05c005bf8, + FFFF5c005c607fc05c005c60, + FFFF5c005cc87fc05c005cc8, + FFFF5c005d307fc05c005d30, + FFFF5c005d987fc05c005d98, + FFFF5c005e007fc05c005e00, + FFFF5c005e687fc05c005e68, + FFFF5c005ed07fc05c005ed0, + FFFF5c005f387fc05c005f38, + FFFF5c005fa07fc05c005fa0, + FFFF5c0060087fc05c006008, + FFFF5c0060707fc05c006070, + FFFF5c0060d87fc05c0060d8, + FFFF5c0061407fc05c006140, + FFFF5c0061a87fc05c0061a8, + FFFF5c0062107fc05c006210, + FFFF5c0062787fc05c006278, + FFFF5c0062e07fc05c0062e0, + FFFF5c0063487fc05c006348, + FFFF5c0063b07fc05c0063b0, + FFFF5c0064187fc05c006418, + FFFF5c0064807fc05c006480, + FFFF5c0064e87fc05c0064e8, + FFFF5c0065507fc05c006550, + FFFF5c0065b87fc05c0065b8, + FFFF5c0066207fc05c006620, + FFFF5c0066887fc05c006688, + FFFF5c0066f07fc05c0066f0, + FFFF5c0067587fc05c006758, + FFFF5c0067c07fc05c0067c0, + FFFF5c0068287fc05c006828, + FFFF5c0068907fc05c006890, + FFFF5c0068f87fc05c0068f8, + FFFF5c0069607fc05c006960, + FFFF5c0069c87fc05c0069c8, + FFFF5c006a307fc05c006a30, + FFFF5c006a987fc05c006a98, + FFFF5c006b007fc05c006b00, + FFFF5c006b687fc05c006b68, + FFFF5c006bd07fc05c006bd0, + FFFF5c006c387fc05c006c38, + FFFF5c006ca07fc05c006ca0, + FFFF5c006d087fc05c006d08, + FFFF5c006d707fc05c006d70, + FFFF5c006dd87fc05c006dd8, + FFFF5c006e407fc05c006e40, + FFFF5c006ea87fc05c006ea8, + FFFF5c006f107fc05c006f10, + FFFF5c006f787fc05c006f78, + FFFF5c006fe07fc05c006fe0, + FFFF5c0070487fc05c007048, + FFFF5c0070b07fc05c0070b0, + FFFF5c0071187fc05c007118, + FFFF5c0071807fc05c007180, + FFFF5c0071e87fc05c0071e8, + FFFF5c0072507fc05c007250, + FFFF5c0072b87fc05c0072b8, + FFFF5c0073207fc05c007320, + FFFF5c0073887fc05c007388, + FFFF5c0073f07fc05c0073f0, + FFFF5c0074587fc05c007458, + FFFF5c0074c07fc05c0074c0, + FFFF5c0075287fc05c007528, + FFFF5c0075907fc05c007590, + FFFF5c0075f87fc05c0075f8, + FFFF5c0076607fc05c007660, + FFFF5c0076c87fc05c0076c8, + FFFF5c0077307fc05c007730, + FFFF5c0077987fc05c007798, + FFFF5c0078007fc05c007800, + FFFF5c0078687fc05c007868, + FFFF5c0078d07fc05c0078d0, + FFFF5c0079387fc05c007938, + FFFF5c0079a07fc05c0079a0, + FFFF5c007a087fc05c007a08, + FFFF5c007a707fc05c007a70, + FFFF5c007ad87fc05c007ad8, + FFFF5c007b407fc05c007b40, + FFFF5c007ba87fc05c007ba8, + FFFF5c007c107fc05c007c10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1988,132 +1988,132 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4810caf307f8a810caf30 /* PBXTargetDependency */ = { + FFF45b93a4907fc05b93a490 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA810edec07f8a810edec0 /* PxFoundation */; - targetProxy = FFF5810edec07f8a810edec0 /* PBXContainerItemProxy */; + target = FFFA5b91b1007fc05b91b100 /* PxFoundation */; + targetProxy = FFF55b91b1007fc05b91b100 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxFoundation */ - FFFF81812f187f8a81812f18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81812f187f8a81812f18 /* src/PsAllocator.cpp */; }; - FFFF81812f807f8a81812f80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81812f807f8a81812f80 /* src/PsAssert.cpp */; }; - FFFF81812fe87f8a81812fe8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD81812fe87f8a81812fe8 /* src/PsFoundation.cpp */; }; - FFFF818130507f8a81813050 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818130507f8a81813050 /* src/PsMathUtils.cpp */; }; - FFFF818130b87f8a818130b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818130b87f8a818130b8 /* src/PsString.cpp */; }; - FFFF818131207f8a81813120 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818131207f8a81813120 /* src/PsTempAllocator.cpp */; }; - FFFF818131887f8a81813188 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818131887f8a81813188 /* src/PsUtilities.cpp */; }; - FFFF818131f07f8a818131f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818131f07f8a818131f0 /* src/unix/PsUnixAtomic.cpp */; }; - FFFF818132587f8a81813258 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818132587f8a81813258 /* src/unix/PsUnixCpu.cpp */; }; - FFFF818132c07f8a818132c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818132c07f8a818132c0 /* src/unix/PsUnixFPU.cpp */; }; - FFFF818133287f8a81813328 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818133287f8a81813328 /* src/unix/PsUnixMutex.cpp */; }; - FFFF818133907f8a81813390 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818133907f8a81813390 /* src/unix/PsUnixPrintString.cpp */; }; - FFFF818133f87f8a818133f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818133f87f8a818133f8 /* src/unix/PsUnixSList.cpp */; }; - FFFF818134607f8a81813460 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818134607f8a81813460 /* src/unix/PsUnixSocket.cpp */; }; - FFFF818134c87f8a818134c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818134c87f8a818134c8 /* src/unix/PsUnixSync.cpp */; }; - FFFF818135307f8a81813530 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818135307f8a81813530 /* src/unix/PsUnixThread.cpp */; }; - FFFF818135987f8a81813598 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD818135987f8a81813598 /* src/unix/PsUnixTime.cpp */; }; + FFFF5b17d3187fc05b17d318 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d3187fc05b17d318 /* src/PsAllocator.cpp */; }; + FFFF5b17d3807fc05b17d380 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d3807fc05b17d380 /* src/PsAssert.cpp */; }; + FFFF5b17d3e87fc05b17d3e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d3e87fc05b17d3e8 /* src/PsFoundation.cpp */; }; + FFFF5b17d4507fc05b17d450 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d4507fc05b17d450 /* src/PsMathUtils.cpp */; }; + FFFF5b17d4b87fc05b17d4b8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d4b87fc05b17d4b8 /* src/PsString.cpp */; }; + FFFF5b17d5207fc05b17d520 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d5207fc05b17d520 /* src/PsTempAllocator.cpp */; }; + FFFF5b17d5887fc05b17d588 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d5887fc05b17d588 /* src/PsUtilities.cpp */; }; + FFFF5b17d5f07fc05b17d5f0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d5f07fc05b17d5f0 /* src/unix/PsUnixAtomic.cpp */; }; + FFFF5b17d6587fc05b17d658 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d6587fc05b17d658 /* src/unix/PsUnixCpu.cpp */; }; + FFFF5b17d6c07fc05b17d6c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d6c07fc05b17d6c0 /* src/unix/PsUnixFPU.cpp */; }; + FFFF5b17d7287fc05b17d728 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d7287fc05b17d728 /* src/unix/PsUnixMutex.cpp */; }; + FFFF5b17d7907fc05b17d790 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d7907fc05b17d790 /* src/unix/PsUnixPrintString.cpp */; }; + FFFF5b17d7f87fc05b17d7f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d7f87fc05b17d7f8 /* src/unix/PsUnixSList.cpp */; }; + FFFF5b17d8607fc05b17d860 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d8607fc05b17d860 /* src/unix/PsUnixSocket.cpp */; }; + FFFF5b17d8c87fc05b17d8c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d8c87fc05b17d8c8 /* src/unix/PsUnixSync.cpp */; }; + FFFF5b17d9307fc05b17d930 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d9307fc05b17d930 /* src/unix/PsUnixThread.cpp */; }; + FFFF5b17d9987fc05b17d998 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5b17d9987fc05b17d998 /* src/unix/PsUnixTime.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD810edec07f8a810edec0 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD81828e007f8a81828e00 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; - FFFD81828e687f8a81828e68 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD81828ed07f8a81828ed0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; - FFFD81828f387f8a81828f38 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; - FFFD81828fa07f8a81828fa0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; - FFFD818290087f8a81829008 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD818290707f8a81829070 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; - FFFD818290d87f8a818290d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD818291407f8a81829140 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD818291a87f8a818291a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFD818292107f8a81829210 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; - FFFD818292787f8a81829278 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD818292e07f8a818292e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; - FFFD818293487f8a81829348 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; - FFFD818293b07f8a818293b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD818294187f8a81829418 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD818294807f8a81829480 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFD818294e87f8a818294e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD818295507f8a81829550 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; - FFFD818295b87f8a818295b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; - FFFD818296207f8a81829620 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFD818296887f8a81829688 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD818296f07f8a818296f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFD818297587f8a81829758 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFD818297c07f8a818297c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; - FFFD818298287f8a81829828 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; - FFFD818298907f8a81829890 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; - FFFD818298f87f8a818298f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; - FFFD818299607f8a81829960 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD81811c007f8a81811c00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; - FFFD81811c687f8a81811c68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; - FFFD81811cd07f8a81811cd0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; - FFFD81811d387f8a81811d38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD81811da07f8a81811da0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD81811e087f8a81811e08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; - FFFD81811e707f8a81811e70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFD81811ed87f8a81811ed8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; - FFFD81811f407f8a81811f40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD81811fa87f8a81811fa8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; - FFFD818120107f8a81812010 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD818120787f8a81812078 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFD818120e07f8a818120e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD818121487f8a81812148 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; - FFFD818121b07f8a818121b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFD818122187f8a81812218 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD818122807f8a81812280 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; - FFFD818122e87f8a818122e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD818123507f8a81812350 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD818123b87f8a818123b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; - FFFD818124207f8a81812420 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD818124887f8a81812488 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD818124f07f8a818124f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFD818125587f8a81812558 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD818125c07f8a818125c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; - FFFD818126287f8a81812628 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; - FFFD818126907f8a81812690 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; - FFFD818126f87f8a818126f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFD818127607f8a81812760 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; - FFFD818127c87f8a818127c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; - FFFD818128307f8a81812830 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD818128987f8a81812898 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; - FFFD818129007f8a81812900 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; - FFFD818129687f8a81812968 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; - FFFD818129d07f8a818129d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFD81812a387f8a81812a38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD81812aa07f8a81812aa0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD81812b087f8a81812b08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; - FFFD81812b707f8a81812b70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; - FFFD81812bd87f8a81812bd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFD81812c407f8a81812c40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFD81812ca87f8a81812ca8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFD81812d107f8a81812d10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD81812d787f8a81812d78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFD81812de07f8a81812de0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD81812e487f8a81812e48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD81812eb07f8a81812eb0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD81812f187f8a81812f18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81812f807f8a81812f80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD81812fe87f8a81812fe8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818130507f8a81813050 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818130b87f8a818130b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818131207f8a81813120 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818131887f8a81813188 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818131f07f8a818131f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818132587f8a81813258 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818132c07f8a818132c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818133287f8a81813328 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818133907f8a81813390 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818133f87f8a818133f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818134607f8a81813460 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818134c87f8a818134c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818135307f8a81813530 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818135987f8a81813598 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b91b1007fc05b91b100 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5b1856007fc05b185600 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1856687fc05b185668 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1856d07fc05b1856d0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1857387fc05b185738 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1857a07fc05b1857a0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1858087fc05b185808 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1858707fc05b185870 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1858d87fc05b1858d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1859407fc05b185940 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1859a87fc05b1859a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b185a107fc05b185a10 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b185a787fc05b185a78 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b185ae07fc05b185ae0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b185b487fc05b185b48 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b185bb07fc05b185bb0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b185c187fc05b185c18 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b185c807fc05b185c80 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b185ce87fc05b185ce8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b185d507fc05b185d50 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b185db87fc05b185db8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b185e207fc05b185e20 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b185e887fc05b185e88 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b185ef07fc05b185ef0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b185f587fc05b185f58 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b185fc07fc05b185fc0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1860287fc05b186028 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1860907fc05b186090 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1860f87fc05b1860f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b1861607fc05b186160 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c0007fc05b17c000 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c0687fc05b17c068 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c0d07fc05b17c0d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c1387fc05b17c138 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c1a07fc05b17c1a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c2087fc05b17c208 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c2707fc05b17c270 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c2d87fc05b17c2d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c3407fc05b17c340 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c3a87fc05b17c3a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c4107fc05b17c410 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c4787fc05b17c478 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c4e07fc05b17c4e0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c5487fc05b17c548 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c5b07fc05b17c5b0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c6187fc05b17c618 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c6807fc05b17c680 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c6e87fc05b17c6e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c7507fc05b17c750 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c7b87fc05b17c7b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c8207fc05b17c820 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c8887fc05b17c888 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c8f07fc05b17c8f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c9587fc05b17c958 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17c9c07fc05b17c9c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17ca287fc05b17ca28 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17ca907fc05b17ca90 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17caf87fc05b17caf8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17cb607fc05b17cb60 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17cbc87fc05b17cbc8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17cc307fc05b17cc30 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17cc987fc05b17cc98 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17cd007fc05b17cd00 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17cd687fc05b17cd68 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17cdd07fc05b17cdd0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17ce387fc05b17ce38 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17cea07fc05b17cea0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17cf087fc05b17cf08 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17cf707fc05b17cf70 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17cfd87fc05b17cfd8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d0407fc05b17d040 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d0a87fc05b17d0a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d1107fc05b17d110 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d1787fc05b17d178 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d1e07fc05b17d1e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d2487fc05b17d248 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d2b07fc05b17d2b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d3187fc05b17d318 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d3807fc05b17d380 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d3e87fc05b17d3e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d4507fc05b17d450 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d4b87fc05b17d4b8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d5207fc05b17d520 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d5887fc05b17d588 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d5f07fc05b17d5f0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d6587fc05b17d658 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d6c07fc05b17d6c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d7287fc05b17d728 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d7907fc05b17d790 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d7f87fc05b17d7f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d8607fc05b17d860 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d8c87fc05b17d8c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d9307fc05b17d930 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5b17d9987fc05b17d998 /* 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 */ - FFF2810edec07f8a810edec0 /* Resources */ = { + FFF25b91b1007fc05b91b100 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2123,7 +2123,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC810edec07f8a810edec0 /* Frameworks */ = { + FFFC5b91b1007fc05b91b100 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2133,27 +2133,27 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8810edec07f8a810edec0 /* Sources */ = { + FFF85b91b1007fc05b91b100 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF81812f187f8a81812f18, - FFFF81812f807f8a81812f80, - FFFF81812fe87f8a81812fe8, - FFFF818130507f8a81813050, - FFFF818130b87f8a818130b8, - FFFF818131207f8a81813120, - FFFF818131887f8a81813188, - FFFF818131f07f8a818131f0, - FFFF818132587f8a81813258, - FFFF818132c07f8a818132c0, - FFFF818133287f8a81813328, - FFFF818133907f8a81813390, - FFFF818133f87f8a818133f8, - FFFF818134607f8a81813460, - FFFF818134c87f8a818134c8, - FFFF818135307f8a81813530, - FFFF818135987f8a81813598, + FFFF5b17d3187fc05b17d318, + FFFF5b17d3807fc05b17d380, + FFFF5b17d3e87fc05b17d3e8, + FFFF5b17d4507fc05b17d450, + FFFF5b17d4b87fc05b17d4b8, + FFFF5b17d5207fc05b17d520, + FFFF5b17d5887fc05b17d588, + FFFF5b17d5f07fc05b17d5f0, + FFFF5b17d6587fc05b17d658, + FFFF5b17d6c07fc05b17d6c0, + FFFF5b17d7287fc05b17d728, + FFFF5b17d7907fc05b17d790, + FFFF5b17d7f87fc05b17d7f8, + FFFF5b17d8607fc05b17d860, + FFFF5b17d8c87fc05b17d8c8, + FFFF5b17d9307fc05b17d930, + FFFF5b17d9987fc05b17d998, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2165,103 +2165,103 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxPvdSDK */ - FFFF80991ba87f8a80991ba8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD80991ba87f8a80991ba8 /* src/PxProfileEventImpl.cpp */; }; - FFFF80991c107f8a80991c10 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD80991c107f8a80991c10 /* src/PxPvd.cpp */; }; - FFFF80991c787f8a80991c78 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD80991c787f8a80991c78 /* src/PxPvdDataStream.cpp */; }; - FFFF80991ce07f8a80991ce0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD80991ce07f8a80991ce0 /* src/PxPvdDefaultFileTransport.cpp */; }; - FFFF80991d487f8a80991d48 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD80991d487f8a80991d48 /* src/PxPvdDefaultSocketTransport.cpp */; }; - FFFF80991db07f8a80991db0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD80991db07f8a80991db0 /* src/PxPvdImpl.cpp */; }; - FFFF80991e187f8a80991e18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD80991e187f8a80991e18 /* src/PxPvdMemClient.cpp */; }; - FFFF80991e807f8a80991e80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD80991e807f8a80991e80 /* src/PxPvdObjectModelMetaData.cpp */; }; - FFFF80991ee87f8a80991ee8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD80991ee87f8a80991ee8 /* src/PxPvdObjectRegistrar.cpp */; }; - FFFF80991f507f8a80991f50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD80991f507f8a80991f50 /* src/PxPvdProfileZoneClient.cpp */; }; - FFFF80991fb87f8a80991fb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD80991fb87f8a80991fb8 /* src/PxPvdUserRenderer.cpp */; }; + FFFF5c8107a87fc05c8107a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8107a87fc05c8107a8 /* src/PxProfileEventImpl.cpp */; }; + FFFF5c8108107fc05c810810 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8108107fc05c810810 /* src/PxPvd.cpp */; }; + FFFF5c8108787fc05c810878 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8108787fc05c810878 /* src/PxPvdDataStream.cpp */; }; + FFFF5c8108e07fc05c8108e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8108e07fc05c8108e0 /* src/PxPvdDefaultFileTransport.cpp */; }; + FFFF5c8109487fc05c810948 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8109487fc05c810948 /* src/PxPvdDefaultSocketTransport.cpp */; }; + FFFF5c8109b07fc05c8109b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8109b07fc05c8109b0 /* src/PxPvdImpl.cpp */; }; + FFFF5c810a187fc05c810a18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c810a187fc05c810a18 /* src/PxPvdMemClient.cpp */; }; + FFFF5c810a807fc05c810a80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c810a807fc05c810a80 /* src/PxPvdObjectModelMetaData.cpp */; }; + FFFF5c810ae87fc05c810ae8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c810ae87fc05c810ae8 /* src/PxPvdObjectRegistrar.cpp */; }; + FFFF5c810b507fc05c810b50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c810b507fc05c810b50 /* src/PxPvdProfileZoneClient.cpp */; }; + FFFF5c810bb87fc05c810bb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c810bb87fc05c810bb8 /* src/PxPvdUserRenderer.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD81169e707f8a81169e70 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD8115e0707f8a8115e070 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD8115e0d87f8a8115e0d8 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD809918007f8a80991800 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD809918687f8a80991868 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; - FFFD809918d07f8a809918d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD809919387f8a80991938 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD809919a07f8a809919a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD80991a087f8a80991a08 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; - FFFD80991a707f8a80991a70 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD80991ad87f8a80991ad8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD80991b407f8a80991b40 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; - FFFD80991ba87f8a80991ba8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD80991c107f8a80991c10 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD80991c787f8a80991c78 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD80991ce07f8a80991ce0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD80991d487f8a80991d48 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD80991db07f8a80991db0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD80991e187f8a80991e18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD80991e807f8a80991e80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD80991ee87f8a80991ee8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD80991f507f8a80991f50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD80991fb87f8a80991fb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD809920207f8a80992020 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD809920887f8a80992088 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFD809920f07f8a809920f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; - FFFD809921587f8a80992158 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD809921c07f8a809921c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD809922287f8a80992228 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; - FFFD809922907f8a80992290 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD809922f87f8a809922f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFD809923607f8a80992360 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD809923c87f8a809923c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD809924307f8a80992430 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFD809924987f8a80992498 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; - FFFD809925007f8a80992500 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; - FFFD809925687f8a80992568 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFD809925d07f8a809925d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD809926387f8a80992638 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFD809926a07f8a809926a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; - FFFD809927087f8a80992708 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD809927707f8a80992770 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD809927d87f8a809927d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD809928407f8a80992840 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFD809928a87f8a809928a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD809929107f8a80992910 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD809929787f8a80992978 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFD809929e07f8a809929e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; - FFFD80992a487f8a80992a48 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD80992ab07f8a80992ab0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; - FFFD80992b187f8a80992b18 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD80992b807f8a80992b80 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD80992be87f8a80992be8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; - FFFD80992c507f8a80992c50 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD80992cb87f8a80992cb8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; - FFFD80992d207f8a80992d20 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD80992d887f8a80992d88 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD80992df07f8a80992df0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD80992e587f8a80992e58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; - FFFD80992ec07f8a80992ec0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD80992f287f8a80992f28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; - FFFD80992f907f8a80992f90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD80992ff87f8a80992ff8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD809930607f8a80993060 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD809930c87f8a809930c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD809931307f8a80993130 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD809931987f8a80993198 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD809932007f8a80993200 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD809932687f8a80993268 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD809932d07f8a809932d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; - FFFD809933387f8a80993338 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD809933a07f8a809933a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; - FFFD809934087f8a80993408 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFD809934707f8a80993470 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD809934d87f8a809934d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD809935407f8a80993540 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; - FFFD809935a87f8a809935a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD809936107f8a80993610 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD809936787f8a80993678 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf09c707fc05bf09c70 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5bf0cc607fc05bf0cc60 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf0ccc87fc05bf0ccc8 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8104007fc05c810400 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8104687fc05c810468 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8104d07fc05c8104d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8105387fc05c810538 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8105a07fc05c8105a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8106087fc05c810608 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8106707fc05c810670 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8106d87fc05c8106d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8107407fc05c810740 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8107a87fc05c8107a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8108107fc05c810810 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8108787fc05c810878 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8108e07fc05c8108e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8109487fc05c810948 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8109b07fc05c8109b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c810a187fc05c810a18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c810a807fc05c810a80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c810ae87fc05c810ae8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c810b507fc05c810b50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c810bb87fc05c810bb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c810c207fc05c810c20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c810c887fc05c810c88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c810cf07fc05c810cf0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c810d587fc05c810d58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c810dc07fc05c810dc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c810e287fc05c810e28 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c810e907fc05c810e90 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c810ef87fc05c810ef8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c810f607fc05c810f60 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c810fc87fc05c810fc8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8110307fc05c811030 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8110987fc05c811098 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8111007fc05c811100 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8111687fc05c811168 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8111d07fc05c8111d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8112387fc05c811238 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8112a07fc05c8112a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8113087fc05c811308 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8113707fc05c811370 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8113d87fc05c8113d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8114407fc05c811440 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8114a87fc05c8114a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8115107fc05c811510 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8115787fc05c811578 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8115e07fc05c8115e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8116487fc05c811648 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8116b07fc05c8116b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8117187fc05c811718 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8117807fc05c811780 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8117e87fc05c8117e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8118507fc05c811850 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8118b87fc05c8118b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8119207fc05c811920 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8119887fc05c811988 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8119f07fc05c8119f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c811a587fc05c811a58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c811ac07fc05c811ac0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c811b287fc05c811b28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c811b907fc05c811b90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c811bf87fc05c811bf8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c811c607fc05c811c60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c811cc87fc05c811cc8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c811d307fc05c811d30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c811d987fc05c811d98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c811e007fc05c811e00 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c811e687fc05c811e68 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c811ed07fc05c811ed0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c811f387fc05c811f38 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c811fa07fc05c811fa0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8120087fc05c812008 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8120707fc05c812070 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8120d87fc05c8120d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8121407fc05c812140 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8121a87fc05c8121a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8122107fc05c812210 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8122787fc05c812278 /* 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 */ - FFF281169e707f8a81169e70 /* Resources */ = { + FFF25bf09c707fc05bf09c70 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2271,7 +2271,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC81169e707f8a81169e70 /* Frameworks */ = { + FFFC5bf09c707fc05bf09c70 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2281,21 +2281,21 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF881169e707f8a81169e70 /* Sources */ = { + FFF85bf09c707fc05bf09c70 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF80991ba87f8a80991ba8, - FFFF80991c107f8a80991c10, - FFFF80991c787f8a80991c78, - FFFF80991ce07f8a80991ce0, - FFFF80991d487f8a80991d48, - FFFF80991db07f8a80991db0, - FFFF80991e187f8a80991e18, - FFFF80991e807f8a80991e80, - FFFF80991ee87f8a80991ee8, - FFFF80991f507f8a80991f50, - FFFF80991fb87f8a80991fb8, + FFFF5c8107a87fc05c8107a8, + FFFF5c8108107fc05c810810, + FFFF5c8108787fc05c810878, + FFFF5c8108e07fc05c8108e0, + FFFF5c8109487fc05c810948, + FFFF5c8109b07fc05c8109b0, + FFFF5c810a187fc05c810a18, + FFFF5c810a807fc05c810a80, + FFFF5c810ae87fc05c810ae8, + FFFF5c810b507fc05c810b50, + FFFF5c810bb87fc05c810bb8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2304,108 +2304,108 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF4806734307f8a80673430 /* PBXTargetDependency */ = { + FFF45bf050407fc05bf05040 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA810edec07f8a810edec0 /* PxFoundation */; - targetProxy = FFF5810edec07f8a810edec0 /* PBXContainerItemProxy */; + target = FFFA5b91b1007fc05b91b100 /* PxFoundation */; + targetProxy = FFF55b91b1007fc05b91b100 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevel */ - FFFF810c4bd07f8a810c4bd0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD810c4bd07f8a810c4bd0 /* px_globals.cpp */; }; - FFFF810b88f07f8a810b88f0 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD810b88f07f8a810b88f0 /* PxsCCD.cpp */; }; - FFFF810b89587f8a810b8958 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD810b89587f8a810b8958 /* PxsContactManager.cpp */; }; - FFFF810b89c07f8a810b89c0 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD810b89c07f8a810b89c0 /* PxsContext.cpp */; }; - FFFF810b8a287f8a810b8a28 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD810b8a287f8a810b8a28 /* PxsDefaultMemoryManager.cpp */; }; - FFFF810b8a907f8a810b8a90 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD810b8a907f8a810b8a90 /* PxsIslandSim.cpp */; }; - FFFF810b8af87f8a810b8af8 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD810b8af87f8a810b8af8 /* PxsMaterialCombiner.cpp */; }; - FFFF810b8b607f8a810b8b60 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD810b8b607f8a810b8b60 /* PxsNphaseImplementationContext.cpp */; }; - FFFF810b8bc87f8a810b8bc8 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD810b8bc87f8a810b8bc8 /* PxsSimpleIslandManager.cpp */; }; - FFFF8182fc007f8a8182fc00 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD8182fc007f8a8182fc00 /* collision/PxcContact.cpp */; }; - FFFF8182fc687f8a8182fc68 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD8182fc687f8a8182fc68 /* pipeline/PxcContactCache.cpp */; }; - FFFF8182fcd07f8a8182fcd0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD8182fcd07f8a8182fcd0 /* pipeline/PxcContactMethodImpl.cpp */; }; - FFFF8182fd387f8a8182fd38 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD8182fd387f8a8182fd38 /* pipeline/PxcMaterialHeightField.cpp */; }; - FFFF8182fda07f8a8182fda0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD8182fda07f8a8182fda0 /* pipeline/PxcMaterialMesh.cpp */; }; - FFFF8182fe087f8a8182fe08 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD8182fe087f8a8182fe08 /* pipeline/PxcMaterialMethodImpl.cpp */; }; - FFFF8182fe707f8a8182fe70 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD8182fe707f8a8182fe70 /* pipeline/PxcMaterialShape.cpp */; }; - FFFF8182fed87f8a8182fed8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD8182fed87f8a8182fed8 /* pipeline/PxcNpBatch.cpp */; }; - FFFF8182ff407f8a8182ff40 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD8182ff407f8a8182ff40 /* pipeline/PxcNpCacheStreamPair.cpp */; }; - FFFF8182ffa87f8a8182ffa8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD8182ffa87f8a8182ffa8 /* pipeline/PxcNpContactPrepShared.cpp */; }; - FFFF818300107f8a81830010 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD818300107f8a81830010 /* pipeline/PxcNpMemBlockPool.cpp */; }; - FFFF818300787f8a81830078 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD818300787f8a81830078 /* pipeline/PxcNpThreadContext.cpp */; }; + FFFF5be4b8a07fc05be4b8a0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD5be4b8a07fc05be4b8a0 /* px_globals.cpp */; }; + FFFF5be4eee07fc05be4eee0 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5be4eee07fc05be4eee0 /* PxsCCD.cpp */; }; + FFFF5be4ef487fc05be4ef48 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5be4ef487fc05be4ef48 /* PxsContactManager.cpp */; }; + FFFF5be4efb07fc05be4efb0 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5be4efb07fc05be4efb0 /* PxsContext.cpp */; }; + FFFF5be4f0187fc05be4f018 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5be4f0187fc05be4f018 /* PxsDefaultMemoryManager.cpp */; }; + FFFF5be4f0807fc05be4f080 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5be4f0807fc05be4f080 /* PxsIslandSim.cpp */; }; + FFFF5be4f0e87fc05be4f0e8 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5be4f0e87fc05be4f0e8 /* PxsMaterialCombiner.cpp */; }; + FFFF5be4f1507fc05be4f150 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5be4f1507fc05be4f150 /* PxsNphaseImplementationContext.cpp */; }; + FFFF5be4f1b87fc05be4f1b8 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD5be4f1b87fc05be4f1b8 /* PxsSimpleIslandManager.cpp */; }; + FFFF5a83cc007fc05a83cc00 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a83cc007fc05a83cc00 /* collision/PxcContact.cpp */; }; + FFFF5a83cc687fc05a83cc68 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a83cc687fc05a83cc68 /* pipeline/PxcContactCache.cpp */; }; + FFFF5a83ccd07fc05a83ccd0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a83ccd07fc05a83ccd0 /* pipeline/PxcContactMethodImpl.cpp */; }; + FFFF5a83cd387fc05a83cd38 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a83cd387fc05a83cd38 /* pipeline/PxcMaterialHeightField.cpp */; }; + FFFF5a83cda07fc05a83cda0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a83cda07fc05a83cda0 /* pipeline/PxcMaterialMesh.cpp */; }; + FFFF5a83ce087fc05a83ce08 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a83ce087fc05a83ce08 /* pipeline/PxcMaterialMethodImpl.cpp */; }; + FFFF5a83ce707fc05a83ce70 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a83ce707fc05a83ce70 /* pipeline/PxcMaterialShape.cpp */; }; + FFFF5a83ced87fc05a83ced8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a83ced87fc05a83ced8 /* pipeline/PxcNpBatch.cpp */; }; + FFFF5a83cf407fc05a83cf40 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a83cf407fc05a83cf40 /* pipeline/PxcNpCacheStreamPair.cpp */; }; + FFFF5a83cfa87fc05a83cfa8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a83cfa87fc05a83cfa8 /* pipeline/PxcNpContactPrepShared.cpp */; }; + FFFF5a83d0107fc05a83d010 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a83d0107fc05a83d010 /* pipeline/PxcNpMemBlockPool.cpp */; }; + FFFF5a83d0787fc05a83d078 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD5a83d0787fc05a83d078 /* pipeline/PxcNpThreadContext.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD810c34707f8a810c3470 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD810c4bd07f8a810c4bd0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD810c6e107f8a810c6e10 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD810c6e787f8a810c6e78 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD810c6ee07f8a810c6ee0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD810c6f487f8a810c6f48 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD810c6fb07f8a810c6fb0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD810c70187f8a810c7018 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD810c70807f8a810c7080 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; - FFFD810c70e87f8a810c70e8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD810c71507f8a810c7150 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFD810b88f07f8a810b88f0 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD810b89587f8a810b8958 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD810b89c07f8a810b89c0 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD810b8a287f8a810b8a28 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD810b8a907f8a810b8a90 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD810b8af87f8a810b8af8 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD810b8b607f8a810b8b60 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD810b8bc87f8a810b8bc8 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818312007f8a81831200 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFD818312687f8a81831268 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFD818312d07f8a818312d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD818313387f8a81831338 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; - FFFD818313a07f8a818313a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD818314087f8a81831408 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD818314707f8a81831470 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD818314d87f8a818314d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; - FFFD818315407f8a81831540 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD818315a87f8a818315a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD818316107f8a81831610 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; - FFFD818316787f8a81831678 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; - FFFD818316e07f8a818316e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD818317487f8a81831748 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD818317b07f8a818317b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD818318187f8a81831818 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD818318807f8a81831880 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD818318e87f8a818318e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFD818319507f8a81831950 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD818319b87f8a818319b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD8182fc007f8a8182fc00 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8182fc687f8a8182fc68 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8182fcd07f8a8182fcd0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8182fd387f8a8182fd38 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8182fda07f8a8182fda0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8182fe087f8a8182fe08 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8182fe707f8a8182fe70 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8182fed87f8a8182fed8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8182ff407f8a8182ff40 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8182ffa87f8a8182ffa8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818300107f8a81830010 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818300787f8a81830078 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD818304007f8a81830400 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD818304687f8a81830468 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD818304d07f8a818304d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD818305387f8a81830538 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD818305a07f8a818305a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD818306087f8a81830608 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; - FFFD818306707f8a81830670 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD818306d87f8a818306d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD818307407f8a81830740 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD818307a87f8a818307a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD818308107f8a81830810 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD818308787f8a81830878 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; - FFFD818308e07f8a818308e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD818309487f8a81830948 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD818309b07f8a818309b0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5be3ff207fc05be3ff20 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5be4b8a07fc05be4b8a0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5be4ddd07fc05be4ddd0 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5be4de387fc05be4de38 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5be4dea07fc05be4dea0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD5be4df087fc05be4df08 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5be4df707fc05be4df70 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5be4dfd87fc05be4dfd8 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD5be4e0407fc05be4e040 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; + FFFD5be4e0a87fc05be4e0a8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5be4e1107fc05be4e110 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFD5be4eee07fc05be4eee0 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5be4ef487fc05be4ef48 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5be4efb07fc05be4efb0 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5be4f0187fc05be4f018 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5be4f0807fc05be4f080 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5be4f0e87fc05be4f0e8 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5be4f1507fc05be4f150 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5be4f1b87fc05be4f1b8 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e2007fc05a83e200 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e2687fc05a83e268 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e2d07fc05a83e2d0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e3387fc05a83e338 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e3a07fc05a83e3a0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e4087fc05a83e408 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e4707fc05a83e470 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e4d87fc05a83e4d8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e5407fc05a83e540 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e5a87fc05a83e5a8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e6107fc05a83e610 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e6787fc05a83e678 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e6e07fc05a83e6e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e7487fc05a83e748 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e7b07fc05a83e7b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e8187fc05a83e818 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e8807fc05a83e880 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e8e87fc05a83e8e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e9507fc05a83e950 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83e9b87fc05a83e9b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83cc007fc05a83cc00 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a83cc687fc05a83cc68 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a83ccd07fc05a83ccd0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a83cd387fc05a83cd38 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a83cda07fc05a83cda0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a83ce087fc05a83ce08 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a83ce707fc05a83ce70 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a83ced87fc05a83ced8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a83cf407fc05a83cf40 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a83cfa87fc05a83cfa8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d0107fc05a83d010 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d0787fc05a83d078 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d4007fc05a83d400 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d4687fc05a83d468 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d4d07fc05a83d4d0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d5387fc05a83d538 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d5a07fc05a83d5a0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d6087fc05a83d608 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d6707fc05a83d670 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d6d87fc05a83d6d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d7407fc05a83d740 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d7a87fc05a83d7a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d8107fc05a83d810 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d8787fc05a83d878 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d8e07fc05a83d8e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d9487fc05a83d948 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83d9b07fc05a83d9b0 /* 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 */ - FFF2810c34707f8a810c3470 /* Resources */ = { + FFF25be3ff207fc05be3ff20 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2415,7 +2415,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC810c34707f8a810c3470 /* Frameworks */ = { + FFFC5be3ff207fc05be3ff20 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2425,31 +2425,31 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8810c34707f8a810c3470 /* Sources */ = { + FFF85be3ff207fc05be3ff20 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF810c4bd07f8a810c4bd0, - FFFF810b88f07f8a810b88f0, - FFFF810b89587f8a810b8958, - FFFF810b89c07f8a810b89c0, - FFFF810b8a287f8a810b8a28, - FFFF810b8a907f8a810b8a90, - FFFF810b8af87f8a810b8af8, - FFFF810b8b607f8a810b8b60, - FFFF810b8bc87f8a810b8bc8, - FFFF8182fc007f8a8182fc00, - FFFF8182fc687f8a8182fc68, - FFFF8182fcd07f8a8182fcd0, - FFFF8182fd387f8a8182fd38, - FFFF8182fda07f8a8182fda0, - FFFF8182fe087f8a8182fe08, - FFFF8182fe707f8a8182fe70, - FFFF8182fed87f8a8182fed8, - FFFF8182ff407f8a8182ff40, - FFFF8182ffa87f8a8182ffa8, - FFFF818300107f8a81830010, - FFFF818300787f8a81830078, + FFFF5be4b8a07fc05be4b8a0, + FFFF5be4eee07fc05be4eee0, + FFFF5be4ef487fc05be4ef48, + FFFF5be4efb07fc05be4efb0, + FFFF5be4f0187fc05be4f018, + FFFF5be4f0807fc05be4f080, + FFFF5be4f0e87fc05be4f0e8, + FFFF5be4f1507fc05be4f150, + FFFF5be4f1b87fc05be4f1b8, + FFFF5a83cc007fc05a83cc00, + FFFF5a83cc687fc05a83cc68, + FFFF5a83ccd07fc05a83ccd0, + FFFF5a83cd387fc05a83cd38, + FFFF5a83cda07fc05a83cda0, + FFFF5a83ce087fc05a83ce08, + FFFF5a83ce707fc05a83ce70, + FFFF5a83ced87fc05a83ced8, + FFFF5a83cf407fc05a83cf40, + FFFF5a83cfa87fc05a83cfa8, + FFFF5a83d0107fc05a83d010, + FFFF5a83d0787fc05a83d078, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2461,38 +2461,38 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelAABB */ - FFFF809984707f8a80998470 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD809984707f8a80998470 /* BpBroadPhase.cpp */; }; - FFFF809984d87f8a809984d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD809984d87f8a809984d8 /* BpBroadPhaseMBP.cpp */; }; - FFFF809985407f8a80998540 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD809985407f8a80998540 /* BpBroadPhaseSap.cpp */; }; - FFFF809985a87f8a809985a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD809985a87f8a809985a8 /* BpBroadPhaseSapAux.cpp */; }; - FFFF809986107f8a80998610 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD809986107f8a80998610 /* BpMBPTasks.cpp */; }; - FFFF809986787f8a80998678 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD809986787f8a80998678 /* BpSAPTasks.cpp */; }; - FFFF809986e07f8a809986e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD809986e07f8a809986e0 /* BpSimpleAABBManager.cpp */; }; + FFFF5c8176707fc05c817670 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8176707fc05c817670 /* BpBroadPhase.cpp */; }; + FFFF5c8176d87fc05c8176d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8176d87fc05c8176d8 /* BpBroadPhaseMBP.cpp */; }; + FFFF5c8177407fc05c817740 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8177407fc05c817740 /* BpBroadPhaseSap.cpp */; }; + FFFF5c8177a87fc05c8177a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8177a87fc05c8177a8 /* BpBroadPhaseSapAux.cpp */; }; + FFFF5c8178107fc05c817810 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8178107fc05c817810 /* BpMBPTasks.cpp */; }; + FFFF5c8178787fc05c817878 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8178787fc05c817878 /* BpSAPTasks.cpp */; }; + FFFF5c8178e07fc05c8178e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c8178e07fc05c8178e0 /* BpSimpleAABBManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD81149d807f8a81149d80 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD811598e07f8a811598e0 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD811599487f8a81159948 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFD811599b07f8a811599b0 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFD81159a187f8a81159a18 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD809982007f8a80998200 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; - FFFD809982687f8a80998268 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD809982d07f8a809982d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; - FFFD809983387f8a80998338 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; - FFFD809983a07f8a809983a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD809984087f8a80998408 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD809984707f8a80998470 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD809984d87f8a809984d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD809985407f8a80998540 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD809985a87f8a809985a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD809986107f8a80998610 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD809986787f8a80998678 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD809986e07f8a809986e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5bf207407fc05bf20740 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5bf245407fc05bf24540 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf245a87fc05bf245a8 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf246107fc05bf24610 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf246787fc05bf24678 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8174007fc05c817400 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8174687fc05c817468 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8174d07fc05c8174d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8175387fc05c817538 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8175a07fc05c8175a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8176087fc05c817608 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8176707fc05c817670 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8176d87fc05c8176d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8177407fc05c817740 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8177a87fc05c8177a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8178107fc05c817810 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8178787fc05c817878 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8178e07fc05c8178e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF281149d807f8a81149d80 /* Resources */ = { + FFF25bf207407fc05bf20740 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2502,7 +2502,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC81149d807f8a81149d80 /* Frameworks */ = { + FFFC5bf207407fc05bf20740 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2512,17 +2512,17 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF881149d807f8a81149d80 /* Sources */ = { + FFF85bf207407fc05bf20740 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF809984707f8a80998470, - FFFF809984d87f8a809984d8, - FFFF809985407f8a80998540, - FFFF809985a87f8a809985a8, - FFFF809986107f8a80998610, - FFFF809986787f8a80998678, - FFFF809986e07f8a809986e0, + FFFF5c8176707fc05c817670, + FFFF5c8176d87fc05c8176d8, + FFFF5c8177407fc05c817740, + FFFF5c8177a87fc05c8177a8, + FFFF5c8178107fc05c817810, + FFFF5c8178787fc05c817878, + FFFF5c8178e07fc05c8178e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2534,105 +2534,105 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelDynamics */ - FFFF82018c007f8a82018c00 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD82018c007f8a82018c00 /* DyArticulation.cpp */; }; - FFFF82018c687f8a82018c68 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD82018c687f8a82018c68 /* DyArticulationContactPrep.cpp */; }; - FFFF82018cd07f8a82018cd0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD82018cd07f8a82018cd0 /* DyArticulationContactPrepPF.cpp */; }; - FFFF82018d387f8a82018d38 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD82018d387f8a82018d38 /* DyArticulationHelper.cpp */; }; - FFFF82018da07f8a82018da0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD82018da07f8a82018da0 /* DyArticulationSIMD.cpp */; }; - FFFF82018e087f8a82018e08 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD82018e087f8a82018e08 /* DyArticulationScalar.cpp */; }; - FFFF82018e707f8a82018e70 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD82018e707f8a82018e70 /* DyConstraintPartition.cpp */; }; - FFFF82018ed87f8a82018ed8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD82018ed87f8a82018ed8 /* DyConstraintSetup.cpp */; }; - FFFF82018f407f8a82018f40 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD82018f407f8a82018f40 /* DyConstraintSetupBlock.cpp */; }; - FFFF82018fa87f8a82018fa8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD82018fa87f8a82018fa8 /* DyContactPrep.cpp */; }; - FFFF820190107f8a82019010 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD820190107f8a82019010 /* DyContactPrep4.cpp */; }; - FFFF820190787f8a82019078 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD820190787f8a82019078 /* DyContactPrep4PF.cpp */; }; - FFFF820190e07f8a820190e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD820190e07f8a820190e0 /* DyContactPrepPF.cpp */; }; - FFFF820191487f8a82019148 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD820191487f8a82019148 /* DyDynamics.cpp */; }; - FFFF820191b07f8a820191b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD820191b07f8a820191b0 /* DyFrictionCorrelation.cpp */; }; - FFFF820192187f8a82019218 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD820192187f8a82019218 /* DyRigidBodyToSolverBody.cpp */; }; - FFFF820192807f8a82019280 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD820192807f8a82019280 /* DySolverConstraints.cpp */; }; - FFFF820192e87f8a820192e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD820192e87f8a820192e8 /* DySolverConstraintsBlock.cpp */; }; - FFFF820193507f8a82019350 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD820193507f8a82019350 /* DySolverControl.cpp */; }; - FFFF820193b87f8a820193b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD820193b87f8a820193b8 /* DySolverControlPF.cpp */; }; - FFFF820194207f8a82019420 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD820194207f8a82019420 /* DySolverPFConstraints.cpp */; }; - FFFF820194887f8a82019488 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD820194887f8a82019488 /* DySolverPFConstraintsBlock.cpp */; }; - FFFF820194f07f8a820194f0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD820194f07f8a820194f0 /* DyThreadContext.cpp */; }; - FFFF820195587f8a82019558 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD820195587f8a82019558 /* DyThresholdTable.cpp */; }; + FFFF5c8206007fc05c820600 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c8206007fc05c820600 /* DyArticulation.cpp */; }; + FFFF5c8206687fc05c820668 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c8206687fc05c820668 /* DyArticulationContactPrep.cpp */; }; + FFFF5c8206d07fc05c8206d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c8206d07fc05c8206d0 /* DyArticulationContactPrepPF.cpp */; }; + FFFF5c8207387fc05c820738 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c8207387fc05c820738 /* DyArticulationHelper.cpp */; }; + FFFF5c8207a07fc05c8207a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c8207a07fc05c8207a0 /* DyArticulationSIMD.cpp */; }; + FFFF5c8208087fc05c820808 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c8208087fc05c820808 /* DyArticulationScalar.cpp */; }; + FFFF5c8208707fc05c820870 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c8208707fc05c820870 /* DyConstraintPartition.cpp */; }; + FFFF5c8208d87fc05c8208d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c8208d87fc05c8208d8 /* DyConstraintSetup.cpp */; }; + FFFF5c8209407fc05c820940 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c8209407fc05c820940 /* DyConstraintSetupBlock.cpp */; }; + FFFF5c8209a87fc05c8209a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c8209a87fc05c8209a8 /* DyContactPrep.cpp */; }; + FFFF5c820a107fc05c820a10 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c820a107fc05c820a10 /* DyContactPrep4.cpp */; }; + FFFF5c820a787fc05c820a78 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c820a787fc05c820a78 /* DyContactPrep4PF.cpp */; }; + FFFF5c820ae07fc05c820ae0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c820ae07fc05c820ae0 /* DyContactPrepPF.cpp */; }; + FFFF5c820b487fc05c820b48 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c820b487fc05c820b48 /* DyDynamics.cpp */; }; + FFFF5c820bb07fc05c820bb0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c820bb07fc05c820bb0 /* DyFrictionCorrelation.cpp */; }; + FFFF5c820c187fc05c820c18 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c820c187fc05c820c18 /* DyRigidBodyToSolverBody.cpp */; }; + FFFF5c820c807fc05c820c80 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c820c807fc05c820c80 /* DySolverConstraints.cpp */; }; + FFFF5c820ce87fc05c820ce8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c820ce87fc05c820ce8 /* DySolverConstraintsBlock.cpp */; }; + FFFF5c820d507fc05c820d50 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c820d507fc05c820d50 /* DySolverControl.cpp */; }; + FFFF5c820db87fc05c820db8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c820db87fc05c820db8 /* DySolverControlPF.cpp */; }; + FFFF5c820e207fc05c820e20 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c820e207fc05c820e20 /* DySolverPFConstraints.cpp */; }; + FFFF5c820e887fc05c820e88 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c820e887fc05c820e88 /* DySolverPFConstraintsBlock.cpp */; }; + FFFF5c820ef07fc05c820ef0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c820ef07fc05c820ef0 /* DyThreadContext.cpp */; }; + FFFF5c820f587fc05c820f58 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD5c820f587fc05c820f58 /* DyThresholdTable.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD81432a807f8a81432a80 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD82018c007f8a82018c00 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82018c687f8a82018c68 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82018cd07f8a82018cd0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82018d387f8a82018d38 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82018da07f8a82018da0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82018e087f8a82018e08 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82018e707f8a82018e70 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82018ed87f8a82018ed8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82018f407f8a82018f40 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82018fa87f8a82018fa8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820190107f8a82019010 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820190787f8a82019078 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820190e07f8a820190e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820191487f8a82019148 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820191b07f8a820191b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820192187f8a82019218 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820192807f8a82019280 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820192e87f8a820192e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820193507f8a82019350 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820193b87f8a820193b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820194207f8a82019420 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820194887f8a82019488 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820194f07f8a820194f0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD820195587f8a82019558 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD8143afc07f8a8143afc0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD8143b0287f8a8143b028 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD8143b0907f8a8143b090 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; - FFFD8143b0f87f8a8143b0f8 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD8143b1607f8a8143b160 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD8143b1c87f8a8143b1c8 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD82019e007f8a82019e00 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD82019e687f8a82019e68 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; - FFFD82019ed07f8a82019ed0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD82019f387f8a82019f38 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; - FFFD82019fa07f8a82019fa0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a0087f8a8201a008 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a0707f8a8201a070 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a0d87f8a8201a0d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a1407f8a8201a140 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a1a87f8a8201a1a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a2107f8a8201a210 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a2787f8a8201a278 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a2e07f8a8201a2e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a3487f8a8201a348 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a3b07f8a8201a3b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a4187f8a8201a418 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a4807f8a8201a480 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a4e87f8a8201a4e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a5507f8a8201a550 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a5b87f8a8201a5b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a6207f8a8201a620 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a6887f8a8201a688 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a6f07f8a8201a6f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a7587f8a8201a758 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a7c07f8a8201a7c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a8287f8a8201a828 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a8907f8a8201a890 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a8f87f8a8201a8f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a9607f8a8201a960 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201a9c87f8a8201a9c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201aa307f8a8201aa30 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201aa987f8a8201aa98 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201ab007f8a8201ab00 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201ab687f8a8201ab68 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201abd07f8a8201abd0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201ac387f8a8201ac38 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; - FFFD8201aca07f8a8201aca0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf4ac107fc05bf4ac10 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5c8206007fc05c820600 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8206687fc05c820668 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8206d07fc05c8206d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8207387fc05c820738 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8207a07fc05c8207a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8208087fc05c820808 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8208707fc05c820870 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8208d87fc05c8208d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8209407fc05c820940 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c8209a87fc05c8209a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c820a107fc05c820a10 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c820a787fc05c820a78 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c820ae07fc05c820ae0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c820b487fc05c820b48 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c820bb07fc05c820bb0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c820c187fc05c820c18 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c820c807fc05c820c80 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c820ce87fc05c820ce8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c820d507fc05c820d50 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c820db87fc05c820db8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c820e207fc05c820e20 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c820e887fc05c820e88 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c820ef07fc05c820ef0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c820f587fc05c820f58 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5bf520a07fc05bf520a0 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf521087fc05bf52108 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf521707fc05bf52170 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf521d87fc05bf521d8 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf522407fc05bf52240 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf522a87fc05bf522a8 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c821e007fc05c821e00 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c821e687fc05c821e68 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c821ed07fc05c821ed0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c821f387fc05c821f38 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c821fa07fc05c821fa0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8220087fc05c822008 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8220707fc05c822070 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8220d87fc05c8220d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8221407fc05c822140 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8221a87fc05c8221a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8222107fc05c822210 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8222787fc05c822278 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8222e07fc05c8222e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8223487fc05c822348 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8223b07fc05c8223b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8224187fc05c822418 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8224807fc05c822480 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8224e87fc05c8224e8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8225507fc05c822550 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8225b87fc05c8225b8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8226207fc05c822620 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8226887fc05c822688 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8226f07fc05c8226f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8227587fc05c822758 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8227c07fc05c8227c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8228287fc05c822828 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8228907fc05c822890 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8228f87fc05c8228f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8229607fc05c822960 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c8229c87fc05c8229c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c822a307fc05c822a30 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c822a987fc05c822a98 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c822b007fc05c822b00 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c822b687fc05c822b68 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c822bd07fc05c822bd0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c822c387fc05c822c38 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c822ca07fc05c822ca0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF281432a807f8a81432a80 /* Resources */ = { + FFF25bf4ac107fc05bf4ac10 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2642,7 +2642,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC81432a807f8a81432a80 /* Frameworks */ = { + FFFC5bf4ac107fc05bf4ac10 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2652,34 +2652,34 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF881432a807f8a81432a80 /* Sources */ = { + FFF85bf4ac107fc05bf4ac10 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF82018c007f8a82018c00, - FFFF82018c687f8a82018c68, - FFFF82018cd07f8a82018cd0, - FFFF82018d387f8a82018d38, - FFFF82018da07f8a82018da0, - FFFF82018e087f8a82018e08, - FFFF82018e707f8a82018e70, - FFFF82018ed87f8a82018ed8, - FFFF82018f407f8a82018f40, - FFFF82018fa87f8a82018fa8, - FFFF820190107f8a82019010, - FFFF820190787f8a82019078, - FFFF820190e07f8a820190e0, - FFFF820191487f8a82019148, - FFFF820191b07f8a820191b0, - FFFF820192187f8a82019218, - FFFF820192807f8a82019280, - FFFF820192e87f8a820192e8, - FFFF820193507f8a82019350, - FFFF820193b87f8a820193b8, - FFFF820194207f8a82019420, - FFFF820194887f8a82019488, - FFFF820194f07f8a820194f0, - FFFF820195587f8a82019558, + FFFF5c8206007fc05c820600, + FFFF5c8206687fc05c820668, + FFFF5c8206d07fc05c8206d0, + FFFF5c8207387fc05c820738, + FFFF5c8207a07fc05c8207a0, + FFFF5c8208087fc05c820808, + FFFF5c8208707fc05c820870, + FFFF5c8208d87fc05c8208d8, + FFFF5c8209407fc05c820940, + FFFF5c8209a87fc05c8209a8, + FFFF5c820a107fc05c820a10, + FFFF5c820a787fc05c820a78, + FFFF5c820ae07fc05c820ae0, + FFFF5c820b487fc05c820b48, + FFFF5c820bb07fc05c820bb0, + FFFF5c820c187fc05c820c18, + FFFF5c820c807fc05c820c80, + FFFF5c820ce87fc05c820ce8, + FFFF5c820d507fc05c820d50, + FFFF5c820db87fc05c820db8, + FFFF5c820e207fc05c820e20, + FFFF5c820e887fc05c820e88, + FFFF5c820ef07fc05c820ef0, + FFFF5c820f587fc05c820f58, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2691,73 +2691,73 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelCloth */ - FFFF828286907f8a82828690 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828286907f8a82828690 /* Allocator.cpp */; }; - FFFF828286f87f8a828286f8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828286f87f8a828286f8 /* Factory.cpp */; }; - FFFF828287607f8a82828760 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828287607f8a82828760 /* PhaseConfig.cpp */; }; - FFFF828287c87f8a828287c8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828287c87f8a828287c8 /* SwCloth.cpp */; }; - FFFF828288307f8a82828830 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828288307f8a82828830 /* SwClothData.cpp */; }; - FFFF828288987f8a82828898 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828288987f8a82828898 /* SwCollision.cpp */; }; - FFFF828289007f8a82828900 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828289007f8a82828900 /* SwFabric.cpp */; }; - FFFF828289687f8a82828968 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828289687f8a82828968 /* SwFactory.cpp */; }; - FFFF828289d07f8a828289d0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828289d07f8a828289d0 /* SwInterCollision.cpp */; }; - FFFF82828a387f8a82828a38 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82828a387f8a82828a38 /* SwSelfCollision.cpp */; }; - FFFF82828aa07f8a82828aa0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82828aa07f8a82828aa0 /* SwSolver.cpp */; }; - FFFF82828b087f8a82828b08 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82828b087f8a82828b08 /* SwSolverKernel.cpp */; }; - FFFF82828b707f8a82828b70 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82828b707f8a82828b70 /* TripletScheduler.cpp */; }; + FFFF5c01ac907fc05c01ac90 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c01ac907fc05c01ac90 /* Allocator.cpp */; }; + FFFF5c01acf87fc05c01acf8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c01acf87fc05c01acf8 /* Factory.cpp */; }; + FFFF5c01ad607fc05c01ad60 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c01ad607fc05c01ad60 /* PhaseConfig.cpp */; }; + FFFF5c01adc87fc05c01adc8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c01adc87fc05c01adc8 /* SwCloth.cpp */; }; + FFFF5c01ae307fc05c01ae30 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c01ae307fc05c01ae30 /* SwClothData.cpp */; }; + FFFF5c01ae987fc05c01ae98 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c01ae987fc05c01ae98 /* SwCollision.cpp */; }; + FFFF5c01af007fc05c01af00 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c01af007fc05c01af00 /* SwFabric.cpp */; }; + FFFF5c01af687fc05c01af68 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c01af687fc05c01af68 /* SwFactory.cpp */; }; + FFFF5c01afd07fc05c01afd0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c01afd07fc05c01afd0 /* SwInterCollision.cpp */; }; + FFFF5c01b0387fc05c01b038 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c01b0387fc05c01b038 /* SwSelfCollision.cpp */; }; + FFFF5c01b0a07fc05c01b0a0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c01b0a07fc05c01b0a0 /* SwSolver.cpp */; }; + FFFF5c01b1087fc05c01b108 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c01b1087fc05c01b108 /* SwSolverKernel.cpp */; }; + FFFF5c01b1707fc05c01b170 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5c01b1707fc05c01b170 /* TripletScheduler.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD816f83807f8a816f8380 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD8170b1607f8a8170b160 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD8170b1c87f8a8170b1c8 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD8170b2307f8a8170b230 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; - FFFD8170b2987f8a8170b298 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD8170b3007f8a8170b300 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; - FFFD8170b3687f8a8170b368 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; - FFFD8170b3d07f8a8170b3d0 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; - FFFD82827c007f8a82827c00 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD82827c687f8a82827c68 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; - FFFD82827cd07f8a82827cd0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD82827d387f8a82827d38 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD82827da07f8a82827da0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD82827e087f8a82827e08 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD82827e707f8a82827e70 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; - FFFD82827ed87f8a82827ed8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; - FFFD82827f407f8a82827f40 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; - FFFD82827fa87f8a82827fa8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; - FFFD828280107f8a82828010 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; }; - FFFD828280787f8a82828078 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; }; - FFFD828280e07f8a828280e0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD828281487f8a82828148 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD828281b07f8a828281b0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD828282187f8a82828218 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; - FFFD828282807f8a82828280 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD828282e87f8a828282e8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD828283507f8a82828350 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD828283b87f8a828283b8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD828284207f8a82828420 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD828284887f8a82828488 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD828284f07f8a828284f0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; - FFFD828285587f8a82828558 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; - FFFD828285c07f8a828285c0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; - FFFD828286287f8a82828628 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; - FFFD828286907f8a82828690 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828286f87f8a828286f8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828287607f8a82828760 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828287c87f8a828287c8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828288307f8a82828830 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828288987f8a82828898 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828289007f8a82828900 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828289687f8a82828968 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828289d07f8a828289d0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82828a387f8a82828a38 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82828aa07f8a82828aa0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82828b087f8a82828b08 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82828b707f8a82828b70 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5bc335c07fc05bc335c0 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5bc36ff07fc05bc36ff0 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bc370587fc05bc37058 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bc370c07fc05bc370c0 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bc371287fc05bc37128 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bc371907fc05bc37190 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bc371f87fc05bc371f8 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bc372607fc05bc37260 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a2007fc05c01a200 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a2687fc05c01a268 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a2d07fc05c01a2d0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a3387fc05c01a338 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a3a07fc05c01a3a0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a4087fc05c01a408 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a4707fc05c01a470 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a4d87fc05c01a4d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a5407fc05c01a540 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a5a87fc05c01a5a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a6107fc05c01a610 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a6787fc05c01a678 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a6e07fc05c01a6e0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a7487fc05c01a748 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a7b07fc05c01a7b0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a8187fc05c01a818 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a8807fc05c01a880 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a8e87fc05c01a8e8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a9507fc05c01a950 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01a9b87fc05c01a9b8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01aa207fc05c01aa20 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01aa887fc05c01aa88 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01aaf07fc05c01aaf0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01ab587fc05c01ab58 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01abc07fc05c01abc0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01ac287fc05c01ac28 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; + FFFD5c01ac907fc05c01ac90 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c01acf87fc05c01acf8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c01ad607fc05c01ad60 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c01adc87fc05c01adc8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c01ae307fc05c01ae30 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c01ae987fc05c01ae98 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c01af007fc05c01af00 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c01af687fc05c01af68 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c01afd07fc05c01afd0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c01b0387fc05c01b038 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c01b0a07fc05c01b0a0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c01b1087fc05c01b108 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5c01b1707fc05c01b170 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF2816f83807f8a816f8380 /* Resources */ = { + FFF25bc335c07fc05bc335c0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2767,7 +2767,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC816f83807f8a816f8380 /* Frameworks */ = { + FFFC5bc335c07fc05bc335c0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2777,23 +2777,23 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8816f83807f8a816f8380 /* Sources */ = { + FFF85bc335c07fc05bc335c0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF828286907f8a82828690, - FFFF828286f87f8a828286f8, - FFFF828287607f8a82828760, - FFFF828287c87f8a828287c8, - FFFF828288307f8a82828830, - FFFF828288987f8a82828898, - FFFF828289007f8a82828900, - FFFF828289687f8a82828968, - FFFF828289d07f8a828289d0, - FFFF82828a387f8a82828a38, - FFFF82828aa07f8a82828aa0, - FFFF82828b087f8a82828b08, - FFFF82828b707f8a82828b70, + FFFF5c01ac907fc05c01ac90, + FFFF5c01acf87fc05c01acf8, + FFFF5c01ad607fc05c01ad60, + FFFF5c01adc87fc05c01adc8, + FFFF5c01ae307fc05c01ae30, + FFFF5c01ae987fc05c01ae98, + FFFF5c01af007fc05c01af00, + FFFF5c01af687fc05c01af68, + FFFF5c01afd07fc05c01afd0, + FFFF5c01b0387fc05c01b038, + FFFF5c01b0a07fc05c01b0a0, + FFFF5c01b1087fc05c01b108, + FFFF5c01b1707fc05c01b170, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2805,79 +2805,79 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelParticles */ - FFFF828325587f8a82832558 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828325587f8a82832558 /* PtBatcher.cpp */; }; - FFFF828325c07f8a828325c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828325c07f8a828325c0 /* PtBodyTransformVault.cpp */; }; - FFFF828326287f8a82832628 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828326287f8a82832628 /* PtCollision.cpp */; }; - FFFF828326907f8a82832690 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828326907f8a82832690 /* PtCollisionBox.cpp */; }; - FFFF828326f87f8a828326f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828326f87f8a828326f8 /* PtCollisionCapsule.cpp */; }; - FFFF828327607f8a82832760 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828327607f8a82832760 /* PtCollisionConvex.cpp */; }; - FFFF828327c87f8a828327c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828327c87f8a828327c8 /* PtCollisionMesh.cpp */; }; - FFFF828328307f8a82832830 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828328307f8a82832830 /* PtCollisionPlane.cpp */; }; - FFFF828328987f8a82832898 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828328987f8a82832898 /* PtCollisionSphere.cpp */; }; - FFFF828329007f8a82832900 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828329007f8a82832900 /* PtContextCpu.cpp */; }; - FFFF828329687f8a82832968 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828329687f8a82832968 /* PtDynamics.cpp */; }; - FFFF828329d07f8a828329d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD828329d07f8a828329d0 /* PtParticleData.cpp */; }; - FFFF82832a387f8a82832a38 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82832a387f8a82832a38 /* PtParticleShapeCpu.cpp */; }; - FFFF82832aa07f8a82832aa0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82832aa07f8a82832aa0 /* PtParticleSystemSimCpu.cpp */; }; - FFFF82832b087f8a82832b08 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82832b087f8a82832b08 /* PtSpatialHash.cpp */; }; - FFFF82832b707f8a82832b70 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD82832b707f8a82832b70 /* PtSpatialLocalHash.cpp */; }; + FFFF5a8471587fc05a847158 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8471587fc05a847158 /* PtBatcher.cpp */; }; + FFFF5a8471c07fc05a8471c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8471c07fc05a8471c0 /* PtBodyTransformVault.cpp */; }; + FFFF5a8472287fc05a847228 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8472287fc05a847228 /* PtCollision.cpp */; }; + FFFF5a8472907fc05a847290 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8472907fc05a847290 /* PtCollisionBox.cpp */; }; + FFFF5a8472f87fc05a8472f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8472f87fc05a8472f8 /* PtCollisionCapsule.cpp */; }; + FFFF5a8473607fc05a847360 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8473607fc05a847360 /* PtCollisionConvex.cpp */; }; + FFFF5a8473c87fc05a8473c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8473c87fc05a8473c8 /* PtCollisionMesh.cpp */; }; + FFFF5a8474307fc05a847430 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8474307fc05a847430 /* PtCollisionPlane.cpp */; }; + FFFF5a8474987fc05a847498 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8474987fc05a847498 /* PtCollisionSphere.cpp */; }; + FFFF5a8475007fc05a847500 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8475007fc05a847500 /* PtContextCpu.cpp */; }; + FFFF5a8475687fc05a847568 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8475687fc05a847568 /* PtDynamics.cpp */; }; + FFFF5a8475d07fc05a8475d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8475d07fc05a8475d0 /* PtParticleData.cpp */; }; + FFFF5a8476387fc05a847638 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8476387fc05a847638 /* PtParticleShapeCpu.cpp */; }; + FFFF5a8476a07fc05a8476a0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8476a07fc05a8476a0 /* PtParticleSystemSimCpu.cpp */; }; + FFFF5a8477087fc05a847708 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8477087fc05a847708 /* PtSpatialHash.cpp */; }; + FFFF5a8477707fc05a847770 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5a8477707fc05a847770 /* PtSpatialLocalHash.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD8172b0d07f8a8172b0d0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD82825c007f8a82825c00 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; - FFFD82825c687f8a82825c68 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD82825cd07f8a82825cd0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; - FFFD82825d387f8a82825d38 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; - FFFD82825da07f8a82825da0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD82825e087f8a82825e08 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD82825e707f8a82825e70 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD82825ed87f8a82825ed8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD82825f407f8a82825f40 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD82825fa87f8a82825fa8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD82831c007f8a82831c00 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD82831c687f8a82831c68 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD82831cd07f8a82831cd0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFD82831d387f8a82831d38 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD82831da07f8a82831da0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; - FFFD82831e087f8a82831e08 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFD82831e707f8a82831e70 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD82831ed87f8a82831ed8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD82831f407f8a82831f40 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD82831fa87f8a82831fa8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD828320107f8a82832010 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD828320787f8a82832078 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; - FFFD828320e07f8a828320e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFD828321487f8a82832148 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; - FFFD828321b07f8a828321b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD828322187f8a82832218 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; - FFFD828322807f8a82832280 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; - FFFD828322e87f8a828322e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD828323507f8a82832350 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD828323b87f8a828323b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD828324207f8a82832420 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; - FFFD828324887f8a82832488 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD828324f07f8a828324f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; - FFFD828325587f8a82832558 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828325c07f8a828325c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828326287f8a82832628 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828326907f8a82832690 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828326f87f8a828326f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828327607f8a82832760 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828327c87f8a828327c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828328307f8a82832830 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828328987f8a82832898 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828329007f8a82832900 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828329687f8a82832968 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD828329d07f8a828329d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82832a387f8a82832a38 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82832aa07f8a82832aa0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82832b087f8a82832b08 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD82832b707f8a82832b70 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5be6a2a07fc05be6a2a0 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5a83dc007fc05a83dc00 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83dc687fc05a83dc68 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83dcd07fc05a83dcd0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83dd387fc05a83dd38 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83dda07fc05a83dda0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83de087fc05a83de08 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83de707fc05a83de70 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83ded87fc05a83ded8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83df407fc05a83df40 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a83dfa87fc05a83dfa8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8468007fc05a846800 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8468687fc05a846868 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8468d07fc05a8468d0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8469387fc05a846938 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8469a07fc05a8469a0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a846a087fc05a846a08 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a846a707fc05a846a70 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a846ad87fc05a846ad8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a846b407fc05a846b40 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a846ba87fc05a846ba8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a846c107fc05a846c10 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a846c787fc05a846c78 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a846ce07fc05a846ce0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a846d487fc05a846d48 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a846db07fc05a846db0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a846e187fc05a846e18 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a846e807fc05a846e80 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a846ee87fc05a846ee8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a846f507fc05a846f50 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a846fb87fc05a846fb8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8470207fc05a847020 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8470887fc05a847088 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8470f07fc05a8470f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; + FFFD5a8471587fc05a847158 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8471c07fc05a8471c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8472287fc05a847228 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8472907fc05a847290 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8472f87fc05a8472f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8473607fc05a847360 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8473c87fc05a8473c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8474307fc05a847430 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8474987fc05a847498 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8475007fc05a847500 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8475687fc05a847568 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8475d07fc05a8475d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8476387fc05a847638 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8476a07fc05a8476a0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8477087fc05a847708 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5a8477707fc05a847770 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF28172b0d07f8a8172b0d0 /* Resources */ = { + FFF25be6a2a07fc05be6a2a0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2887,7 +2887,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC8172b0d07f8a8172b0d0 /* Frameworks */ = { + FFFC5be6a2a07fc05be6a2a0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2897,26 +2897,26 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF88172b0d07f8a8172b0d0 /* Sources */ = { + FFF85be6a2a07fc05be6a2a0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF828325587f8a82832558, - FFFF828325c07f8a828325c0, - FFFF828326287f8a82832628, - FFFF828326907f8a82832690, - FFFF828326f87f8a828326f8, - FFFF828327607f8a82832760, - FFFF828327c87f8a828327c8, - FFFF828328307f8a82832830, - FFFF828328987f8a82832898, - FFFF828329007f8a82832900, - FFFF828329687f8a82832968, - FFFF828329d07f8a828329d0, - FFFF82832a387f8a82832a38, - FFFF82832aa07f8a82832aa0, - FFFF82832b087f8a82832b08, - FFFF82832b707f8a82832b70, + FFFF5a8471587fc05a847158, + FFFF5a8471c07fc05a8471c0, + FFFF5a8472287fc05a847228, + FFFF5a8472907fc05a847290, + FFFF5a8472f87fc05a8472f8, + FFFF5a8473607fc05a847360, + FFFF5a8473c87fc05a8473c8, + FFFF5a8474307fc05a847430, + FFFF5a8474987fc05a847498, + FFFF5a8475007fc05a847500, + FFFF5a8475687fc05a847568, + FFFF5a8475d07fc05a8475d0, + FFFF5a8476387fc05a847638, + FFFF5a8476a07fc05a8476a0, + FFFF5a8477087fc05a847708, + FFFF5a8477707fc05a847770, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2928,22 +2928,22 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxTask */ - FFFF811297307f8a81129730 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD811297307f8a81129730 /* src/TaskManager.cpp */; }; + FFFF5bf63c607fc05bf63c60 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5bf63c607fc05bf63c60 /* src/TaskManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD811077f07f8a811077f0 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD81129de07f8a81129de0 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD81129e487f8a81129e48 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD81129eb07f8a81129eb0 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD81129f187f8a81129f18 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD81129f807f8a81129f80 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; - FFFD81129fe87f8a81129fe8 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD811297307f8a81129730 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5bf838007fc05bf83800 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5bf63cf07fc05bf63cf0 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf63d587fc05bf63d58 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf63dc07fc05bf63dc0 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf63e287fc05bf63e28 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf63e907fc05bf63e90 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf63ef87fc05bf63ef8 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD5bf63c607fc05bf63c60 /* 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 */ - FFF2811077f07f8a811077f0 /* Resources */ = { + FFF25bf838007fc05bf83800 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2953,7 +2953,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC811077f07f8a811077f0 /* Frameworks */ = { + FFFC5bf838007fc05bf83800 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2963,11 +2963,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF8811077f07f8a811077f0 /* Sources */ = { + FFF85bf838007fc05bf83800 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF811297307f8a81129730, + FFFF5bf63c607fc05bf63c60, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2979,17 +2979,17 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PsFastXml */ - FFFF8145bbd07f8a8145bbd0 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD8145bbd07f8a8145bbd0 /* PsFastXml.cpp */; }; + FFFF5d1680407fc05d168040 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD5d1680407fc05d168040 /* PsFastXml.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD8145b5107f8a8145b510 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD8145bad07f8a8145bad0 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; - FFFD8145bbd07f8a8145bbd0 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD5d16dba07fc05d16dba0 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD5d167f407fc05d167f40 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; + FFFD5d1680407fc05d168040 /* 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 */ - FFF28145b5107f8a8145b510 /* Resources */ = { + FFF25d16dba07fc05d16dba0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2999,7 +2999,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC8145b5107f8a8145b510 /* Frameworks */ = { + FFFC5d16dba07fc05d16dba0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3009,11 +3009,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF88145b5107f8a8145b510 /* Sources */ = { + FFF85d16dba07fc05d16dba0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF8145bbd07f8a8145bbd0, + FFFF5d1680407fc05d168040, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3025,1969 +3025,1969 @@ /* End PBXTargetDependency section */ /* Begin PBXContainerItemProxy section */ - FFF5814495b07f8a814495b0 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55d170f707fc05d170f70 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA814495b07f8a814495b0 /* PhysX */; + remoteGlobalIDString = FFFA5d170f707fc05d170f70 /* PhysX */; remoteInfo = "PhysX"; }; - FFF58144ebc07f8a8144ebc0 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55d179b107fc05d179b10 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA8144ebc07f8a8144ebc0 /* PhysXCharacterKinematic */; + remoteGlobalIDString = FFFA5d179b107fc05d179b10 /* PhysXCharacterKinematic */; remoteInfo = "PhysXCharacterKinematic"; }; - FFF5814570a07f8a814570a0 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55d17ae507fc05d17ae50 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA814570a07f8a814570a0 /* PhysXVehicle */; + remoteGlobalIDString = FFFA5d17ae507fc05d17ae50 /* PhysXVehicle */; remoteInfo = "PhysXVehicle"; }; - FFF58146da607f8a8146da60 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55d18aba07fc05d18aba0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA8146da607f8a8146da60 /* PhysXExtensions */; + remoteGlobalIDString = FFFA5d18aba07fc05d18aba0 /* PhysXExtensions */; remoteInfo = "PhysXExtensions"; }; - FFF5814803907f8a81480390 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55d19d4d07fc05d19d4d0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA814803907f8a81480390 /* SceneQuery */; + remoteGlobalIDString = FFFA5d19d4d07fc05d19d4d0 /* SceneQuery */; remoteInfo = "SceneQuery"; }; - FFF581484a807f8a81484a80 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55d1a1bc07fc05d1a1bc0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA81484a807f8a81484a80 /* SimulationController */; + remoteGlobalIDString = FFFA5d1a1bc07fc05d1a1bc0 /* SimulationController */; remoteInfo = "SimulationController"; }; - FFF58105c6407f8a8105c640 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55bfadce07fc05bfadce0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA8105c6407f8a8105c640 /* PhysXCooking */; + remoteGlobalIDString = FFFA5bfadce07fc05bfadce0 /* PhysXCooking */; remoteInfo = "PhysXCooking"; }; - FFF5810dc3907f8a810dc390 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55b93e9407fc05b93e940 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA810dc3907f8a810dc390 /* PhysXCommon */; + remoteGlobalIDString = FFFA5b93e9407fc05b93e940 /* PhysXCommon */; remoteInfo = "PhysXCommon"; }; - FFF5810edec07f8a810edec0 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55b91b1007fc05b91b100 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA810edec07f8a810edec0 /* PxFoundation */; + remoteGlobalIDString = FFFA5b91b1007fc05b91b100 /* PxFoundation */; remoteInfo = "PxFoundation"; }; - FFF581169e707f8a81169e70 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55bf09c707fc05bf09c70 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA81169e707f8a81169e70 /* PxPvdSDK */; + remoteGlobalIDString = FFFA5bf09c707fc05bf09c70 /* PxPvdSDK */; remoteInfo = "PxPvdSDK"; }; - FFF5810c34707f8a810c3470 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55be3ff207fc05be3ff20 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA810c34707f8a810c3470 /* LowLevel */; + remoteGlobalIDString = FFFA5be3ff207fc05be3ff20 /* LowLevel */; remoteInfo = "LowLevel"; }; - FFF581149d807f8a81149d80 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55bf207407fc05bf20740 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA81149d807f8a81149d80 /* LowLevelAABB */; + remoteGlobalIDString = FFFA5bf207407fc05bf20740 /* LowLevelAABB */; remoteInfo = "LowLevelAABB"; }; - FFF581432a807f8a81432a80 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55bf4ac107fc05bf4ac10 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA81432a807f8a81432a80 /* LowLevelDynamics */; + remoteGlobalIDString = FFFA5bf4ac107fc05bf4ac10 /* LowLevelDynamics */; remoteInfo = "LowLevelDynamics"; }; - FFF5816f83807f8a816f8380 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55bc335c07fc05bc335c0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA816f83807f8a816f8380 /* LowLevelCloth */; + remoteGlobalIDString = FFFA5bc335c07fc05bc335c0 /* LowLevelCloth */; remoteInfo = "LowLevelCloth"; }; - FFF58172b0d07f8a8172b0d0 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55be6a2a07fc05be6a2a0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA8172b0d07f8a8172b0d0 /* LowLevelParticles */; + remoteGlobalIDString = FFFA5be6a2a07fc05be6a2a0 /* LowLevelParticles */; remoteInfo = "LowLevelParticles"; }; - FFF5811077f07f8a811077f0 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55bf838007fc05bf83800 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA811077f07f8a811077f0 /* PxTask */; + remoteGlobalIDString = FFFA5bf838007fc05bf83800 /* PxTask */; remoteInfo = "PxTask"; }; - FFF58145b5107f8a8145b510 /* PBXContainerItemProxy */ = { - containerPortal = FFF98047cb207f8a8047cb20 /* Project object */; + FFF55d16dba07fc05d16dba0 /* PBXContainerItemProxy */ = { + containerPortal = FFF95a70e2507fc05a70e250 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA8145b5107f8a8145b510 /* PsFastXml */; + remoteGlobalIDString = FFFA5d16dba07fc05d16dba0 /* PsFastXml */; remoteInfo = "PsFastXml"; }; /* End PBXContainerItemProxy section */ /* Begin PBXGroup section */ - FFFB8047cb887f8a8047cb88 /* PhysX */ = { + FFFB5a70e2b87fc05a70e2b8 /* PhysX */ = { isa = PBXGroup; children = ( - FFF08047cb207f8a8047cb20 /* Source */, - FFEE8047cb207f8a8047cb20 /* Products */, + FFF05a70e2507fc05a70e250 /* Source */, + FFEE5a70e2507fc05a70e250 /* Products */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFF08047cb207f8a8047cb20 /* Source */ = { + FFF05a70e2507fc05a70e250 /* Source */ = { isa = PBXGroup; children = ( - FFFB814495b07f8a814495b0, - FFFB8144ebc07f8a8144ebc0, - FFFB814570a07f8a814570a0, - FFFB8146da607f8a8146da60, - FFFB814803907f8a81480390, - FFFB81484a807f8a81484a80, - FFFB8105c6407f8a8105c640, - FFFB810dc3907f8a810dc390, - FFFB810edec07f8a810edec0, - FFFB81169e707f8a81169e70, - FFFB810c34707f8a810c3470, - FFFB81149d807f8a81149d80, - FFFB81432a807f8a81432a80, - FFFB816f83807f8a816f8380, - FFFB8172b0d07f8a8172b0d0, - FFFB811077f07f8a811077f0, - FFFB8145b5107f8a8145b510, + FFFB5d170f707fc05d170f70, + FFFB5d179b107fc05d179b10, + FFFB5d17ae507fc05d17ae50, + FFFB5d18aba07fc05d18aba0, + FFFB5d19d4d07fc05d19d4d0, + FFFB5d1a1bc07fc05d1a1bc0, + FFFB5bfadce07fc05bfadce0, + FFFB5b93e9407fc05b93e940, + FFFB5b91b1007fc05b91b100, + FFFB5bf09c707fc05bf09c70, + FFFB5be3ff207fc05be3ff20, + FFFB5bf207407fc05bf20740, + FFFB5bf4ac107fc05bf4ac10, + FFFB5bc335c07fc05bc335c0, + FFFB5be6a2a07fc05be6a2a0, + FFFB5bf838007fc05bf83800, + FFFB5d16dba07fc05d16dba0, ); name = Source; sourceTree = "<group>"; }; - FFEE8047cb207f8a8047cb20 /* Products */ = { + FFEE5a70e2507fc05a70e250 /* Products */ = { isa = PBXGroup; children = ( - FFFD814495b07f8a814495b0, - FFFD8144ebc07f8a8144ebc0, - FFFD814570a07f8a814570a0, - FFFD8146da607f8a8146da60, - FFFD814803907f8a81480390, - FFFD81484a807f8a81484a80, - FFFD8105c6407f8a8105c640, - FFFD810dc3907f8a810dc390, - FFFD810edec07f8a810edec0, - FFFD81169e707f8a81169e70, - FFFD810c34707f8a810c3470, - FFFD81149d807f8a81149d80, - FFFD81432a807f8a81432a80, - FFFD816f83807f8a816f8380, - FFFD8172b0d07f8a8172b0d0, - FFFD811077f07f8a811077f0, - FFFD8145b5107f8a8145b510, + FFFD5d170f707fc05d170f70, + FFFD5d179b107fc05d179b10, + FFFD5d17ae507fc05d17ae50, + FFFD5d18aba07fc05d18aba0, + FFFD5d19d4d07fc05d19d4d0, + FFFD5d1a1bc07fc05d1a1bc0, + FFFD5bfadce07fc05bfadce0, + FFFD5b93e9407fc05b93e940, + FFFD5b91b1007fc05b91b100, + FFFD5bf09c707fc05bf09c70, + FFFD5be3ff207fc05be3ff20, + FFFD5bf207407fc05bf20740, + FFFD5bf4ac107fc05bf4ac10, + FFFD5bc335c07fc05bc335c0, + FFFD5be6a2a07fc05be6a2a0, + FFFD5bf838007fc05bf83800, + FFFD5d16dba07fc05d16dba0, ); name = Products; sourceTree = "<group>"; }; - FFFB814495b07f8a814495b0 /* PhysX */ = { + FFFB5d170f707fc05d170f70 /* PhysX */ = { isa = PBXGroup; children = ( - FFFB814646d07f8a814646d0 /* src */, - FFFB814646f87f8a814646f8 /* include */, - FFFB814647207f8a81464720 /* metadata */, + FFFB5d1818007fc05d181800 /* src */, + FFFB5d1818287fc05d181828 /* include */, + FFFB5d1818507fc05d181850 /* metadata */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFFB814646d07f8a814646d0 /* src */ = { + FFFB5d1818007fc05d181800 /* src */ = { isa = PBXGroup; children = ( - FFFD820292007f8a82029200 /* NpActor.h */, - FFFD820292687f8a82029268 /* NpActorTemplate.h */, - FFFD820292d07f8a820292d0 /* NpAggregate.h */, - FFFD820293387f8a82029338 /* NpArticulation.h */, - FFFD820293a07f8a820293a0 /* NpArticulationJoint.h */, - FFFD820294087f8a82029408 /* NpArticulationLink.h */, - FFFD820294707f8a82029470 /* NpBatchQuery.h */, - FFFD820294d87f8a820294d8 /* NpCast.h */, - FFFD820295407f8a82029540 /* NpConnector.h */, - FFFD820295a87f8a820295a8 /* NpConstraint.h */, - FFFD820296107f8a82029610 /* NpFactory.h */, - FFFD820296787f8a82029678 /* NpMaterial.h */, - FFFD820296e07f8a820296e0 /* NpMaterialManager.h */, - FFFD820297487f8a82029748 /* NpPhysics.h */, - FFFD820297b07f8a820297b0 /* NpPhysicsInsertionCallback.h */, - FFFD820298187f8a82029818 /* NpPtrTableStorageManager.h */, - FFFD820298807f8a82029880 /* NpPvdSceneQueryCollector.h */, - FFFD820298e87f8a820298e8 /* NpQueryShared.h */, - FFFD820299507f8a82029950 /* NpReadCheck.h */, - FFFD820299b87f8a820299b8 /* NpRigidActorTemplate.h */, - FFFD82029a207f8a82029a20 /* NpRigidActorTemplateInternal.h */, - FFFD82029a887f8a82029a88 /* NpRigidBodyTemplate.h */, - FFFD82029af07f8a82029af0 /* NpRigidDynamic.h */, - FFFD82029b587f8a82029b58 /* NpRigidStatic.h */, - FFFD82029bc07f8a82029bc0 /* NpScene.h */, - FFFD82029c287f8a82029c28 /* NpSceneQueries.h */, - FFFD82029c907f8a82029c90 /* NpShape.h */, - FFFD82029cf87f8a82029cf8 /* NpShapeManager.h */, - FFFD82029d607f8a82029d60 /* NpSpatialIndex.h */, - FFFD82029dc87f8a82029dc8 /* NpVolumeCache.h */, - FFFD82029e307f8a82029e30 /* NpWriteCheck.h */, - FFFD82029e987f8a82029e98 /* PvdMetaDataBindingData.h */, - FFFD82029f007f8a82029f00 /* PvdMetaDataPvdBinding.h */, - FFFD82029f687f8a82029f68 /* PvdPhysicsClient.h */, - FFFD82029fd07f8a82029fd0 /* PvdTypeNames.h */, - FFFD8202a0387f8a8202a038 /* NpActor.cpp */, - FFFD8202a0a07f8a8202a0a0 /* NpAggregate.cpp */, - FFFD8202a1087f8a8202a108 /* NpArticulation.cpp */, - FFFD8202a1707f8a8202a170 /* NpArticulationJoint.cpp */, - FFFD8202a1d87f8a8202a1d8 /* NpArticulationLink.cpp */, - FFFD8202a2407f8a8202a240 /* NpBatchQuery.cpp */, - FFFD8202a2a87f8a8202a2a8 /* NpConstraint.cpp */, - FFFD8202a3107f8a8202a310 /* NpFactory.cpp */, - FFFD8202a3787f8a8202a378 /* NpMaterial.cpp */, - FFFD8202a3e07f8a8202a3e0 /* NpMetaData.cpp */, - FFFD8202a4487f8a8202a448 /* NpPhysics.cpp */, - FFFD8202a4b07f8a8202a4b0 /* NpPvdSceneQueryCollector.cpp */, - FFFD8202a5187f8a8202a518 /* NpReadCheck.cpp */, - FFFD8202a5807f8a8202a580 /* NpRigidDynamic.cpp */, - FFFD8202a5e87f8a8202a5e8 /* NpRigidStatic.cpp */, - FFFD8202a6507f8a8202a650 /* NpScene.cpp */, - FFFD8202a6b87f8a8202a6b8 /* NpSceneQueries.cpp */, - FFFD8202a7207f8a8202a720 /* NpSerializerAdapter.cpp */, - FFFD8202a7887f8a8202a788 /* NpShape.cpp */, - FFFD8202a7f07f8a8202a7f0 /* NpShapeManager.cpp */, - FFFD8202a8587f8a8202a858 /* NpSpatialIndex.cpp */, - FFFD8202a8c07f8a8202a8c0 /* NpVolumeCache.cpp */, - FFFD8202a9287f8a8202a928 /* NpWriteCheck.cpp */, - FFFD8202a9907f8a8202a990 /* PvdMetaDataPvdBinding.cpp */, - FFFD8202a9f87f8a8202a9f8 /* PvdPhysicsClient.cpp */, - FFFD8202aa607f8a8202aa60 /* particles/NpParticleBaseTemplate.h */, - FFFD8202aac87f8a8202aac8 /* particles/NpParticleFluid.h */, - FFFD8202ab307f8a8202ab30 /* particles/NpParticleFluidReadData.h */, - FFFD8202ab987f8a8202ab98 /* particles/NpParticleSystem.h */, - FFFD8202ac007f8a8202ac00 /* particles/NpParticleFluid.cpp */, - FFFD8202ac687f8a8202ac68 /* particles/NpParticleSystem.cpp */, - FFFD8202acd07f8a8202acd0 /* buffering/ScbActor.h */, - FFFD8202ad387f8a8202ad38 /* buffering/ScbAggregate.h */, - FFFD8202ada07f8a8202ada0 /* buffering/ScbArticulation.h */, - FFFD8202ae087f8a8202ae08 /* buffering/ScbArticulationJoint.h */, - FFFD8202ae707f8a8202ae70 /* buffering/ScbBase.h */, - FFFD8202aed87f8a8202aed8 /* buffering/ScbBody.h */, - FFFD8202af407f8a8202af40 /* buffering/ScbCloth.h */, - FFFD8202afa87f8a8202afa8 /* buffering/ScbConstraint.h */, - FFFD8202b0107f8a8202b010 /* buffering/ScbDefs.h */, - FFFD8202b0787f8a8202b078 /* buffering/ScbNpDeps.h */, - FFFD8202b0e07f8a8202b0e0 /* buffering/ScbParticleSystem.h */, - FFFD8202b1487f8a8202b148 /* buffering/ScbRigidObject.h */, - FFFD8202b1b07f8a8202b1b0 /* buffering/ScbRigidStatic.h */, - FFFD8202b2187f8a8202b218 /* buffering/ScbScene.h */, - FFFD8202b2807f8a8202b280 /* buffering/ScbSceneBuffer.h */, - FFFD8202b2e87f8a8202b2e8 /* buffering/ScbScenePvdClient.h */, - FFFD8202b3507f8a8202b350 /* buffering/ScbShape.h */, - FFFD8202b3b87f8a8202b3b8 /* buffering/ScbType.h */, - FFFD8202b4207f8a8202b420 /* buffering/ScbActor.cpp */, - FFFD8202b4887f8a8202b488 /* buffering/ScbAggregate.cpp */, - FFFD8202b4f07f8a8202b4f0 /* buffering/ScbBase.cpp */, - FFFD8202b5587f8a8202b558 /* buffering/ScbCloth.cpp */, - FFFD8202b5c07f8a8202b5c0 /* buffering/ScbMetaData.cpp */, - FFFD8202b6287f8a8202b628 /* buffering/ScbParticleSystem.cpp */, - FFFD8202b6907f8a8202b690 /* buffering/ScbScene.cpp */, - FFFD8202b6f87f8a8202b6f8 /* buffering/ScbScenePvdClient.cpp */, - FFFD8202b7607f8a8202b760 /* buffering/ScbShape.cpp */, - FFFD8202b7c87f8a8202b7c8 /* cloth/NpCloth.h */, - FFFD8202b8307f8a8202b830 /* cloth/NpClothFabric.h */, - FFFD8202b8987f8a8202b898 /* cloth/NpClothParticleData.h */, - FFFD8202b9007f8a8202b900 /* cloth/NpCloth.cpp */, - FFFD8202b9687f8a8202b968 /* cloth/NpClothFabric.cpp */, - FFFD8202b9d07f8a8202b9d0 /* cloth/NpClothParticleData.cpp */, - FFFD8202ba387f8a8202ba38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, + FFFD5a8716007fc05a871600 /* NpActor.h */, + FFFD5a8716687fc05a871668 /* NpActorTemplate.h */, + FFFD5a8716d07fc05a8716d0 /* NpAggregate.h */, + FFFD5a8717387fc05a871738 /* NpArticulation.h */, + FFFD5a8717a07fc05a8717a0 /* NpArticulationJoint.h */, + FFFD5a8718087fc05a871808 /* NpArticulationLink.h */, + FFFD5a8718707fc05a871870 /* NpBatchQuery.h */, + FFFD5a8718d87fc05a8718d8 /* NpCast.h */, + FFFD5a8719407fc05a871940 /* NpConnector.h */, + FFFD5a8719a87fc05a8719a8 /* NpConstraint.h */, + FFFD5a871a107fc05a871a10 /* NpFactory.h */, + FFFD5a871a787fc05a871a78 /* NpMaterial.h */, + FFFD5a871ae07fc05a871ae0 /* NpMaterialManager.h */, + FFFD5a871b487fc05a871b48 /* NpPhysics.h */, + FFFD5a871bb07fc05a871bb0 /* NpPhysicsInsertionCallback.h */, + FFFD5a871c187fc05a871c18 /* NpPtrTableStorageManager.h */, + FFFD5a871c807fc05a871c80 /* NpPvdSceneQueryCollector.h */, + FFFD5a871ce87fc05a871ce8 /* NpQueryShared.h */, + FFFD5a871d507fc05a871d50 /* NpReadCheck.h */, + FFFD5a871db87fc05a871db8 /* NpRigidActorTemplate.h */, + FFFD5a871e207fc05a871e20 /* NpRigidActorTemplateInternal.h */, + FFFD5a871e887fc05a871e88 /* NpRigidBodyTemplate.h */, + FFFD5a871ef07fc05a871ef0 /* NpRigidDynamic.h */, + FFFD5a871f587fc05a871f58 /* NpRigidStatic.h */, + FFFD5a871fc07fc05a871fc0 /* NpScene.h */, + FFFD5a8720287fc05a872028 /* NpSceneQueries.h */, + FFFD5a8720907fc05a872090 /* NpShape.h */, + FFFD5a8720f87fc05a8720f8 /* NpShapeManager.h */, + FFFD5a8721607fc05a872160 /* NpSpatialIndex.h */, + FFFD5a8721c87fc05a8721c8 /* NpVolumeCache.h */, + FFFD5a8722307fc05a872230 /* NpWriteCheck.h */, + FFFD5a8722987fc05a872298 /* PvdMetaDataBindingData.h */, + FFFD5a8723007fc05a872300 /* PvdMetaDataPvdBinding.h */, + FFFD5a8723687fc05a872368 /* PvdPhysicsClient.h */, + FFFD5a8723d07fc05a8723d0 /* PvdTypeNames.h */, + FFFD5a8724387fc05a872438 /* NpActor.cpp */, + FFFD5a8724a07fc05a8724a0 /* NpAggregate.cpp */, + FFFD5a8725087fc05a872508 /* NpArticulation.cpp */, + FFFD5a8725707fc05a872570 /* NpArticulationJoint.cpp */, + FFFD5a8725d87fc05a8725d8 /* NpArticulationLink.cpp */, + FFFD5a8726407fc05a872640 /* NpBatchQuery.cpp */, + FFFD5a8726a87fc05a8726a8 /* NpConstraint.cpp */, + FFFD5a8727107fc05a872710 /* NpFactory.cpp */, + FFFD5a8727787fc05a872778 /* NpMaterial.cpp */, + FFFD5a8727e07fc05a8727e0 /* NpMetaData.cpp */, + FFFD5a8728487fc05a872848 /* NpPhysics.cpp */, + FFFD5a8728b07fc05a8728b0 /* NpPvdSceneQueryCollector.cpp */, + FFFD5a8729187fc05a872918 /* NpReadCheck.cpp */, + FFFD5a8729807fc05a872980 /* NpRigidDynamic.cpp */, + FFFD5a8729e87fc05a8729e8 /* NpRigidStatic.cpp */, + FFFD5a872a507fc05a872a50 /* NpScene.cpp */, + FFFD5a872ab87fc05a872ab8 /* NpSceneQueries.cpp */, + FFFD5a872b207fc05a872b20 /* NpSerializerAdapter.cpp */, + FFFD5a872b887fc05a872b88 /* NpShape.cpp */, + FFFD5a872bf07fc05a872bf0 /* NpShapeManager.cpp */, + FFFD5a872c587fc05a872c58 /* NpSpatialIndex.cpp */, + FFFD5a872cc07fc05a872cc0 /* NpVolumeCache.cpp */, + FFFD5a872d287fc05a872d28 /* NpWriteCheck.cpp */, + FFFD5a872d907fc05a872d90 /* PvdMetaDataPvdBinding.cpp */, + FFFD5a872df87fc05a872df8 /* PvdPhysicsClient.cpp */, + FFFD5a872e607fc05a872e60 /* particles/NpParticleBaseTemplate.h */, + FFFD5a872ec87fc05a872ec8 /* particles/NpParticleFluid.h */, + FFFD5a872f307fc05a872f30 /* particles/NpParticleFluidReadData.h */, + FFFD5a872f987fc05a872f98 /* particles/NpParticleSystem.h */, + FFFD5a8730007fc05a873000 /* particles/NpParticleFluid.cpp */, + FFFD5a8730687fc05a873068 /* particles/NpParticleSystem.cpp */, + FFFD5a8730d07fc05a8730d0 /* buffering/ScbActor.h */, + FFFD5a8731387fc05a873138 /* buffering/ScbAggregate.h */, + FFFD5a8731a07fc05a8731a0 /* buffering/ScbArticulation.h */, + FFFD5a8732087fc05a873208 /* buffering/ScbArticulationJoint.h */, + FFFD5a8732707fc05a873270 /* buffering/ScbBase.h */, + FFFD5a8732d87fc05a8732d8 /* buffering/ScbBody.h */, + FFFD5a8733407fc05a873340 /* buffering/ScbCloth.h */, + FFFD5a8733a87fc05a8733a8 /* buffering/ScbConstraint.h */, + FFFD5a8734107fc05a873410 /* buffering/ScbDefs.h */, + FFFD5a8734787fc05a873478 /* buffering/ScbNpDeps.h */, + FFFD5a8734e07fc05a8734e0 /* buffering/ScbParticleSystem.h */, + FFFD5a8735487fc05a873548 /* buffering/ScbRigidObject.h */, + FFFD5a8735b07fc05a8735b0 /* buffering/ScbRigidStatic.h */, + FFFD5a8736187fc05a873618 /* buffering/ScbScene.h */, + FFFD5a8736807fc05a873680 /* buffering/ScbSceneBuffer.h */, + FFFD5a8736e87fc05a8736e8 /* buffering/ScbScenePvdClient.h */, + FFFD5a8737507fc05a873750 /* buffering/ScbShape.h */, + FFFD5a8737b87fc05a8737b8 /* buffering/ScbType.h */, + FFFD5a8738207fc05a873820 /* buffering/ScbActor.cpp */, + FFFD5a8738887fc05a873888 /* buffering/ScbAggregate.cpp */, + FFFD5a8738f07fc05a8738f0 /* buffering/ScbBase.cpp */, + FFFD5a8739587fc05a873958 /* buffering/ScbCloth.cpp */, + FFFD5a8739c07fc05a8739c0 /* buffering/ScbMetaData.cpp */, + FFFD5a873a287fc05a873a28 /* buffering/ScbParticleSystem.cpp */, + FFFD5a873a907fc05a873a90 /* buffering/ScbScene.cpp */, + FFFD5a873af87fc05a873af8 /* buffering/ScbScenePvdClient.cpp */, + FFFD5a873b607fc05a873b60 /* buffering/ScbShape.cpp */, + FFFD5a873bc87fc05a873bc8 /* cloth/NpCloth.h */, + FFFD5a873c307fc05a873c30 /* cloth/NpClothFabric.h */, + FFFD5a873c987fc05a873c98 /* cloth/NpClothParticleData.h */, + FFFD5a873d007fc05a873d00 /* cloth/NpCloth.cpp */, + FFFD5a873d687fc05a873d68 /* cloth/NpClothFabric.cpp */, + FFFD5a873dd07fc05a873dd0 /* cloth/NpClothParticleData.cpp */, + FFFD5a873e387fc05a873e38 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB814646f87f8a814646f8 /* include */ = { + FFFB5d1818287fc05d181828 /* include */ = { isa = PBXGroup; children = ( - FFFD8202bc007f8a8202bc00 /* PxActor.h */, - FFFD8202bc687f8a8202bc68 /* PxAggregate.h */, - FFFD8202bcd07f8a8202bcd0 /* PxArticulation.h */, - FFFD8202bd387f8a8202bd38 /* PxArticulationJoint.h */, - FFFD8202bda07f8a8202bda0 /* PxArticulationLink.h */, - FFFD8202be087f8a8202be08 /* PxBatchQuery.h */, - FFFD8202be707f8a8202be70 /* PxBatchQueryDesc.h */, - FFFD8202bed87f8a8202bed8 /* PxBroadPhase.h */, - FFFD8202bf407f8a8202bf40 /* PxClient.h */, - FFFD8202bfa87f8a8202bfa8 /* PxConstraint.h */, - FFFD8202c0107f8a8202c010 /* PxConstraintDesc.h */, - FFFD8202c0787f8a8202c078 /* PxContact.h */, - FFFD8202c0e07f8a8202c0e0 /* PxContactModifyCallback.h */, - FFFD8202c1487f8a8202c148 /* PxDeletionListener.h */, - FFFD8202c1b07f8a8202c1b0 /* PxFiltering.h */, - FFFD8202c2187f8a8202c218 /* PxForceMode.h */, - FFFD8202c2807f8a8202c280 /* PxImmediateMode.h */, - FFFD8202c2e87f8a8202c2e8 /* PxLockedData.h */, - FFFD8202c3507f8a8202c350 /* PxMaterial.h */, - FFFD8202c3b87f8a8202c3b8 /* PxPhysXConfig.h */, - FFFD8202c4207f8a8202c420 /* PxPhysics.h */, - FFFD8202c4887f8a8202c488 /* PxPhysicsAPI.h */, - FFFD8202c4f07f8a8202c4f0 /* PxPhysicsSerialization.h */, - FFFD8202c5587f8a8202c558 /* PxPhysicsVersion.h */, - FFFD8202c5c07f8a8202c5c0 /* PxPruningStructure.h */, - FFFD8202c6287f8a8202c628 /* PxQueryFiltering.h */, - FFFD8202c6907f8a8202c690 /* PxQueryReport.h */, - FFFD8202c6f87f8a8202c6f8 /* PxRigidActor.h */, - FFFD8202c7607f8a8202c760 /* PxRigidBody.h */, - FFFD8202c7c87f8a8202c7c8 /* PxRigidDynamic.h */, - FFFD8202c8307f8a8202c830 /* PxRigidStatic.h */, - FFFD8202c8987f8a8202c898 /* PxScene.h */, - FFFD8202c9007f8a8202c900 /* PxSceneDesc.h */, - FFFD8202c9687f8a8202c968 /* PxSceneLock.h */, - FFFD8202c9d07f8a8202c9d0 /* PxShape.h */, - FFFD8202ca387f8a8202ca38 /* PxSimulationEventCallback.h */, - FFFD8202caa07f8a8202caa0 /* PxSimulationStatistics.h */, - FFFD8202cb087f8a8202cb08 /* PxSpatialIndex.h */, - FFFD8202cb707f8a8202cb70 /* PxVisualizationParameter.h */, - FFFD8202cbd87f8a8202cbd8 /* PxVolumeCache.h */, - FFFD8202cc407f8a8202cc40 /* particles/PxParticleBase.h */, - FFFD8202cca87f8a8202cca8 /* particles/PxParticleBaseFlag.h */, - FFFD8202cd107f8a8202cd10 /* particles/PxParticleCreationData.h */, - FFFD8202cd787f8a8202cd78 /* particles/PxParticleFlag.h */, - FFFD8202cde07f8a8202cde0 /* particles/PxParticleFluid.h */, - FFFD8202ce487f8a8202ce48 /* particles/PxParticleFluidReadData.h */, - FFFD8202ceb07f8a8202ceb0 /* particles/PxParticleReadData.h */, - FFFD8202cf187f8a8202cf18 /* particles/PxParticleSystem.h */, - FFFD8202cf807f8a8202cf80 /* pvd/PxPvdSceneClient.h */, - FFFD8202cfe87f8a8202cfe8 /* cloth/PxCloth.h */, - FFFD8202d0507f8a8202d050 /* cloth/PxClothCollisionData.h */, - FFFD8202d0b87f8a8202d0b8 /* cloth/PxClothFabric.h */, - FFFD8202d1207f8a8202d120 /* cloth/PxClothParticleData.h */, - FFFD8202d1887f8a8202d188 /* cloth/PxClothTypes.h */, + FFFD5a86f0007fc05a86f000 /* PxActor.h */, + FFFD5a86f0687fc05a86f068 /* PxAggregate.h */, + FFFD5a86f0d07fc05a86f0d0 /* PxArticulation.h */, + FFFD5a86f1387fc05a86f138 /* PxArticulationJoint.h */, + FFFD5a86f1a07fc05a86f1a0 /* PxArticulationLink.h */, + FFFD5a86f2087fc05a86f208 /* PxBatchQuery.h */, + FFFD5a86f2707fc05a86f270 /* PxBatchQueryDesc.h */, + FFFD5a86f2d87fc05a86f2d8 /* PxBroadPhase.h */, + FFFD5a86f3407fc05a86f340 /* PxClient.h */, + FFFD5a86f3a87fc05a86f3a8 /* PxConstraint.h */, + FFFD5a86f4107fc05a86f410 /* PxConstraintDesc.h */, + FFFD5a86f4787fc05a86f478 /* PxContact.h */, + FFFD5a86f4e07fc05a86f4e0 /* PxContactModifyCallback.h */, + FFFD5a86f5487fc05a86f548 /* PxDeletionListener.h */, + FFFD5a86f5b07fc05a86f5b0 /* PxFiltering.h */, + FFFD5a86f6187fc05a86f618 /* PxForceMode.h */, + FFFD5a86f6807fc05a86f680 /* PxImmediateMode.h */, + FFFD5a86f6e87fc05a86f6e8 /* PxLockedData.h */, + FFFD5a86f7507fc05a86f750 /* PxMaterial.h */, + FFFD5a86f7b87fc05a86f7b8 /* PxPhysXConfig.h */, + FFFD5a86f8207fc05a86f820 /* PxPhysics.h */, + FFFD5a86f8887fc05a86f888 /* PxPhysicsAPI.h */, + FFFD5a86f8f07fc05a86f8f0 /* PxPhysicsSerialization.h */, + FFFD5a86f9587fc05a86f958 /* PxPhysicsVersion.h */, + FFFD5a86f9c07fc05a86f9c0 /* PxPruningStructure.h */, + FFFD5a86fa287fc05a86fa28 /* PxQueryFiltering.h */, + FFFD5a86fa907fc05a86fa90 /* PxQueryReport.h */, + FFFD5a86faf87fc05a86faf8 /* PxRigidActor.h */, + FFFD5a86fb607fc05a86fb60 /* PxRigidBody.h */, + FFFD5a86fbc87fc05a86fbc8 /* PxRigidDynamic.h */, + FFFD5a86fc307fc05a86fc30 /* PxRigidStatic.h */, + FFFD5a86fc987fc05a86fc98 /* PxScene.h */, + FFFD5a86fd007fc05a86fd00 /* PxSceneDesc.h */, + FFFD5a86fd687fc05a86fd68 /* PxSceneLock.h */, + FFFD5a86fdd07fc05a86fdd0 /* PxShape.h */, + FFFD5a86fe387fc05a86fe38 /* PxSimulationEventCallback.h */, + FFFD5a86fea07fc05a86fea0 /* PxSimulationStatistics.h */, + FFFD5a86ff087fc05a86ff08 /* PxSpatialIndex.h */, + FFFD5a86ff707fc05a86ff70 /* PxVisualizationParameter.h */, + FFFD5a86ffd87fc05a86ffd8 /* PxVolumeCache.h */, + FFFD5a8700407fc05a870040 /* particles/PxParticleBase.h */, + FFFD5a8700a87fc05a8700a8 /* particles/PxParticleBaseFlag.h */, + FFFD5a8701107fc05a870110 /* particles/PxParticleCreationData.h */, + FFFD5a8701787fc05a870178 /* particles/PxParticleFlag.h */, + FFFD5a8701e07fc05a8701e0 /* particles/PxParticleFluid.h */, + FFFD5a8702487fc05a870248 /* particles/PxParticleFluidReadData.h */, + FFFD5a8702b07fc05a8702b0 /* particles/PxParticleReadData.h */, + FFFD5a8703187fc05a870318 /* particles/PxParticleSystem.h */, + FFFD5a8703807fc05a870380 /* pvd/PxPvdSceneClient.h */, + FFFD5a8703e87fc05a8703e8 /* cloth/PxCloth.h */, + FFFD5a8704507fc05a870450 /* cloth/PxClothCollisionData.h */, + FFFD5a8704b87fc05a8704b8 /* cloth/PxClothFabric.h */, + FFFD5a8705207fc05a870520 /* cloth/PxClothParticleData.h */, + FFFD5a8705887fc05a870588 /* cloth/PxClothTypes.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB814647207f8a81464720 /* metadata */ = { + FFFB5d1818507fc05d181850 /* metadata */ = { isa = PBXGroup; children = ( - FFFD82023e007f8a82023e00 /* core/include/PvdMetaDataDefineProperties.h */, - FFFD82023e687f8a82023e68 /* core/include/PvdMetaDataExtensions.h */, - FFFD82023ed07f8a82023ed0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFD82023f387f8a82023f38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFD82023fa07f8a82023fa0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFD820240087f8a82024008 /* core/include/PxMetaDataCompare.h */, - FFFD820240707f8a82024070 /* core/include/PxMetaDataCppPrefix.h */, - FFFD820240d87f8a820240d8 /* core/include/PxMetaDataObjects.h */, - FFFD820241407f8a82024140 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFD820241a87f8a820241a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, - FFFD820242107f8a82024210 /* core/src/PxMetaDataObjects.cpp */, + FFFD5a8706007fc05a870600 /* core/include/PvdMetaDataDefineProperties.h */, + FFFD5a8706687fc05a870668 /* core/include/PvdMetaDataExtensions.h */, + FFFD5a8706d07fc05a8706d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFD5a8707387fc05a870738 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFD5a8707a07fc05a8707a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFD5a8708087fc05a870808 /* core/include/PxMetaDataCompare.h */, + FFFD5a8708707fc05a870870 /* core/include/PxMetaDataCppPrefix.h */, + FFFD5a8708d87fc05a8708d8 /* core/include/PxMetaDataObjects.h */, + FFFD5a8709407fc05a870940 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFD5a8709a87fc05a8709a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, + FFFD5a870a107fc05a870a10 /* core/src/PxMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB8144ebc07f8a8144ebc0 /* PhysXCharacterKinematic */ = { + FFFB5d179b107fc05d179b10 /* PhysXCharacterKinematic */ = { isa = PBXGroup; children = ( - FFFB814620607f8a81462060 /* include */, - FFFB814620887f8a81462088 /* src */, + FFFB5d17f2e07fc05d17f2e0 /* include */, + FFFB5d17f3087fc05d17f308 /* src */, ); name = "PhysXCharacterKinematic"; sourceTree = "<group>"; }; - FFFB814620607f8a81462060 /* include */ = { + FFFB5d17f2e07fc05d17f2e0 /* include */ = { isa = PBXGroup; children = ( - FFFD814639207f8a81463920 /* PxBoxController.h */, - FFFD814639887f8a81463988 /* PxCapsuleController.h */, - FFFD814639f07f8a814639f0 /* PxCharacter.h */, - FFFD81463a587f8a81463a58 /* PxController.h */, - FFFD81463ac07f8a81463ac0 /* PxControllerBehavior.h */, - FFFD81463b287f8a81463b28 /* PxControllerManager.h */, - FFFD81463b907f8a81463b90 /* PxControllerObstacles.h */, - FFFD81463bf87f8a81463bf8 /* PxExtended.h */, + FFFD5d180ba07fc05d180ba0 /* PxBoxController.h */, + FFFD5d180c087fc05d180c08 /* PxCapsuleController.h */, + FFFD5d180c707fc05d180c70 /* PxCharacter.h */, + FFFD5d180cd87fc05d180cd8 /* PxController.h */, + FFFD5d180d407fc05d180d40 /* PxControllerBehavior.h */, + FFFD5d180da87fc05d180da8 /* PxControllerManager.h */, + FFFD5d180e107fc05d180e10 /* PxControllerObstacles.h */, + FFFD5d180e787fc05d180e78 /* PxExtended.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB814620887f8a81462088 /* src */ = { + FFFB5d17f3087fc05d17f308 /* src */ = { isa = PBXGroup; children = ( - FFFD8202d2007f8a8202d200 /* CctBoxController.h */, - FFFD8202d2687f8a8202d268 /* CctCapsuleController.h */, - FFFD8202d2d07f8a8202d2d0 /* CctCharacterController.h */, - FFFD8202d3387f8a8202d338 /* CctCharacterControllerManager.h */, - FFFD8202d3a07f8a8202d3a0 /* CctController.h */, - FFFD8202d4087f8a8202d408 /* CctInternalStructs.h */, - FFFD8202d4707f8a8202d470 /* CctObstacleContext.h */, - FFFD8202d4d87f8a8202d4d8 /* CctSweptBox.h */, - FFFD8202d5407f8a8202d540 /* CctSweptCapsule.h */, - FFFD8202d5a87f8a8202d5a8 /* CctSweptVolume.h */, - FFFD8202d6107f8a8202d610 /* CctUtils.h */, - FFFD8202d6787f8a8202d678 /* CctBoxController.cpp */, - FFFD8202d6e07f8a8202d6e0 /* CctCapsuleController.cpp */, - FFFD8202d7487f8a8202d748 /* CctCharacterController.cpp */, - FFFD8202d7b07f8a8202d7b0 /* CctCharacterControllerCallbacks.cpp */, - FFFD8202d8187f8a8202d818 /* CctCharacterControllerManager.cpp */, - FFFD8202d8807f8a8202d880 /* CctController.cpp */, - FFFD8202d8e87f8a8202d8e8 /* CctObstacleContext.cpp */, - FFFD8202d9507f8a8202d950 /* CctSweptBox.cpp */, - FFFD8202d9b87f8a8202d9b8 /* CctSweptCapsule.cpp */, - FFFD8202da207f8a8202da20 /* CctSweptVolume.cpp */, + FFFD5a8780007fc05a878000 /* CctBoxController.h */, + FFFD5a8780687fc05a878068 /* CctCapsuleController.h */, + FFFD5a8780d07fc05a8780d0 /* CctCharacterController.h */, + FFFD5a8781387fc05a878138 /* CctCharacterControllerManager.h */, + FFFD5a8781a07fc05a8781a0 /* CctController.h */, + FFFD5a8782087fc05a878208 /* CctInternalStructs.h */, + FFFD5a8782707fc05a878270 /* CctObstacleContext.h */, + FFFD5a8782d87fc05a8782d8 /* CctSweptBox.h */, + FFFD5a8783407fc05a878340 /* CctSweptCapsule.h */, + FFFD5a8783a87fc05a8783a8 /* CctSweptVolume.h */, + FFFD5a8784107fc05a878410 /* CctUtils.h */, + FFFD5a8784787fc05a878478 /* CctBoxController.cpp */, + FFFD5a8784e07fc05a8784e0 /* CctCapsuleController.cpp */, + FFFD5a8785487fc05a878548 /* CctCharacterController.cpp */, + FFFD5a8785b07fc05a8785b0 /* CctCharacterControllerCallbacks.cpp */, + FFFD5a8786187fc05a878618 /* CctCharacterControllerManager.cpp */, + FFFD5a8786807fc05a878680 /* CctController.cpp */, + FFFD5a8786e87fc05a8786e8 /* CctObstacleContext.cpp */, + FFFD5a8787507fc05a878750 /* CctSweptBox.cpp */, + FFFD5a8787b87fc05a8787b8 /* CctSweptCapsule.cpp */, + FFFD5a8788207fc05a878820 /* CctSweptVolume.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB814570a07f8a814570a0 /* PhysXVehicle */ = { + FFFB5d17ae507fc05d17ae50 /* PhysXVehicle */ = { isa = PBXGroup; children = ( - FFFB8146eab07f8a8146eab0 /* include */, - FFFB8146ead87f8a8146ead8 /* src */, - FFFB8146eb007f8a8146eb00 /* metadata */, + FFFB5d18bbf07fc05d18bbf0 /* include */, + FFFB5d18bc187fc05d18bc18 /* src */, + FFFB5d18bc407fc05d18bc40 /* metadata */, ); name = "PhysXVehicle"; sourceTree = "<group>"; }; - FFFB8146eab07f8a8146eab0 /* include */ = { + FFFB5d18bbf07fc05d18bbf0 /* include */ = { isa = PBXGroup; children = ( - FFFD8202f8007f8a8202f800 /* PxVehicleComponents.h */, - FFFD8202f8687f8a8202f868 /* PxVehicleDrive.h */, - FFFD8202f8d07f8a8202f8d0 /* PxVehicleDrive4W.h */, - FFFD8202f9387f8a8202f938 /* PxVehicleDriveNW.h */, - FFFD8202f9a07f8a8202f9a0 /* PxVehicleDriveTank.h */, - FFFD8202fa087f8a8202fa08 /* PxVehicleNoDrive.h */, - FFFD8202fa707f8a8202fa70 /* PxVehicleSDK.h */, - FFFD8202fad87f8a8202fad8 /* PxVehicleShaders.h */, - FFFD8202fb407f8a8202fb40 /* PxVehicleTireFriction.h */, - FFFD8202fba87f8a8202fba8 /* PxVehicleUpdate.h */, - FFFD8202fc107f8a8202fc10 /* PxVehicleUtil.h */, - FFFD8202fc787f8a8202fc78 /* PxVehicleUtilControl.h */, - FFFD8202fce07f8a8202fce0 /* PxVehicleUtilSetup.h */, - FFFD8202fd487f8a8202fd48 /* PxVehicleUtilTelemetry.h */, - FFFD8202fdb07f8a8202fdb0 /* PxVehicleWheels.h */, + FFFD5a87ae007fc05a87ae00 /* PxVehicleComponents.h */, + FFFD5a87ae687fc05a87ae68 /* PxVehicleDrive.h */, + FFFD5a87aed07fc05a87aed0 /* PxVehicleDrive4W.h */, + FFFD5a87af387fc05a87af38 /* PxVehicleDriveNW.h */, + FFFD5a87afa07fc05a87afa0 /* PxVehicleDriveTank.h */, + FFFD5a87b0087fc05a87b008 /* PxVehicleNoDrive.h */, + FFFD5a87b0707fc05a87b070 /* PxVehicleSDK.h */, + FFFD5a87b0d87fc05a87b0d8 /* PxVehicleShaders.h */, + FFFD5a87b1407fc05a87b140 /* PxVehicleTireFriction.h */, + FFFD5a87b1a87fc05a87b1a8 /* PxVehicleUpdate.h */, + FFFD5a87b2107fc05a87b210 /* PxVehicleUtil.h */, + FFFD5a87b2787fc05a87b278 /* PxVehicleUtilControl.h */, + FFFD5a87b2e07fc05a87b2e0 /* PxVehicleUtilSetup.h */, + FFFD5a87b3487fc05a87b348 /* PxVehicleUtilTelemetry.h */, + FFFD5a87b3b07fc05a87b3b0 /* PxVehicleWheels.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB8146ead87f8a8146ead8 /* src */ = { + FFFB5d18bc187fc05d18bc18 /* src */ = { isa = PBXGroup; children = ( - FFFD820316007f8a82031600 /* PxVehicleDefaults.h */, - FFFD820316687f8a82031668 /* PxVehicleLinearMath.h */, - FFFD820316d07f8a820316d0 /* PxVehicleSerialization.h */, - FFFD820317387f8a82031738 /* PxVehicleSuspLimitConstraintShader.h */, - FFFD820317a07f8a820317a0 /* PxVehicleSuspWheelTire4.h */, - FFFD820318087f8a82031808 /* PxVehicleComponents.cpp */, - FFFD820318707f8a82031870 /* PxVehicleDrive.cpp */, - FFFD820318d87f8a820318d8 /* PxVehicleDrive4W.cpp */, - FFFD820319407f8a82031940 /* PxVehicleDriveNW.cpp */, - FFFD820319a87f8a820319a8 /* PxVehicleDriveTank.cpp */, - FFFD82031a107f8a82031a10 /* PxVehicleMetaData.cpp */, - FFFD82031a787f8a82031a78 /* PxVehicleNoDrive.cpp */, - FFFD82031ae07f8a82031ae0 /* PxVehicleSDK.cpp */, - FFFD82031b487f8a82031b48 /* PxVehicleSerialization.cpp */, - FFFD82031bb07f8a82031bb0 /* PxVehicleSuspWheelTire4.cpp */, - FFFD82031c187f8a82031c18 /* PxVehicleTireFriction.cpp */, - FFFD82031c807f8a82031c80 /* PxVehicleUpdate.cpp */, - FFFD82031ce87f8a82031ce8 /* PxVehicleWheels.cpp */, - FFFD82031d507f8a82031d50 /* VehicleUtilControl.cpp */, - FFFD82031db87f8a82031db8 /* VehicleUtilSetup.cpp */, - FFFD82031e207f8a82031e20 /* VehicleUtilTelemetry.cpp */, + FFFD5a87d0007fc05a87d000 /* PxVehicleDefaults.h */, + FFFD5a87d0687fc05a87d068 /* PxVehicleLinearMath.h */, + FFFD5a87d0d07fc05a87d0d0 /* PxVehicleSerialization.h */, + FFFD5a87d1387fc05a87d138 /* PxVehicleSuspLimitConstraintShader.h */, + FFFD5a87d1a07fc05a87d1a0 /* PxVehicleSuspWheelTire4.h */, + FFFD5a87d2087fc05a87d208 /* PxVehicleComponents.cpp */, + FFFD5a87d2707fc05a87d270 /* PxVehicleDrive.cpp */, + FFFD5a87d2d87fc05a87d2d8 /* PxVehicleDrive4W.cpp */, + FFFD5a87d3407fc05a87d340 /* PxVehicleDriveNW.cpp */, + FFFD5a87d3a87fc05a87d3a8 /* PxVehicleDriveTank.cpp */, + FFFD5a87d4107fc05a87d410 /* PxVehicleMetaData.cpp */, + FFFD5a87d4787fc05a87d478 /* PxVehicleNoDrive.cpp */, + FFFD5a87d4e07fc05a87d4e0 /* PxVehicleSDK.cpp */, + FFFD5a87d5487fc05a87d548 /* PxVehicleSerialization.cpp */, + FFFD5a87d5b07fc05a87d5b0 /* PxVehicleSuspWheelTire4.cpp */, + FFFD5a87d6187fc05a87d618 /* PxVehicleTireFriction.cpp */, + FFFD5a87d6807fc05a87d680 /* PxVehicleUpdate.cpp */, + FFFD5a87d6e87fc05a87d6e8 /* PxVehicleWheels.cpp */, + FFFD5a87d7507fc05a87d750 /* VehicleUtilControl.cpp */, + FFFD5a87d7b87fc05a87d7b8 /* VehicleUtilSetup.cpp */, + FFFD5a87d8207fc05a87d820 /* VehicleUtilTelemetry.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB8146eb007f8a8146eb00 /* metadata */ = { + FFFB5d18bc407fc05d18bc40 /* metadata */ = { isa = PBXGroup; children = ( - FFFD8146f8007f8a8146f800 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, - FFFD8146f8687f8a8146f868 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, - FFFD8146f8d07f8a8146f8d0 /* include/PxVehicleMetaDataObjects.h */, - FFFD8146f9387f8a8146f938 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, - FFFD8146f9a07f8a8146f9a0 /* src/PxVehicleMetaDataObjects.cpp */, + FFFD5d18c9407fc05d18c940 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, + FFFD5d18c9a87fc05d18c9a8 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, + FFFD5d18ca107fc05d18ca10 /* include/PxVehicleMetaDataObjects.h */, + FFFD5d18ca787fc05d18ca78 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, + FFFD5d18cae07fc05d18cae0 /* src/PxVehicleMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB8146da607f8a8146da60 /* PhysXExtensions */ = { + FFFB5d18aba07fc05d18aba0 /* PhysXExtensions */ = { isa = PBXGroup; children = ( - FFFB81476ab07f8a81476ab0 /* include */, - FFFB81476ad87f8a81476ad8 /* src */, - FFFB81476b007f8a81476b00 /* serialization */, - FFFB81476b287f8a81476b28 /* metadata */, + FFFB5d193bf07fc05d193bf0 /* include */, + FFFB5d193c187fc05d193c18 /* src */, + FFFB5d193c407fc05d193c40 /* serialization */, + FFFB5d193c687fc05d193c68 /* metadata */, ); name = "PhysXExtensions"; sourceTree = "<group>"; }; - FFFB81476ab07f8a81476ab0 /* include */ = { + FFFB5d193bf07fc05d193bf0 /* include */ = { isa = PBXGroup; children = ( - FFFD82034e007f8a82034e00 /* PxBinaryConverter.h */, - FFFD82034e687f8a82034e68 /* PxBroadPhaseExt.h */, - FFFD82034ed07f8a82034ed0 /* PxClothFabricCooker.h */, - FFFD82034f387f8a82034f38 /* PxClothMeshDesc.h */, - FFFD82034fa07f8a82034fa0 /* PxClothMeshQuadifier.h */, - FFFD820350087f8a82035008 /* PxClothTetherCooker.h */, - FFFD820350707f8a82035070 /* PxCollectionExt.h */, - FFFD820350d87f8a820350d8 /* PxConstraintExt.h */, - FFFD820351407f8a82035140 /* PxConvexMeshExt.h */, - FFFD820351a87f8a820351a8 /* PxD6Joint.h */, - FFFD820352107f8a82035210 /* PxDefaultAllocator.h */, - FFFD820352787f8a82035278 /* PxDefaultCpuDispatcher.h */, - FFFD820352e07f8a820352e0 /* PxDefaultErrorCallback.h */, - FFFD820353487f8a82035348 /* PxDefaultSimulationFilterShader.h */, - FFFD820353b07f8a820353b0 /* PxDefaultStreams.h */, - FFFD820354187f8a82035418 /* PxDistanceJoint.h */, - FFFD820354807f8a82035480 /* PxExtensionsAPI.h */, - FFFD820354e87f8a820354e8 /* PxFixedJoint.h */, - FFFD820355507f8a82035550 /* PxJoint.h */, - FFFD820355b87f8a820355b8 /* PxJointLimit.h */, - FFFD820356207f8a82035620 /* PxMassProperties.h */, - FFFD820356887f8a82035688 /* PxParticleExt.h */, - FFFD820356f07f8a820356f0 /* PxPrismaticJoint.h */, - FFFD820357587f8a82035758 /* PxRaycastCCD.h */, - FFFD820357c07f8a820357c0 /* PxRepXSerializer.h */, - FFFD820358287f8a82035828 /* PxRepXSimpleType.h */, - FFFD820358907f8a82035890 /* PxRevoluteJoint.h */, - FFFD820358f87f8a820358f8 /* PxRigidActorExt.h */, - FFFD820359607f8a82035960 /* PxRigidBodyExt.h */, - FFFD820359c87f8a820359c8 /* PxSceneQueryExt.h */, - FFFD82035a307f8a82035a30 /* PxSerialization.h */, - FFFD82035a987f8a82035a98 /* PxShapeExt.h */, - FFFD82035b007f8a82035b00 /* PxSimpleFactory.h */, - FFFD82035b687f8a82035b68 /* PxSmoothNormals.h */, - FFFD82035bd07f8a82035bd0 /* PxSphericalJoint.h */, - FFFD82035c387f8a82035c38 /* PxStringTableExt.h */, - FFFD82035ca07f8a82035ca0 /* PxTriangleMeshExt.h */, + FFFD5a8800007fc05a880000 /* PxBinaryConverter.h */, + FFFD5a8800687fc05a880068 /* PxBroadPhaseExt.h */, + FFFD5a8800d07fc05a8800d0 /* PxClothFabricCooker.h */, + FFFD5a8801387fc05a880138 /* PxClothMeshDesc.h */, + FFFD5a8801a07fc05a8801a0 /* PxClothMeshQuadifier.h */, + FFFD5a8802087fc05a880208 /* PxClothTetherCooker.h */, + FFFD5a8802707fc05a880270 /* PxCollectionExt.h */, + FFFD5a8802d87fc05a8802d8 /* PxConstraintExt.h */, + FFFD5a8803407fc05a880340 /* PxConvexMeshExt.h */, + FFFD5a8803a87fc05a8803a8 /* PxD6Joint.h */, + FFFD5a8804107fc05a880410 /* PxDefaultAllocator.h */, + FFFD5a8804787fc05a880478 /* PxDefaultCpuDispatcher.h */, + FFFD5a8804e07fc05a8804e0 /* PxDefaultErrorCallback.h */, + FFFD5a8805487fc05a880548 /* PxDefaultSimulationFilterShader.h */, + FFFD5a8805b07fc05a8805b0 /* PxDefaultStreams.h */, + FFFD5a8806187fc05a880618 /* PxDistanceJoint.h */, + FFFD5a8806807fc05a880680 /* PxExtensionsAPI.h */, + FFFD5a8806e87fc05a8806e8 /* PxFixedJoint.h */, + FFFD5a8807507fc05a880750 /* PxJoint.h */, + FFFD5a8807b87fc05a8807b8 /* PxJointLimit.h */, + FFFD5a8808207fc05a880820 /* PxMassProperties.h */, + FFFD5a8808887fc05a880888 /* PxParticleExt.h */, + FFFD5a8808f07fc05a8808f0 /* PxPrismaticJoint.h */, + FFFD5a8809587fc05a880958 /* PxRaycastCCD.h */, + FFFD5a8809c07fc05a8809c0 /* PxRepXSerializer.h */, + FFFD5a880a287fc05a880a28 /* PxRepXSimpleType.h */, + FFFD5a880a907fc05a880a90 /* PxRevoluteJoint.h */, + FFFD5a880af87fc05a880af8 /* PxRigidActorExt.h */, + FFFD5a880b607fc05a880b60 /* PxRigidBodyExt.h */, + FFFD5a880bc87fc05a880bc8 /* PxSceneQueryExt.h */, + FFFD5a880c307fc05a880c30 /* PxSerialization.h */, + FFFD5a880c987fc05a880c98 /* PxShapeExt.h */, + FFFD5a880d007fc05a880d00 /* PxSimpleFactory.h */, + FFFD5a880d687fc05a880d68 /* PxSmoothNormals.h */, + FFFD5a880dd07fc05a880dd0 /* PxSphericalJoint.h */, + FFFD5a880e387fc05a880e38 /* PxStringTableExt.h */, + FFFD5a880ea07fc05a880ea0 /* PxTriangleMeshExt.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB81476ad87f8a81476ad8 /* src */ = { + FFFB5d193c187fc05d193c18 /* src */ = { isa = PBXGroup; children = ( - FFFD820338007f8a82033800 /* ExtConstraintHelper.h */, - FFFD820338687f8a82033868 /* ExtCpuWorkerThread.h */, - FFFD820338d07f8a820338d0 /* ExtD6Joint.h */, - FFFD820339387f8a82033938 /* ExtDefaultCpuDispatcher.h */, - FFFD820339a07f8a820339a0 /* ExtDistanceJoint.h */, - FFFD82033a087f8a82033a08 /* ExtFixedJoint.h */, - FFFD82033a707f8a82033a70 /* ExtInertiaTensor.h */, - FFFD82033ad87f8a82033ad8 /* ExtJoint.h */, - FFFD82033b407f8a82033b40 /* ExtJointMetaDataExtensions.h */, - FFFD82033ba87f8a82033ba8 /* ExtPlatform.h */, - FFFD82033c107f8a82033c10 /* ExtPrismaticJoint.h */, - FFFD82033c787f8a82033c78 /* ExtPvd.h */, - FFFD82033ce07f8a82033ce0 /* ExtRevoluteJoint.h */, - FFFD82033d487f8a82033d48 /* ExtSerialization.h */, - FFFD82033db07f8a82033db0 /* ExtSharedQueueEntryPool.h */, - FFFD82033e187f8a82033e18 /* ExtSphericalJoint.h */, - FFFD82033e807f8a82033e80 /* ExtTaskQueueHelper.h */, - FFFD82033ee87f8a82033ee8 /* ExtBroadPhase.cpp */, - FFFD82033f507f8a82033f50 /* ExtClothFabricCooker.cpp */, - FFFD82033fb87f8a82033fb8 /* ExtClothGeodesicTetherCooker.cpp */, - FFFD820340207f8a82034020 /* ExtClothMeshQuadifier.cpp */, - FFFD820340887f8a82034088 /* ExtClothSimpleTetherCooker.cpp */, - FFFD820340f07f8a820340f0 /* ExtCollection.cpp */, - FFFD820341587f8a82034158 /* ExtConvexMeshExt.cpp */, - FFFD820341c07f8a820341c0 /* ExtCpuWorkerThread.cpp */, - FFFD820342287f8a82034228 /* ExtD6Joint.cpp */, - FFFD820342907f8a82034290 /* ExtD6JointSolverPrep.cpp */, - FFFD820342f87f8a820342f8 /* ExtDefaultCpuDispatcher.cpp */, - FFFD820343607f8a82034360 /* ExtDefaultErrorCallback.cpp */, - FFFD820343c87f8a820343c8 /* ExtDefaultSimulationFilterShader.cpp */, - FFFD820344307f8a82034430 /* ExtDefaultStreams.cpp */, - FFFD820344987f8a82034498 /* ExtDistanceJoint.cpp */, - FFFD820345007f8a82034500 /* ExtDistanceJointSolverPrep.cpp */, - FFFD820345687f8a82034568 /* ExtExtensions.cpp */, - FFFD820345d07f8a820345d0 /* ExtFixedJoint.cpp */, - FFFD820346387f8a82034638 /* ExtFixedJointSolverPrep.cpp */, - FFFD820346a07f8a820346a0 /* ExtJoint.cpp */, - FFFD820347087f8a82034708 /* ExtMetaData.cpp */, - FFFD820347707f8a82034770 /* ExtParticleExt.cpp */, - FFFD820347d87f8a820347d8 /* ExtPrismaticJoint.cpp */, - FFFD820348407f8a82034840 /* ExtPrismaticJointSolverPrep.cpp */, - FFFD820348a87f8a820348a8 /* ExtPvd.cpp */, - FFFD820349107f8a82034910 /* ExtPxStringTable.cpp */, - FFFD820349787f8a82034978 /* ExtRaycastCCD.cpp */, - FFFD820349e07f8a820349e0 /* ExtRevoluteJoint.cpp */, - FFFD82034a487f8a82034a48 /* ExtRevoluteJointSolverPrep.cpp */, - FFFD82034ab07f8a82034ab0 /* ExtRigidBodyExt.cpp */, - FFFD82034b187f8a82034b18 /* ExtSceneQueryExt.cpp */, - FFFD82034b807f8a82034b80 /* ExtSimpleFactory.cpp */, - FFFD82034be87f8a82034be8 /* ExtSmoothNormals.cpp */, - FFFD82034c507f8a82034c50 /* ExtSphericalJoint.cpp */, - FFFD82034cb87f8a82034cb8 /* ExtSphericalJointSolverPrep.cpp */, - FFFD82034d207f8a82034d20 /* ExtTriangleMeshExt.cpp */, + FFFD5a87ea007fc05a87ea00 /* ExtConstraintHelper.h */, + FFFD5a87ea687fc05a87ea68 /* ExtCpuWorkerThread.h */, + FFFD5a87ead07fc05a87ead0 /* ExtD6Joint.h */, + FFFD5a87eb387fc05a87eb38 /* ExtDefaultCpuDispatcher.h */, + FFFD5a87eba07fc05a87eba0 /* ExtDistanceJoint.h */, + FFFD5a87ec087fc05a87ec08 /* ExtFixedJoint.h */, + FFFD5a87ec707fc05a87ec70 /* ExtInertiaTensor.h */, + FFFD5a87ecd87fc05a87ecd8 /* ExtJoint.h */, + FFFD5a87ed407fc05a87ed40 /* ExtJointMetaDataExtensions.h */, + FFFD5a87eda87fc05a87eda8 /* ExtPlatform.h */, + FFFD5a87ee107fc05a87ee10 /* ExtPrismaticJoint.h */, + FFFD5a87ee787fc05a87ee78 /* ExtPvd.h */, + FFFD5a87eee07fc05a87eee0 /* ExtRevoluteJoint.h */, + FFFD5a87ef487fc05a87ef48 /* ExtSerialization.h */, + FFFD5a87efb07fc05a87efb0 /* ExtSharedQueueEntryPool.h */, + FFFD5a87f0187fc05a87f018 /* ExtSphericalJoint.h */, + FFFD5a87f0807fc05a87f080 /* ExtTaskQueueHelper.h */, + FFFD5a87f0e87fc05a87f0e8 /* ExtBroadPhase.cpp */, + FFFD5a87f1507fc05a87f150 /* ExtClothFabricCooker.cpp */, + FFFD5a87f1b87fc05a87f1b8 /* ExtClothGeodesicTetherCooker.cpp */, + FFFD5a87f2207fc05a87f220 /* ExtClothMeshQuadifier.cpp */, + FFFD5a87f2887fc05a87f288 /* ExtClothSimpleTetherCooker.cpp */, + FFFD5a87f2f07fc05a87f2f0 /* ExtCollection.cpp */, + FFFD5a87f3587fc05a87f358 /* ExtConvexMeshExt.cpp */, + FFFD5a87f3c07fc05a87f3c0 /* ExtCpuWorkerThread.cpp */, + FFFD5a87f4287fc05a87f428 /* ExtD6Joint.cpp */, + FFFD5a87f4907fc05a87f490 /* ExtD6JointSolverPrep.cpp */, + FFFD5a87f4f87fc05a87f4f8 /* ExtDefaultCpuDispatcher.cpp */, + FFFD5a87f5607fc05a87f560 /* ExtDefaultErrorCallback.cpp */, + FFFD5a87f5c87fc05a87f5c8 /* ExtDefaultSimulationFilterShader.cpp */, + FFFD5a87f6307fc05a87f630 /* ExtDefaultStreams.cpp */, + FFFD5a87f6987fc05a87f698 /* ExtDistanceJoint.cpp */, + FFFD5a87f7007fc05a87f700 /* ExtDistanceJointSolverPrep.cpp */, + FFFD5a87f7687fc05a87f768 /* ExtExtensions.cpp */, + FFFD5a87f7d07fc05a87f7d0 /* ExtFixedJoint.cpp */, + FFFD5a87f8387fc05a87f838 /* ExtFixedJointSolverPrep.cpp */, + FFFD5a87f8a07fc05a87f8a0 /* ExtJoint.cpp */, + FFFD5a87f9087fc05a87f908 /* ExtMetaData.cpp */, + FFFD5a87f9707fc05a87f970 /* ExtParticleExt.cpp */, + FFFD5a87f9d87fc05a87f9d8 /* ExtPrismaticJoint.cpp */, + FFFD5a87fa407fc05a87fa40 /* ExtPrismaticJointSolverPrep.cpp */, + FFFD5a87faa87fc05a87faa8 /* ExtPvd.cpp */, + FFFD5a87fb107fc05a87fb10 /* ExtPxStringTable.cpp */, + FFFD5a87fb787fc05a87fb78 /* ExtRaycastCCD.cpp */, + FFFD5a87fbe07fc05a87fbe0 /* ExtRevoluteJoint.cpp */, + FFFD5a87fc487fc05a87fc48 /* ExtRevoluteJointSolverPrep.cpp */, + FFFD5a87fcb07fc05a87fcb0 /* ExtRigidBodyExt.cpp */, + FFFD5a87fd187fc05a87fd18 /* ExtSceneQueryExt.cpp */, + FFFD5a87fd807fc05a87fd80 /* ExtSimpleFactory.cpp */, + FFFD5a87fde87fc05a87fde8 /* ExtSmoothNormals.cpp */, + FFFD5a87fe507fc05a87fe50 /* ExtSphericalJoint.cpp */, + FFFD5a87feb87fc05a87feb8 /* ExtSphericalJointSolverPrep.cpp */, + FFFD5a87ff207fc05a87ff20 /* ExtTriangleMeshExt.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB81476b007f8a81476b00 /* serialization */ = { + FFFB5d193c407fc05d193c40 /* serialization */ = { isa = PBXGroup; children = ( - FFFD820374007f8a82037400 /* SnSerialUtils.h */, - FFFD820374687f8a82037468 /* SnSerializationRegistry.h */, - FFFD820374d07f8a820374d0 /* SnSerialUtils.cpp */, - FFFD820375387f8a82037538 /* SnSerialization.cpp */, - FFFD820375a07f8a820375a0 /* SnSerializationRegistry.cpp */, - FFFD820376087f8a82037608 /* Binary/SnConvX.h */, - FFFD820376707f8a82037670 /* Binary/SnConvX_Align.h */, - FFFD820376d87f8a820376d8 /* Binary/SnConvX_Common.h */, - FFFD820377407f8a82037740 /* Binary/SnConvX_MetaData.h */, - FFFD820377a87f8a820377a8 /* Binary/SnConvX_Output.h */, - FFFD820378107f8a82037810 /* Binary/SnConvX_Union.h */, - FFFD820378787f8a82037878 /* Binary/SnSerializationContext.h */, - FFFD820378e07f8a820378e0 /* Binary/SnBinaryDeserialization.cpp */, - FFFD820379487f8a82037948 /* Binary/SnBinarySerialization.cpp */, - FFFD820379b07f8a820379b0 /* Binary/SnConvX.cpp */, - FFFD82037a187f8a82037a18 /* Binary/SnConvX_Align.cpp */, - FFFD82037a807f8a82037a80 /* Binary/SnConvX_Convert.cpp */, - FFFD82037ae87f8a82037ae8 /* Binary/SnConvX_Error.cpp */, - FFFD82037b507f8a82037b50 /* Binary/SnConvX_MetaData.cpp */, - FFFD82037bb87f8a82037bb8 /* Binary/SnConvX_Output.cpp */, - FFFD82037c207f8a82037c20 /* Binary/SnConvX_Union.cpp */, - FFFD82037c887f8a82037c88 /* Binary/SnSerializationContext.cpp */, - FFFD82037cf07f8a82037cf0 /* Xml/SnJointRepXSerializer.h */, - FFFD82037d587f8a82037d58 /* Xml/SnPxStreamOperators.h */, - FFFD82037dc07f8a82037dc0 /* Xml/SnRepX1_0Defaults.h */, - FFFD82037e287f8a82037e28 /* Xml/SnRepX3_1Defaults.h */, - FFFD82037e907f8a82037e90 /* Xml/SnRepX3_2Defaults.h */, - FFFD82037ef87f8a82037ef8 /* Xml/SnRepXCollection.h */, - FFFD82037f607f8a82037f60 /* Xml/SnRepXCoreSerializer.h */, - FFFD82037fc87f8a82037fc8 /* Xml/SnRepXSerializerImpl.h */, - FFFD820380307f8a82038030 /* Xml/SnRepXUpgrader.h */, - FFFD820380987f8a82038098 /* Xml/SnSimpleXmlWriter.h */, - FFFD820381007f8a82038100 /* Xml/SnXmlDeserializer.h */, - FFFD820381687f8a82038168 /* Xml/SnXmlImpl.h */, - FFFD820381d07f8a820381d0 /* Xml/SnXmlMemoryAllocator.h */, - FFFD820382387f8a82038238 /* Xml/SnXmlMemoryPool.h */, - FFFD820382a07f8a820382a0 /* Xml/SnXmlMemoryPoolStreams.h */, - FFFD820383087f8a82038308 /* Xml/SnXmlReader.h */, - FFFD820383707f8a82038370 /* Xml/SnXmlSerializer.h */, - FFFD820383d87f8a820383d8 /* Xml/SnXmlSimpleXmlWriter.h */, - FFFD820384407f8a82038440 /* Xml/SnXmlStringToType.h */, - FFFD820384a87f8a820384a8 /* Xml/SnXmlVisitorReader.h */, - FFFD820385107f8a82038510 /* Xml/SnXmlVisitorWriter.h */, - FFFD820385787f8a82038578 /* Xml/SnXmlWriter.h */, - FFFD820385e07f8a820385e0 /* Xml/SnJointRepXSerializer.cpp */, - FFFD820386487f8a82038648 /* Xml/SnRepXCoreSerializer.cpp */, - FFFD820386b07f8a820386b0 /* Xml/SnRepXUpgrader.cpp */, - FFFD820387187f8a82038718 /* Xml/SnXmlSerialization.cpp */, - FFFD820387807f8a82038780 /* File/SnFile.h */, + FFFD5a8834007fc05a883400 /* SnSerialUtils.h */, + FFFD5a8834687fc05a883468 /* SnSerializationRegistry.h */, + FFFD5a8834d07fc05a8834d0 /* SnSerialUtils.cpp */, + FFFD5a8835387fc05a883538 /* SnSerialization.cpp */, + FFFD5a8835a07fc05a8835a0 /* SnSerializationRegistry.cpp */, + FFFD5a8836087fc05a883608 /* Binary/SnConvX.h */, + FFFD5a8836707fc05a883670 /* Binary/SnConvX_Align.h */, + FFFD5a8836d87fc05a8836d8 /* Binary/SnConvX_Common.h */, + FFFD5a8837407fc05a883740 /* Binary/SnConvX_MetaData.h */, + FFFD5a8837a87fc05a8837a8 /* Binary/SnConvX_Output.h */, + FFFD5a8838107fc05a883810 /* Binary/SnConvX_Union.h */, + FFFD5a8838787fc05a883878 /* Binary/SnSerializationContext.h */, + FFFD5a8838e07fc05a8838e0 /* Binary/SnBinaryDeserialization.cpp */, + FFFD5a8839487fc05a883948 /* Binary/SnBinarySerialization.cpp */, + FFFD5a8839b07fc05a8839b0 /* Binary/SnConvX.cpp */, + FFFD5a883a187fc05a883a18 /* Binary/SnConvX_Align.cpp */, + FFFD5a883a807fc05a883a80 /* Binary/SnConvX_Convert.cpp */, + FFFD5a883ae87fc05a883ae8 /* Binary/SnConvX_Error.cpp */, + FFFD5a883b507fc05a883b50 /* Binary/SnConvX_MetaData.cpp */, + FFFD5a883bb87fc05a883bb8 /* Binary/SnConvX_Output.cpp */, + FFFD5a883c207fc05a883c20 /* Binary/SnConvX_Union.cpp */, + FFFD5a883c887fc05a883c88 /* Binary/SnSerializationContext.cpp */, + FFFD5a883cf07fc05a883cf0 /* Xml/SnJointRepXSerializer.h */, + FFFD5a883d587fc05a883d58 /* Xml/SnPxStreamOperators.h */, + FFFD5a883dc07fc05a883dc0 /* Xml/SnRepX1_0Defaults.h */, + FFFD5a883e287fc05a883e28 /* Xml/SnRepX3_1Defaults.h */, + FFFD5a883e907fc05a883e90 /* Xml/SnRepX3_2Defaults.h */, + FFFD5a883ef87fc05a883ef8 /* Xml/SnRepXCollection.h */, + FFFD5a883f607fc05a883f60 /* Xml/SnRepXCoreSerializer.h */, + FFFD5a883fc87fc05a883fc8 /* Xml/SnRepXSerializerImpl.h */, + FFFD5a8840307fc05a884030 /* Xml/SnRepXUpgrader.h */, + FFFD5a8840987fc05a884098 /* Xml/SnSimpleXmlWriter.h */, + FFFD5a8841007fc05a884100 /* Xml/SnXmlDeserializer.h */, + FFFD5a8841687fc05a884168 /* Xml/SnXmlImpl.h */, + FFFD5a8841d07fc05a8841d0 /* Xml/SnXmlMemoryAllocator.h */, + FFFD5a8842387fc05a884238 /* Xml/SnXmlMemoryPool.h */, + FFFD5a8842a07fc05a8842a0 /* Xml/SnXmlMemoryPoolStreams.h */, + FFFD5a8843087fc05a884308 /* Xml/SnXmlReader.h */, + FFFD5a8843707fc05a884370 /* Xml/SnXmlSerializer.h */, + FFFD5a8843d87fc05a8843d8 /* Xml/SnXmlSimpleXmlWriter.h */, + FFFD5a8844407fc05a884440 /* Xml/SnXmlStringToType.h */, + FFFD5a8844a87fc05a8844a8 /* Xml/SnXmlVisitorReader.h */, + FFFD5a8845107fc05a884510 /* Xml/SnXmlVisitorWriter.h */, + FFFD5a8845787fc05a884578 /* Xml/SnXmlWriter.h */, + FFFD5a8845e07fc05a8845e0 /* Xml/SnJointRepXSerializer.cpp */, + FFFD5a8846487fc05a884648 /* Xml/SnRepXCoreSerializer.cpp */, + FFFD5a8846b07fc05a8846b0 /* Xml/SnRepXUpgrader.cpp */, + FFFD5a8847187fc05a884718 /* Xml/SnXmlSerialization.cpp */, + FFFD5a8847807fc05a884780 /* File/SnFile.h */, ); name = "serialization"; sourceTree = SOURCE_ROOT; }; - FFFB81476b287f8a81476b28 /* metadata */ = { + FFFB5d193c687fc05d193c68 /* metadata */ = { isa = PBXGroup; children = ( - FFFD82035e007f8a82035e00 /* core/include/PvdMetaDataDefineProperties.h */, - FFFD82035e687f8a82035e68 /* core/include/PvdMetaDataExtensions.h */, - FFFD82035ed07f8a82035ed0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFD82035f387f8a82035f38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFD82035fa07f8a82035fa0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFD820360087f8a82036008 /* core/include/PxMetaDataCompare.h */, - FFFD820360707f8a82036070 /* core/include/PxMetaDataCppPrefix.h */, - FFFD820360d87f8a820360d8 /* core/include/PxMetaDataObjects.h */, - FFFD820361407f8a82036140 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFD820361a87f8a820361a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, - FFFD820362107f8a82036210 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, - FFFD820362787f8a82036278 /* extensions/include/PxExtensionMetaDataObjects.h */, - FFFD820362e07f8a820362e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, + FFFD5a8810007fc05a881000 /* core/include/PvdMetaDataDefineProperties.h */, + FFFD5a8810687fc05a881068 /* core/include/PvdMetaDataExtensions.h */, + FFFD5a8810d07fc05a8810d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFD5a8811387fc05a881138 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFD5a8811a07fc05a8811a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFD5a8812087fc05a881208 /* core/include/PxMetaDataCompare.h */, + FFFD5a8812707fc05a881270 /* core/include/PxMetaDataCppPrefix.h */, + FFFD5a8812d87fc05a8812d8 /* core/include/PxMetaDataObjects.h */, + FFFD5a8813407fc05a881340 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFD5a8813a87fc05a8813a8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, + FFFD5a8814107fc05a881410 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, + FFFD5a8814787fc05a881478 /* extensions/include/PxExtensionMetaDataObjects.h */, + FFFD5a8814e07fc05a8814e0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB814803907f8a81480390 /* SceneQuery */ = { + FFFB5d19d4d07fc05d19d4d0 /* SceneQuery */ = { isa = PBXGroup; children = ( - FFFB814825807f8a81482580 /* src */, - FFFB814825a87f8a814825a8 /* include */, + FFFB5d19f6c07fc05d19f6c0 /* src */, + FFFB5d19f6e87fc05d19f6e8 /* include */, ); name = "SceneQuery"; sourceTree = "<group>"; }; - FFFB814825807f8a81482580 /* src */ = { + FFFB5d19f6c07fc05d19f6c0 /* src */ = { isa = PBXGroup; children = ( - FFFD8203c4007f8a8203c400 /* SqAABBPruner.cpp */, - FFFD8203c4687f8a8203c468 /* SqAABBTree.cpp */, - FFFD8203c4d07f8a8203c4d0 /* SqAABBTreeUpdateMap.cpp */, - FFFD8203c5387f8a8203c538 /* SqBounds.cpp */, - FFFD8203c5a07f8a8203c5a0 /* SqBucketPruner.cpp */, - FFFD8203c6087f8a8203c608 /* SqExtendedBucketPruner.cpp */, - FFFD8203c6707f8a8203c670 /* SqMetaData.cpp */, - FFFD8203c6d87f8a8203c6d8 /* SqPruningPool.cpp */, - FFFD8203c7407f8a8203c740 /* SqPruningStructure.cpp */, - FFFD8203c7a87f8a8203c7a8 /* SqSceneQueryManager.cpp */, - FFFD8203c8107f8a8203c810 /* SqAABBPruner.h */, - FFFD8203c8787f8a8203c878 /* SqAABBTree.h */, - FFFD8203c8e07f8a8203c8e0 /* SqAABBTreeQuery.h */, - FFFD8203c9487f8a8203c948 /* SqAABBTreeUpdateMap.h */, - FFFD8203c9b07f8a8203c9b0 /* SqBounds.h */, - FFFD8203ca187f8a8203ca18 /* SqBucketPruner.h */, - FFFD8203ca807f8a8203ca80 /* SqExtendedBucketPruner.h */, - FFFD8203cae87f8a8203cae8 /* SqPrunerTestsSIMD.h */, - FFFD8203cb507f8a8203cb50 /* SqPruningPool.h */, - FFFD8203cbb87f8a8203cbb8 /* SqTypedef.h */, + FFFD5a8874007fc05a887400 /* SqAABBPruner.cpp */, + FFFD5a8874687fc05a887468 /* SqAABBTree.cpp */, + FFFD5a8874d07fc05a8874d0 /* SqAABBTreeUpdateMap.cpp */, + FFFD5a8875387fc05a887538 /* SqBounds.cpp */, + FFFD5a8875a07fc05a8875a0 /* SqBucketPruner.cpp */, + FFFD5a8876087fc05a887608 /* SqExtendedBucketPruner.cpp */, + FFFD5a8876707fc05a887670 /* SqMetaData.cpp */, + FFFD5a8876d87fc05a8876d8 /* SqPruningPool.cpp */, + FFFD5a8877407fc05a887740 /* SqPruningStructure.cpp */, + FFFD5a8877a87fc05a8877a8 /* SqSceneQueryManager.cpp */, + FFFD5a8878107fc05a887810 /* SqAABBPruner.h */, + FFFD5a8878787fc05a887878 /* SqAABBTree.h */, + FFFD5a8878e07fc05a8878e0 /* SqAABBTreeQuery.h */, + FFFD5a8879487fc05a887948 /* SqAABBTreeUpdateMap.h */, + FFFD5a8879b07fc05a8879b0 /* SqBounds.h */, + FFFD5a887a187fc05a887a18 /* SqBucketPruner.h */, + FFFD5a887a807fc05a887a80 /* SqExtendedBucketPruner.h */, + FFFD5a887ae87fc05a887ae8 /* SqPrunerTestsSIMD.h */, + FFFD5a887b507fc05a887b50 /* SqPruningPool.h */, + FFFD5a887bb87fc05a887bb8 /* SqTypedef.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB814825a87f8a814825a8 /* include */ = { + FFFB5d19f6e87fc05d19f6e8 /* include */ = { isa = PBXGroup; children = ( - FFFD814847c07f8a814847c0 /* SqPruner.h */, - FFFD814848287f8a81484828 /* SqPrunerMergeData.h */, - FFFD814848907f8a81484890 /* SqPruningStructure.h */, - FFFD814848f87f8a814848f8 /* SqSceneQueryManager.h */, + FFFD5d1a19007fc05d1a1900 /* SqPruner.h */, + FFFD5d1a19687fc05d1a1968 /* SqPrunerMergeData.h */, + FFFD5d1a19d07fc05d1a19d0 /* SqPruningStructure.h */, + FFFD5d1a1a387fc05d1a1a38 /* SqSceneQueryManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB81484a807f8a81484a80 /* SimulationController */ = { + FFFB5d1a1bc07fc05d1a1bc0 /* SimulationController */ = { isa = PBXGroup; children = ( - FFFB814869c07f8a814869c0 /* include */, - FFFB814869e87f8a814869e8 /* src */, + FFFB5d1a3b007fc05d1a3b00 /* include */, + FFFB5d1a3b287fc05d1a3b28 /* src */, ); name = "SimulationController"; sourceTree = "<group>"; }; - FFFB814869c07f8a814869c0 /* include */ = { + FFFB5d1a3b007fc05d1a3b00 /* include */ = { isa = PBXGroup; children = ( - FFFD8203ee007f8a8203ee00 /* ScActorCore.h */, - FFFD8203ee687f8a8203ee68 /* ScArticulationCore.h */, - FFFD8203eed07f8a8203eed0 /* ScArticulationJointCore.h */, - FFFD8203ef387f8a8203ef38 /* ScBodyCore.h */, - FFFD8203efa07f8a8203efa0 /* ScClothCore.h */, - FFFD8203f0087f8a8203f008 /* ScClothFabricCore.h */, - FFFD8203f0707f8a8203f070 /* ScConstraintCore.h */, - FFFD8203f0d87f8a8203f0d8 /* ScIterators.h */, - FFFD8203f1407f8a8203f140 /* ScMaterialCore.h */, - FFFD8203f1a87f8a8203f1a8 /* ScParticleSystemCore.h */, - FFFD8203f2107f8a8203f210 /* ScPhysics.h */, - FFFD8203f2787f8a8203f278 /* ScRigidCore.h */, - FFFD8203f2e07f8a8203f2e0 /* ScScene.h */, - FFFD8203f3487f8a8203f348 /* ScShapeCore.h */, - FFFD8203f3b07f8a8203f3b0 /* ScStaticCore.h */, + FFFD5a889e007fc05a889e00 /* ScActorCore.h */, + FFFD5a889e687fc05a889e68 /* ScArticulationCore.h */, + FFFD5a889ed07fc05a889ed0 /* ScArticulationJointCore.h */, + FFFD5a889f387fc05a889f38 /* ScBodyCore.h */, + FFFD5a889fa07fc05a889fa0 /* ScClothCore.h */, + FFFD5a88a0087fc05a88a008 /* ScClothFabricCore.h */, + FFFD5a88a0707fc05a88a070 /* ScConstraintCore.h */, + FFFD5a88a0d87fc05a88a0d8 /* ScIterators.h */, + FFFD5a88a1407fc05a88a140 /* ScMaterialCore.h */, + FFFD5a88a1a87fc05a88a1a8 /* ScParticleSystemCore.h */, + FFFD5a88a2107fc05a88a210 /* ScPhysics.h */, + FFFD5a88a2787fc05a88a278 /* ScRigidCore.h */, + FFFD5a88a2e07fc05a88a2e0 /* ScScene.h */, + FFFD5a88a3487fc05a88a348 /* ScShapeCore.h */, + FFFD5a88a3b07fc05a88a3b0 /* ScStaticCore.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB814869e87f8a814869e8 /* src */ = { + FFFB5d1a3b287fc05d1a3b28 /* src */ = { isa = PBXGroup; children = ( - FFFD81834e007f8a81834e00 /* ScActorElementPair.h */, - FFFD81834e687f8a81834e68 /* ScActorInteraction.h */, - FFFD81834ed07f8a81834ed0 /* ScActorPair.h */, - FFFD81834f387f8a81834f38 /* ScActorSim.h */, - FFFD81834fa07f8a81834fa0 /* ScArticulationJointSim.h */, - FFFD818350087f8a81835008 /* ScArticulationSim.h */, - FFFD818350707f8a81835070 /* ScBodySim.h */, - FFFD818350d87f8a818350d8 /* ScClient.h */, - FFFD818351407f8a81835140 /* ScConstraintGroupNode.h */, - FFFD818351a87f8a818351a8 /* ScConstraintInteraction.h */, - FFFD818352107f8a81835210 /* ScConstraintProjectionManager.h */, - FFFD818352787f8a81835278 /* ScConstraintProjectionTree.h */, - FFFD818352e07f8a818352e0 /* ScConstraintSim.h */, - FFFD818353487f8a81835348 /* ScContactReportBuffer.h */, - FFFD818353b07f8a818353b0 /* ScContactStream.h */, - FFFD818354187f8a81835418 /* ScElementInteractionMarker.h */, - FFFD818354807f8a81835480 /* ScElementSim.h */, - FFFD818354e87f8a818354e8 /* ScElementSimInteraction.h */, - FFFD818355507f8a81835550 /* ScInteraction.h */, - FFFD818355b87f8a818355b8 /* ScInteractionFlags.h */, - FFFD818356207f8a81835620 /* ScNPhaseCore.h */, - FFFD818356887f8a81835688 /* ScObjectIDTracker.h */, - FFFD818356f07f8a818356f0 /* ScRbElementInteraction.h */, - FFFD818357587f8a81835758 /* ScRigidSim.h */, - FFFD818357c07f8a818357c0 /* ScShapeInteraction.h */, - FFFD818358287f8a81835828 /* ScShapeIterator.h */, - FFFD818358907f8a81835890 /* ScShapeSim.h */, - FFFD818358f87f8a818358f8 /* ScSimStateData.h */, - FFFD818359607f8a81835960 /* ScSimStats.h */, - FFFD818359c87f8a818359c8 /* ScSimulationController.h */, - FFFD81835a307f8a81835a30 /* ScSqBoundsManager.h */, - FFFD81835a987f8a81835a98 /* ScStaticSim.h */, - FFFD81835b007f8a81835b00 /* ScTriggerInteraction.h */, - FFFD81835b687f8a81835b68 /* ScTriggerPairs.h */, - FFFD81835bd07f8a81835bd0 /* ScActorCore.cpp */, - FFFD81835c387f8a81835c38 /* ScActorSim.cpp */, - FFFD81835ca07f8a81835ca0 /* ScArticulationCore.cpp */, - FFFD81835d087f8a81835d08 /* ScArticulationJointCore.cpp */, - FFFD81835d707f8a81835d70 /* ScArticulationJointSim.cpp */, - FFFD81835dd87f8a81835dd8 /* ScArticulationSim.cpp */, - FFFD81835e407f8a81835e40 /* ScBodyCore.cpp */, - FFFD81835ea87f8a81835ea8 /* ScBodyCoreKinematic.cpp */, - FFFD81835f107f8a81835f10 /* ScBodySim.cpp */, - FFFD81835f787f8a81835f78 /* ScConstraintCore.cpp */, - FFFD81835fe07f8a81835fe0 /* ScConstraintGroupNode.cpp */, - FFFD818360487f8a81836048 /* ScConstraintInteraction.cpp */, - FFFD818360b07f8a818360b0 /* ScConstraintProjectionManager.cpp */, - FFFD818361187f8a81836118 /* ScConstraintProjectionTree.cpp */, - FFFD818361807f8a81836180 /* ScConstraintSim.cpp */, - FFFD818361e87f8a818361e8 /* ScElementInteractionMarker.cpp */, - FFFD818362507f8a81836250 /* ScElementSim.cpp */, - FFFD818362b87f8a818362b8 /* ScInteraction.cpp */, - FFFD818363207f8a81836320 /* ScIterators.cpp */, - FFFD818363887f8a81836388 /* ScMaterialCore.cpp */, - FFFD818363f07f8a818363f0 /* ScMetaData.cpp */, - FFFD818364587f8a81836458 /* ScNPhaseCore.cpp */, - FFFD818364c07f8a818364c0 /* ScPhysics.cpp */, - FFFD818365287f8a81836528 /* ScRigidCore.cpp */, - FFFD818365907f8a81836590 /* ScRigidSim.cpp */, - FFFD818365f87f8a818365f8 /* ScScene.cpp */, - FFFD818366607f8a81836660 /* ScShapeCore.cpp */, - FFFD818366c87f8a818366c8 /* ScShapeInteraction.cpp */, - FFFD818367307f8a81836730 /* ScShapeSim.cpp */, - FFFD818367987f8a81836798 /* ScSimStats.cpp */, - FFFD818368007f8a81836800 /* ScSimulationController.cpp */, - FFFD818368687f8a81836868 /* ScSqBoundsManager.cpp */, - FFFD818368d07f8a818368d0 /* ScStaticCore.cpp */, - FFFD818369387f8a81836938 /* ScStaticSim.cpp */, - FFFD818369a07f8a818369a0 /* ScTriggerInteraction.cpp */, - FFFD81836a087f8a81836a08 /* particles/ScParticleBodyInteraction.h */, - FFFD81836a707f8a81836a70 /* particles/ScParticlePacketShape.h */, - FFFD81836ad87f8a81836ad8 /* particles/ScParticleSystemSim.h */, - FFFD81836b407f8a81836b40 /* particles/ScParticleBodyInteraction.cpp */, - FFFD81836ba87f8a81836ba8 /* particles/ScParticlePacketShape.cpp */, - FFFD81836c107f8a81836c10 /* particles/ScParticleSystemCore.cpp */, - FFFD81836c787f8a81836c78 /* particles/ScParticleSystemSim.cpp */, - FFFD81836ce07f8a81836ce0 /* cloth/ScClothShape.h */, - FFFD81836d487f8a81836d48 /* cloth/ScClothSim.h */, - FFFD81836db07f8a81836db0 /* cloth/ScClothCore.cpp */, - FFFD81836e187f8a81836e18 /* cloth/ScClothFabricCore.cpp */, - FFFD81836e807f8a81836e80 /* cloth/ScClothShape.cpp */, - FFFD81836ee87f8a81836ee8 /* cloth/ScClothSim.cpp */, + FFFD5c8484007fc05c848400 /* ScActorElementPair.h */, + FFFD5c8484687fc05c848468 /* ScActorInteraction.h */, + FFFD5c8484d07fc05c8484d0 /* ScActorPair.h */, + FFFD5c8485387fc05c848538 /* ScActorSim.h */, + FFFD5c8485a07fc05c8485a0 /* ScArticulationJointSim.h */, + FFFD5c8486087fc05c848608 /* ScArticulationSim.h */, + FFFD5c8486707fc05c848670 /* ScBodySim.h */, + FFFD5c8486d87fc05c8486d8 /* ScClient.h */, + FFFD5c8487407fc05c848740 /* ScConstraintGroupNode.h */, + FFFD5c8487a87fc05c8487a8 /* ScConstraintInteraction.h */, + FFFD5c8488107fc05c848810 /* ScConstraintProjectionManager.h */, + FFFD5c8488787fc05c848878 /* ScConstraintProjectionTree.h */, + FFFD5c8488e07fc05c8488e0 /* ScConstraintSim.h */, + FFFD5c8489487fc05c848948 /* ScContactReportBuffer.h */, + FFFD5c8489b07fc05c8489b0 /* ScContactStream.h */, + FFFD5c848a187fc05c848a18 /* ScElementInteractionMarker.h */, + FFFD5c848a807fc05c848a80 /* ScElementSim.h */, + FFFD5c848ae87fc05c848ae8 /* ScElementSimInteraction.h */, + FFFD5c848b507fc05c848b50 /* ScInteraction.h */, + FFFD5c848bb87fc05c848bb8 /* ScInteractionFlags.h */, + FFFD5c848c207fc05c848c20 /* ScNPhaseCore.h */, + FFFD5c848c887fc05c848c88 /* ScObjectIDTracker.h */, + FFFD5c848cf07fc05c848cf0 /* ScRbElementInteraction.h */, + FFFD5c848d587fc05c848d58 /* ScRigidSim.h */, + FFFD5c848dc07fc05c848dc0 /* ScShapeInteraction.h */, + FFFD5c848e287fc05c848e28 /* ScShapeIterator.h */, + FFFD5c848e907fc05c848e90 /* ScShapeSim.h */, + FFFD5c848ef87fc05c848ef8 /* ScSimStateData.h */, + FFFD5c848f607fc05c848f60 /* ScSimStats.h */, + FFFD5c848fc87fc05c848fc8 /* ScSimulationController.h */, + FFFD5c8490307fc05c849030 /* ScSqBoundsManager.h */, + FFFD5c8490987fc05c849098 /* ScStaticSim.h */, + FFFD5c8491007fc05c849100 /* ScTriggerInteraction.h */, + FFFD5c8491687fc05c849168 /* ScTriggerPairs.h */, + FFFD5c8491d07fc05c8491d0 /* ScActorCore.cpp */, + FFFD5c8492387fc05c849238 /* ScActorSim.cpp */, + FFFD5c8492a07fc05c8492a0 /* ScArticulationCore.cpp */, + FFFD5c8493087fc05c849308 /* ScArticulationJointCore.cpp */, + FFFD5c8493707fc05c849370 /* ScArticulationJointSim.cpp */, + FFFD5c8493d87fc05c8493d8 /* ScArticulationSim.cpp */, + FFFD5c8494407fc05c849440 /* ScBodyCore.cpp */, + FFFD5c8494a87fc05c8494a8 /* ScBodyCoreKinematic.cpp */, + FFFD5c8495107fc05c849510 /* ScBodySim.cpp */, + FFFD5c8495787fc05c849578 /* ScConstraintCore.cpp */, + FFFD5c8495e07fc05c8495e0 /* ScConstraintGroupNode.cpp */, + FFFD5c8496487fc05c849648 /* ScConstraintInteraction.cpp */, + FFFD5c8496b07fc05c8496b0 /* ScConstraintProjectionManager.cpp */, + FFFD5c8497187fc05c849718 /* ScConstraintProjectionTree.cpp */, + FFFD5c8497807fc05c849780 /* ScConstraintSim.cpp */, + FFFD5c8497e87fc05c8497e8 /* ScElementInteractionMarker.cpp */, + FFFD5c8498507fc05c849850 /* ScElementSim.cpp */, + FFFD5c8498b87fc05c8498b8 /* ScInteraction.cpp */, + FFFD5c8499207fc05c849920 /* ScIterators.cpp */, + FFFD5c8499887fc05c849988 /* ScMaterialCore.cpp */, + FFFD5c8499f07fc05c8499f0 /* ScMetaData.cpp */, + FFFD5c849a587fc05c849a58 /* ScNPhaseCore.cpp */, + FFFD5c849ac07fc05c849ac0 /* ScPhysics.cpp */, + FFFD5c849b287fc05c849b28 /* ScRigidCore.cpp */, + FFFD5c849b907fc05c849b90 /* ScRigidSim.cpp */, + FFFD5c849bf87fc05c849bf8 /* ScScene.cpp */, + FFFD5c849c607fc05c849c60 /* ScShapeCore.cpp */, + FFFD5c849cc87fc05c849cc8 /* ScShapeInteraction.cpp */, + FFFD5c849d307fc05c849d30 /* ScShapeSim.cpp */, + FFFD5c849d987fc05c849d98 /* ScSimStats.cpp */, + FFFD5c849e007fc05c849e00 /* ScSimulationController.cpp */, + FFFD5c849e687fc05c849e68 /* ScSqBoundsManager.cpp */, + FFFD5c849ed07fc05c849ed0 /* ScStaticCore.cpp */, + FFFD5c849f387fc05c849f38 /* ScStaticSim.cpp */, + FFFD5c849fa07fc05c849fa0 /* ScTriggerInteraction.cpp */, + FFFD5c84a0087fc05c84a008 /* particles/ScParticleBodyInteraction.h */, + FFFD5c84a0707fc05c84a070 /* particles/ScParticlePacketShape.h */, + FFFD5c84a0d87fc05c84a0d8 /* particles/ScParticleSystemSim.h */, + FFFD5c84a1407fc05c84a140 /* particles/ScParticleBodyInteraction.cpp */, + FFFD5c84a1a87fc05c84a1a8 /* particles/ScParticlePacketShape.cpp */, + FFFD5c84a2107fc05c84a210 /* particles/ScParticleSystemCore.cpp */, + FFFD5c84a2787fc05c84a278 /* particles/ScParticleSystemSim.cpp */, + FFFD5c84a2e07fc05c84a2e0 /* cloth/ScClothShape.h */, + FFFD5c84a3487fc05c84a348 /* cloth/ScClothSim.h */, + FFFD5c84a3b07fc05c84a3b0 /* cloth/ScClothCore.cpp */, + FFFD5c84a4187fc05c84a418 /* cloth/ScClothFabricCore.cpp */, + FFFD5c84a4807fc05c84a480 /* cloth/ScClothShape.cpp */, + FFFD5c84a4e87fc05c84a4e8 /* cloth/ScClothSim.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB8105c6407f8a8105c640 /* PhysXCooking */ = { + FFFB5bfadce07fc05bfadce0 /* PhysXCooking */ = { isa = PBXGroup; children = ( - FFFB8105d9b07f8a8105d9b0 /* include */, - FFFB8105d9d87f8a8105d9d8 /* src */, + FFFB5bf998c07fc05bf998c0 /* include */, + FFFB5bf998e87fc05bf998e8 /* src */, ); name = "PhysXCooking"; sourceTree = "<group>"; }; - FFFB8105d9b07f8a8105d9b0 /* include */ = { + FFFB5bf998c07fc05bf998c0 /* include */ = { isa = PBXGroup; children = ( - FFFD8105f5007f8a8105f500 /* PxBVH33MidphaseDesc.h */, - FFFD8105f5687f8a8105f568 /* PxBVH34MidphaseDesc.h */, - FFFD8105f5d07f8a8105f5d0 /* PxConvexMeshDesc.h */, - FFFD8105f6387f8a8105f638 /* PxCooking.h */, - FFFD8105f6a07f8a8105f6a0 /* PxMidphaseDesc.h */, - FFFD8105f7087f8a8105f708 /* PxTriangleMeshDesc.h */, - FFFD8105f7707f8a8105f770 /* Pxc.h */, + FFFD5bf9d9707fc05bf9d970 /* PxBVH33MidphaseDesc.h */, + FFFD5bf9d9d87fc05bf9d9d8 /* PxBVH34MidphaseDesc.h */, + FFFD5bf9da407fc05bf9da40 /* PxConvexMeshDesc.h */, + FFFD5bf9daa87fc05bf9daa8 /* PxCooking.h */, + FFFD5bf9db107fc05bf9db10 /* PxMidphaseDesc.h */, + FFFD5bf9db787fc05bf9db78 /* PxTriangleMeshDesc.h */, + FFFD5bf9dbe07fc05bf9dbe0 /* Pxc.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB8105d9d87f8a8105d9d8 /* src */ = { + FFFB5bf998e87fc05bf998e8 /* src */ = { isa = PBXGroup; children = ( - FFFD8183b0007f8a8183b000 /* Adjacencies.cpp */, - FFFD8183b0687f8a8183b068 /* Cooking.cpp */, - FFFD8183b0d07f8a8183b0d0 /* CookingUtils.cpp */, - FFFD8183b1387f8a8183b138 /* EdgeList.cpp */, - FFFD8183b1a07f8a8183b1a0 /* MeshCleaner.cpp */, - FFFD8183b2087f8a8183b208 /* Quantizer.cpp */, - FFFD8183b2707f8a8183b270 /* Adjacencies.h */, - FFFD8183b2d87f8a8183b2d8 /* Cooking.h */, - FFFD8183b3407f8a8183b340 /* CookingUtils.h */, - FFFD8183b3a87f8a8183b3a8 /* EdgeList.h */, - FFFD8183b4107f8a8183b410 /* MeshCleaner.h */, - FFFD8183b4787f8a8183b478 /* Quantizer.h */, - FFFD8183b4e07f8a8183b4e0 /* mesh/GrbTriangleMeshCooking.cpp */, - FFFD8183b5487f8a8183b548 /* mesh/HeightFieldCooking.cpp */, - FFFD8183b5b07f8a8183b5b0 /* mesh/RTreeCooking.cpp */, - FFFD8183b6187f8a8183b618 /* mesh/TriangleMeshBuilder.cpp */, - FFFD8183b6807f8a8183b680 /* mesh/GrbTriangleMeshCooking.h */, - FFFD8183b6e87f8a8183b6e8 /* mesh/HeightFieldCooking.h */, - FFFD8183b7507f8a8183b750 /* mesh/QuickSelect.h */, - FFFD8183b7b87f8a8183b7b8 /* mesh/RTreeCooking.h */, - FFFD8183b8207f8a8183b820 /* mesh/TriangleMeshBuilder.h */, - FFFD8183b8887f8a8183b888 /* convex/BigConvexDataBuilder.cpp */, - FFFD8183b8f07f8a8183b8f0 /* convex/ConvexHullBuilder.cpp */, - FFFD8183b9587f8a8183b958 /* convex/ConvexHullLib.cpp */, - FFFD8183b9c07f8a8183b9c0 /* convex/ConvexHullUtils.cpp */, - FFFD8183ba287f8a8183ba28 /* convex/ConvexMeshBuilder.cpp */, - FFFD8183ba907f8a8183ba90 /* convex/ConvexPolygonsBuilder.cpp */, - FFFD8183baf87f8a8183baf8 /* convex/InflationConvexHullLib.cpp */, - FFFD8183bb607f8a8183bb60 /* convex/QuickHullConvexHullLib.cpp */, - FFFD8183bbc87f8a8183bbc8 /* convex/VolumeIntegration.cpp */, - FFFD8183bc307f8a8183bc30 /* convex/BigConvexDataBuilder.h */, - FFFD8183bc987f8a8183bc98 /* convex/ConvexHullBuilder.h */, - FFFD8183bd007f8a8183bd00 /* convex/ConvexHullLib.h */, - FFFD8183bd687f8a8183bd68 /* convex/ConvexHullUtils.h */, - FFFD8183bdd07f8a8183bdd0 /* convex/ConvexMeshBuilder.h */, - FFFD8183be387f8a8183be38 /* convex/ConvexPolygonsBuilder.h */, - FFFD8183bea07f8a8183bea0 /* convex/InflationConvexHullLib.h */, - FFFD8183bf087f8a8183bf08 /* convex/QuickHullConvexHullLib.h */, - FFFD8183bf707f8a8183bf70 /* convex/VolumeIntegration.h */, + FFFD5c8506007fc05c850600 /* Adjacencies.cpp */, + FFFD5c8506687fc05c850668 /* Cooking.cpp */, + FFFD5c8506d07fc05c8506d0 /* CookingUtils.cpp */, + FFFD5c8507387fc05c850738 /* EdgeList.cpp */, + FFFD5c8507a07fc05c8507a0 /* MeshCleaner.cpp */, + FFFD5c8508087fc05c850808 /* Quantizer.cpp */, + FFFD5c8508707fc05c850870 /* Adjacencies.h */, + FFFD5c8508d87fc05c8508d8 /* Cooking.h */, + FFFD5c8509407fc05c850940 /* CookingUtils.h */, + FFFD5c8509a87fc05c8509a8 /* EdgeList.h */, + FFFD5c850a107fc05c850a10 /* MeshCleaner.h */, + FFFD5c850a787fc05c850a78 /* Quantizer.h */, + FFFD5c850ae07fc05c850ae0 /* mesh/GrbTriangleMeshCooking.cpp */, + FFFD5c850b487fc05c850b48 /* mesh/HeightFieldCooking.cpp */, + FFFD5c850bb07fc05c850bb0 /* mesh/RTreeCooking.cpp */, + FFFD5c850c187fc05c850c18 /* mesh/TriangleMeshBuilder.cpp */, + FFFD5c850c807fc05c850c80 /* mesh/GrbTriangleMeshCooking.h */, + FFFD5c850ce87fc05c850ce8 /* mesh/HeightFieldCooking.h */, + FFFD5c850d507fc05c850d50 /* mesh/QuickSelect.h */, + FFFD5c850db87fc05c850db8 /* mesh/RTreeCooking.h */, + FFFD5c850e207fc05c850e20 /* mesh/TriangleMeshBuilder.h */, + FFFD5c850e887fc05c850e88 /* convex/BigConvexDataBuilder.cpp */, + FFFD5c850ef07fc05c850ef0 /* convex/ConvexHullBuilder.cpp */, + FFFD5c850f587fc05c850f58 /* convex/ConvexHullLib.cpp */, + FFFD5c850fc07fc05c850fc0 /* convex/ConvexHullUtils.cpp */, + FFFD5c8510287fc05c851028 /* convex/ConvexMeshBuilder.cpp */, + FFFD5c8510907fc05c851090 /* convex/ConvexPolygonsBuilder.cpp */, + FFFD5c8510f87fc05c8510f8 /* convex/InflationConvexHullLib.cpp */, + FFFD5c8511607fc05c851160 /* convex/QuickHullConvexHullLib.cpp */, + FFFD5c8511c87fc05c8511c8 /* convex/VolumeIntegration.cpp */, + FFFD5c8512307fc05c851230 /* convex/BigConvexDataBuilder.h */, + FFFD5c8512987fc05c851298 /* convex/ConvexHullBuilder.h */, + FFFD5c8513007fc05c851300 /* convex/ConvexHullLib.h */, + FFFD5c8513687fc05c851368 /* convex/ConvexHullUtils.h */, + FFFD5c8513d07fc05c8513d0 /* convex/ConvexMeshBuilder.h */, + FFFD5c8514387fc05c851438 /* convex/ConvexPolygonsBuilder.h */, + FFFD5c8514a07fc05c8514a0 /* convex/InflationConvexHullLib.h */, + FFFD5c8515087fc05c851508 /* convex/QuickHullConvexHullLib.h */, + FFFD5c8515707fc05c851570 /* convex/VolumeIntegration.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB810dc3907f8a810dc390 /* PhysXCommon */ = { + FFFB5b93e9407fc05b93e940 /* PhysXCommon */ = { isa = PBXGroup; children = ( - FFFB810cdc007f8a810cdc00 /* include */, - FFFB810cdc287f8a810cdc28 /* common */, - FFFB810cdc507f8a810cdc50 /* geomutils */, + FFFB5b92ba307fc05b92ba30 /* include */, + FFFB5b92ba587fc05b92ba58 /* common */, + FFFB5b92ba807fc05b92ba80 /* geomutils */, ); name = "PhysXCommon"; sourceTree = "<group>"; }; - FFFB810cdc007f8a810cdc00 /* include */ = { + FFFB5b92ba307fc05b92ba30 /* include */ = { isa = PBXGroup; children = ( - FFFD8200ec007f8a8200ec00 /* common/PxBase.h */, - FFFD8200ec687f8a8200ec68 /* common/PxCollection.h */, - FFFD8200ecd07f8a8200ecd0 /* common/PxCoreUtilityTypes.h */, - FFFD8200ed387f8a8200ed38 /* common/PxMetaData.h */, - FFFD8200eda07f8a8200eda0 /* common/PxMetaDataFlags.h */, - FFFD8200ee087f8a8200ee08 /* common/PxPhysXCommonConfig.h */, - FFFD8200ee707f8a8200ee70 /* common/PxPhysicsInsertionCallback.h */, - FFFD8200eed87f8a8200eed8 /* common/PxRenderBuffer.h */, - FFFD8200ef407f8a8200ef40 /* common/PxSerialFramework.h */, - FFFD8200efa87f8a8200efa8 /* common/PxSerializer.h */, - FFFD8200f0107f8a8200f010 /* common/PxStringTable.h */, - FFFD8200f0787f8a8200f078 /* common/PxTolerancesScale.h */, - FFFD8200f0e07f8a8200f0e0 /* common/PxTypeInfo.h */, - FFFD8200f1487f8a8200f148 /* geometry/PxBoxGeometry.h */, - FFFD8200f1b07f8a8200f1b0 /* geometry/PxCapsuleGeometry.h */, - FFFD8200f2187f8a8200f218 /* geometry/PxConvexMesh.h */, - FFFD8200f2807f8a8200f280 /* geometry/PxConvexMeshGeometry.h */, - FFFD8200f2e87f8a8200f2e8 /* geometry/PxGeometry.h */, - FFFD8200f3507f8a8200f350 /* geometry/PxGeometryHelpers.h */, - FFFD8200f3b87f8a8200f3b8 /* geometry/PxGeometryQuery.h */, - FFFD8200f4207f8a8200f420 /* geometry/PxHeightField.h */, - FFFD8200f4887f8a8200f488 /* geometry/PxHeightFieldDesc.h */, - FFFD8200f4f07f8a8200f4f0 /* geometry/PxHeightFieldFlag.h */, - FFFD8200f5587f8a8200f558 /* geometry/PxHeightFieldGeometry.h */, - FFFD8200f5c07f8a8200f5c0 /* geometry/PxHeightFieldSample.h */, - FFFD8200f6287f8a8200f628 /* geometry/PxMeshQuery.h */, - FFFD8200f6907f8a8200f690 /* geometry/PxMeshScale.h */, - FFFD8200f6f87f8a8200f6f8 /* geometry/PxPlaneGeometry.h */, - FFFD8200f7607f8a8200f760 /* geometry/PxSimpleTriangleMesh.h */, - FFFD8200f7c87f8a8200f7c8 /* geometry/PxSphereGeometry.h */, - FFFD8200f8307f8a8200f830 /* geometry/PxTriangle.h */, - FFFD8200f8987f8a8200f898 /* geometry/PxTriangleMesh.h */, - FFFD8200f9007f8a8200f900 /* geometry/PxTriangleMeshGeometry.h */, + FFFD5c00ec007fc05c00ec00 /* common/PxBase.h */, + FFFD5c00ec687fc05c00ec68 /* common/PxCollection.h */, + FFFD5c00ecd07fc05c00ecd0 /* common/PxCoreUtilityTypes.h */, + FFFD5c00ed387fc05c00ed38 /* common/PxMetaData.h */, + FFFD5c00eda07fc05c00eda0 /* common/PxMetaDataFlags.h */, + FFFD5c00ee087fc05c00ee08 /* common/PxPhysXCommonConfig.h */, + FFFD5c00ee707fc05c00ee70 /* common/PxPhysicsInsertionCallback.h */, + FFFD5c00eed87fc05c00eed8 /* common/PxRenderBuffer.h */, + FFFD5c00ef407fc05c00ef40 /* common/PxSerialFramework.h */, + FFFD5c00efa87fc05c00efa8 /* common/PxSerializer.h */, + FFFD5c00f0107fc05c00f010 /* common/PxStringTable.h */, + FFFD5c00f0787fc05c00f078 /* common/PxTolerancesScale.h */, + FFFD5c00f0e07fc05c00f0e0 /* common/PxTypeInfo.h */, + FFFD5c00f1487fc05c00f148 /* geometry/PxBoxGeometry.h */, + FFFD5c00f1b07fc05c00f1b0 /* geometry/PxCapsuleGeometry.h */, + FFFD5c00f2187fc05c00f218 /* geometry/PxConvexMesh.h */, + FFFD5c00f2807fc05c00f280 /* geometry/PxConvexMeshGeometry.h */, + FFFD5c00f2e87fc05c00f2e8 /* geometry/PxGeometry.h */, + FFFD5c00f3507fc05c00f350 /* geometry/PxGeometryHelpers.h */, + FFFD5c00f3b87fc05c00f3b8 /* geometry/PxGeometryQuery.h */, + FFFD5c00f4207fc05c00f420 /* geometry/PxHeightField.h */, + FFFD5c00f4887fc05c00f488 /* geometry/PxHeightFieldDesc.h */, + FFFD5c00f4f07fc05c00f4f0 /* geometry/PxHeightFieldFlag.h */, + FFFD5c00f5587fc05c00f558 /* geometry/PxHeightFieldGeometry.h */, + FFFD5c00f5c07fc05c00f5c0 /* geometry/PxHeightFieldSample.h */, + FFFD5c00f6287fc05c00f628 /* geometry/PxMeshQuery.h */, + FFFD5c00f6907fc05c00f690 /* geometry/PxMeshScale.h */, + FFFD5c00f6f87fc05c00f6f8 /* geometry/PxPlaneGeometry.h */, + FFFD5c00f7607fc05c00f760 /* geometry/PxSimpleTriangleMesh.h */, + FFFD5c00f7c87fc05c00f7c8 /* geometry/PxSphereGeometry.h */, + FFFD5c00f8307fc05c00f830 /* geometry/PxTriangle.h */, + FFFD5c00f8987fc05c00f898 /* geometry/PxTriangleMesh.h */, + FFFD5c00f9007fc05c00f900 /* geometry/PxTriangleMeshGeometry.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB810cdc287f8a810cdc28 /* common */ = { + FFFB5b92ba587fc05b92ba58 /* common */ = { isa = PBXGroup; children = ( - FFFD8180b0007f8a8180b000 /* src/CmBoxPruning.cpp */, - FFFD8180b0687f8a8180b068 /* src/CmCollection.cpp */, - FFFD8180b0d07f8a8180b0d0 /* src/CmMathUtils.cpp */, - FFFD8180b1387f8a8180b138 /* src/CmPtrTable.cpp */, - FFFD8180b1a07f8a8180b1a0 /* src/CmRadixSort.cpp */, - FFFD8180b2087f8a8180b208 /* src/CmRadixSortBuffered.cpp */, - FFFD8180b2707f8a8180b270 /* src/CmRenderOutput.cpp */, - FFFD8180b2d87f8a8180b2d8 /* src/CmVisualization.cpp */, - FFFD8180b3407f8a8180b340 /* src/CmBitMap.h */, - FFFD8180b3a87f8a8180b3a8 /* src/CmBoxPruning.h */, - FFFD8180b4107f8a8180b410 /* src/CmCollection.h */, - FFFD8180b4787f8a8180b478 /* src/CmConeLimitHelper.h */, - FFFD8180b4e07f8a8180b4e0 /* src/CmFlushPool.h */, - FFFD8180b5487f8a8180b548 /* src/CmIDPool.h */, - FFFD8180b5b07f8a8180b5b0 /* src/CmIO.h */, - FFFD8180b6187f8a8180b618 /* src/CmMatrix34.h */, - FFFD8180b6807f8a8180b680 /* src/CmPhysXCommon.h */, - FFFD8180b6e87f8a8180b6e8 /* src/CmPool.h */, - FFFD8180b7507f8a8180b750 /* src/CmPreallocatingPool.h */, - FFFD8180b7b87f8a8180b7b8 /* src/CmPriorityQueue.h */, - FFFD8180b8207f8a8180b820 /* src/CmPtrTable.h */, - FFFD8180b8887f8a8180b888 /* src/CmQueue.h */, - FFFD8180b8f07f8a8180b8f0 /* src/CmRadixSort.h */, - FFFD8180b9587f8a8180b958 /* src/CmRadixSortBuffered.h */, - FFFD8180b9c07f8a8180b9c0 /* src/CmReaderWriterLock.h */, - FFFD8180ba287f8a8180ba28 /* src/CmRefCountable.h */, - FFFD8180ba907f8a8180ba90 /* src/CmRenderBuffer.h */, - FFFD8180baf87f8a8180baf8 /* src/CmRenderOutput.h */, - FFFD8180bb607f8a8180bb60 /* src/CmScaling.h */, - FFFD8180bbc87f8a8180bbc8 /* src/CmSpatialVector.h */, - FFFD8180bc307f8a8180bc30 /* src/CmTask.h */, - FFFD8180bc987f8a8180bc98 /* src/CmTaskPool.h */, - FFFD8180bd007f8a8180bd00 /* src/CmTmpMem.h */, - FFFD8180bd687f8a8180bd68 /* src/CmTransformUtils.h */, - FFFD8180bdd07f8a8180bdd0 /* src/CmUtils.h */, - FFFD8180be387f8a8180be38 /* src/CmVisualization.h */, + FFFD5b18f6007fc05b18f600 /* src/CmBoxPruning.cpp */, + FFFD5b18f6687fc05b18f668 /* src/CmCollection.cpp */, + FFFD5b18f6d07fc05b18f6d0 /* src/CmMathUtils.cpp */, + FFFD5b18f7387fc05b18f738 /* src/CmPtrTable.cpp */, + FFFD5b18f7a07fc05b18f7a0 /* src/CmRadixSort.cpp */, + FFFD5b18f8087fc05b18f808 /* src/CmRadixSortBuffered.cpp */, + FFFD5b18f8707fc05b18f870 /* src/CmRenderOutput.cpp */, + FFFD5b18f8d87fc05b18f8d8 /* src/CmVisualization.cpp */, + FFFD5b18f9407fc05b18f940 /* src/CmBitMap.h */, + FFFD5b18f9a87fc05b18f9a8 /* src/CmBoxPruning.h */, + FFFD5b18fa107fc05b18fa10 /* src/CmCollection.h */, + FFFD5b18fa787fc05b18fa78 /* src/CmConeLimitHelper.h */, + FFFD5b18fae07fc05b18fae0 /* src/CmFlushPool.h */, + FFFD5b18fb487fc05b18fb48 /* src/CmIDPool.h */, + FFFD5b18fbb07fc05b18fbb0 /* src/CmIO.h */, + FFFD5b18fc187fc05b18fc18 /* src/CmMatrix34.h */, + FFFD5b18fc807fc05b18fc80 /* src/CmPhysXCommon.h */, + FFFD5b18fce87fc05b18fce8 /* src/CmPool.h */, + FFFD5b18fd507fc05b18fd50 /* src/CmPreallocatingPool.h */, + FFFD5b18fdb87fc05b18fdb8 /* src/CmPriorityQueue.h */, + FFFD5b18fe207fc05b18fe20 /* src/CmPtrTable.h */, + FFFD5b18fe887fc05b18fe88 /* src/CmQueue.h */, + FFFD5b18fef07fc05b18fef0 /* src/CmRadixSort.h */, + FFFD5b18ff587fc05b18ff58 /* src/CmRadixSortBuffered.h */, + FFFD5b18ffc07fc05b18ffc0 /* src/CmReaderWriterLock.h */, + FFFD5b1900287fc05b190028 /* src/CmRefCountable.h */, + FFFD5b1900907fc05b190090 /* src/CmRenderBuffer.h */, + FFFD5b1900f87fc05b1900f8 /* src/CmRenderOutput.h */, + FFFD5b1901607fc05b190160 /* src/CmScaling.h */, + FFFD5b1901c87fc05b1901c8 /* src/CmSpatialVector.h */, + FFFD5b1902307fc05b190230 /* src/CmTask.h */, + FFFD5b1902987fc05b190298 /* src/CmTaskPool.h */, + FFFD5b1903007fc05b190300 /* src/CmTmpMem.h */, + FFFD5b1903687fc05b190368 /* src/CmTransformUtils.h */, + FFFD5b1903d07fc05b1903d0 /* src/CmUtils.h */, + FFFD5b1904387fc05b190438 /* src/CmVisualization.h */, ); name = "common"; sourceTree = SOURCE_ROOT; }; - FFFB810cdc507f8a810cdc50 /* geomutils */ = { + FFFB5b92ba807fc05b92ba80 /* geomutils */ = { isa = PBXGroup; children = ( - FFFD820010007f8a82001000 /* headers/GuAxes.h */, - FFFD820010687f8a82001068 /* headers/GuBox.h */, - FFFD820010d07f8a820010d0 /* headers/GuDistanceSegmentBox.h */, - FFFD820011387f8a82001138 /* headers/GuDistanceSegmentSegment.h */, - FFFD820011a07f8a820011a0 /* headers/GuIntersectionBoxBox.h */, - FFFD820012087f8a82001208 /* headers/GuIntersectionTriangleBox.h */, - FFFD820012707f8a82001270 /* headers/GuRaycastTests.h */, - FFFD820012d87f8a820012d8 /* headers/GuSIMDHelpers.h */, - FFFD820013407f8a82001340 /* headers/GuSegment.h */, - FFFD820013a87f8a820013a8 /* ../../Include/GeomUtils */, - FFFD820014107f8a82001410 /* src/GuBounds.h */, - FFFD820014787f8a82001478 /* src/GuCapsule.h */, - FFFD820014e07f8a820014e0 /* src/GuCenterExtents.h */, - FFFD820015487f8a82001548 /* src/GuGeometryUnion.h */, - FFFD820015b07f8a820015b0 /* src/GuInternal.h */, - FFFD820016187f8a82001618 /* src/GuMTD.h */, - FFFD820016807f8a82001680 /* src/GuMeshFactory.h */, - FFFD820016e87f8a820016e8 /* src/GuOverlapTests.h */, - FFFD820017507f8a82001750 /* src/GuSerialize.h */, - FFFD820017b87f8a820017b8 /* src/GuSphere.h */, - FFFD820018207f8a82001820 /* src/GuSweepMTD.h */, - FFFD820018887f8a82001888 /* src/GuSweepSharedTests.h */, - FFFD820018f07f8a820018f0 /* src/GuSweepTests.h */, - FFFD820019587f8a82001958 /* src/contact/GuContactMethodImpl.h */, - FFFD820019c07f8a820019c0 /* src/contact/GuContactPolygonPolygon.h */, - FFFD82001a287f8a82001a28 /* src/contact/GuFeatureCode.h */, - FFFD82001a907f8a82001a90 /* src/contact/GuLegacyTraceLineCallback.h */, - FFFD82001af87f8a82001af8 /* src/common/GuBarycentricCoordinates.h */, - FFFD82001b607f8a82001b60 /* src/common/GuBoxConversion.h */, - FFFD82001bc87f8a82001bc8 /* src/common/GuEdgeCache.h */, - FFFD82001c307f8a82001c30 /* src/common/GuEdgeListData.h */, - FFFD82001c987f8a82001c98 /* src/common/GuSeparatingAxes.h */, - FFFD82001d007f8a82001d00 /* src/convex/GuBigConvexData.h */, - FFFD82001d687f8a82001d68 /* src/convex/GuBigConvexData2.h */, - FFFD82001dd07f8a82001dd0 /* src/convex/GuConvexEdgeFlags.h */, - FFFD82001e387f8a82001e38 /* src/convex/GuConvexHelper.h */, - FFFD82001ea07f8a82001ea0 /* src/convex/GuConvexMesh.h */, - FFFD82001f087f8a82001f08 /* src/convex/GuConvexMeshData.h */, - FFFD82001f707f8a82001f70 /* src/convex/GuConvexSupportTable.h */, - FFFD82001fd87f8a82001fd8 /* src/convex/GuConvexUtilsInternal.h */, - FFFD820020407f8a82002040 /* src/convex/GuCubeIndex.h */, - FFFD820020a87f8a820020a8 /* src/convex/GuHillClimbing.h */, - FFFD820021107f8a82002110 /* src/convex/GuShapeConvex.h */, - FFFD820021787f8a82002178 /* src/distance/GuDistancePointBox.h */, - FFFD820021e07f8a820021e0 /* src/distance/GuDistancePointSegment.h */, - FFFD820022487f8a82002248 /* src/distance/GuDistancePointTriangle.h */, - FFFD820022b07f8a820022b0 /* src/distance/GuDistancePointTriangleSIMD.h */, - FFFD820023187f8a82002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, - FFFD820023807f8a82002380 /* src/distance/GuDistanceSegmentTriangle.h */, - FFFD820023e87f8a820023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, - FFFD820024507f8a82002450 /* src/sweep/GuSweepBoxBox.h */, - FFFD820024b87f8a820024b8 /* src/sweep/GuSweepBoxSphere.h */, - FFFD820025207f8a82002520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, - FFFD820025887f8a82002588 /* src/sweep/GuSweepBoxTriangle_SAT.h */, - FFFD820025f07f8a820025f0 /* src/sweep/GuSweepCapsuleBox.h */, - FFFD820026587f8a82002658 /* src/sweep/GuSweepCapsuleCapsule.h */, - FFFD820026c07f8a820026c0 /* src/sweep/GuSweepCapsuleTriangle.h */, - FFFD820027287f8a82002728 /* src/sweep/GuSweepSphereCapsule.h */, - FFFD820027907f8a82002790 /* src/sweep/GuSweepSphereSphere.h */, - FFFD820027f87f8a820027f8 /* src/sweep/GuSweepSphereTriangle.h */, - FFFD820028607f8a82002860 /* src/sweep/GuSweepTriangleUtils.h */, - FFFD820028c87f8a820028c8 /* src/gjk/GuEPA.h */, - FFFD820029307f8a82002930 /* src/gjk/GuEPAFacet.h */, - FFFD820029987f8a82002998 /* src/gjk/GuGJK.h */, - FFFD82002a007f8a82002a00 /* src/gjk/GuGJKPenetration.h */, - FFFD82002a687f8a82002a68 /* src/gjk/GuGJKRaycast.h */, - FFFD82002ad07f8a82002ad0 /* src/gjk/GuGJKSimplex.h */, - FFFD82002b387f8a82002b38 /* src/gjk/GuGJKTest.h */, - FFFD82002ba07f8a82002ba0 /* src/gjk/GuGJKType.h */, - FFFD82002c087f8a82002c08 /* src/gjk/GuGJKUtil.h */, - FFFD82002c707f8a82002c70 /* src/gjk/GuVecBox.h */, - FFFD82002cd87f8a82002cd8 /* src/gjk/GuVecCapsule.h */, - FFFD82002d407f8a82002d40 /* src/gjk/GuVecConvex.h */, - FFFD82002da87f8a82002da8 /* src/gjk/GuVecConvexHull.h */, - FFFD82002e107f8a82002e10 /* src/gjk/GuVecConvexHullNoScale.h */, - FFFD82002e787f8a82002e78 /* src/gjk/GuVecPlane.h */, - FFFD82002ee07f8a82002ee0 /* src/gjk/GuVecShrunkBox.h */, - FFFD82002f487f8a82002f48 /* src/gjk/GuVecShrunkConvexHull.h */, - FFFD82002fb07f8a82002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, - FFFD820030187f8a82003018 /* src/gjk/GuVecSphere.h */, - FFFD820030807f8a82003080 /* src/gjk/GuVecTriangle.h */, - FFFD820030e87f8a820030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, - FFFD820031507f8a82003150 /* src/intersection/GuIntersectionEdgeEdge.h */, - FFFD820031b87f8a820031b8 /* src/intersection/GuIntersectionRay.h */, - FFFD820032207f8a82003220 /* src/intersection/GuIntersectionRayBox.h */, - FFFD820032887f8a82003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */, - FFFD820032f07f8a820032f0 /* src/intersection/GuIntersectionRayCapsule.h */, - FFFD820033587f8a82003358 /* src/intersection/GuIntersectionRayPlane.h */, - FFFD820033c07f8a820033c0 /* src/intersection/GuIntersectionRaySphere.h */, - FFFD820034287f8a82003428 /* src/intersection/GuIntersectionRayTriangle.h */, - FFFD820034907f8a82003490 /* src/intersection/GuIntersectionSphereBox.h */, - FFFD820034f87f8a820034f8 /* src/mesh/GuBV32.h */, - FFFD820035607f8a82003560 /* src/mesh/GuBV32Build.h */, - FFFD820035c87f8a820035c8 /* src/mesh/GuBV4.h */, - FFFD820036307f8a82003630 /* src/mesh/GuBV4Build.h */, - FFFD820036987f8a82003698 /* src/mesh/GuBV4Settings.h */, - FFFD820037007f8a82003700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, - FFFD820037687f8a82003768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, - FFFD820037d07f8a820037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, - FFFD820038387f8a82003838 /* src/mesh/GuBV4_BoxSweep_Internal.h */, - FFFD820038a07f8a820038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, - FFFD820039087f8a82003908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, - FFFD820039707f8a82003970 /* src/mesh/GuBV4_Common.h */, - FFFD820039d87f8a820039d8 /* src/mesh/GuBV4_Internal.h */, - FFFD82003a407f8a82003a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, - FFFD82003aa87f8a82003aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, - FFFD82003b107f8a82003b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, - FFFD82003b787f8a82003b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, - FFFD82003be07f8a82003be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, - FFFD82003c487f8a82003c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, - FFFD82003cb07f8a82003cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, - FFFD82003d187f8a82003d18 /* src/mesh/GuBV4_Slabs.h */, - FFFD82003d807f8a82003d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, - FFFD82003de87f8a82003de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, - FFFD82003e507f8a82003e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, - FFFD82003eb87f8a82003eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, - FFFD82003f207f8a82003f20 /* src/mesh/GuBVConstants.h */, - FFFD82003f887f8a82003f88 /* src/mesh/GuMeshData.h */, - FFFD82003ff07f8a82003ff0 /* src/mesh/GuMidphaseInterface.h */, - FFFD820040587f8a82004058 /* src/mesh/GuRTree.h */, - FFFD820040c07f8a820040c0 /* src/mesh/GuSweepConvexTri.h */, - FFFD820041287f8a82004128 /* src/mesh/GuSweepMesh.h */, - FFFD820041907f8a82004190 /* src/mesh/GuTriangle32.h */, - FFFD820041f87f8a820041f8 /* src/mesh/GuTriangleCache.h */, - FFFD820042607f8a82004260 /* src/mesh/GuTriangleMesh.h */, - FFFD820042c87f8a820042c8 /* src/mesh/GuTriangleMeshBV4.h */, - FFFD820043307f8a82004330 /* src/mesh/GuTriangleMeshRTree.h */, - FFFD820043987f8a82004398 /* src/mesh/GuTriangleVertexPointers.h */, - FFFD820044007f8a82004400 /* src/hf/GuEntityReport.h */, - FFFD820044687f8a82004468 /* src/hf/GuHeightField.h */, - FFFD820044d07f8a820044d0 /* src/hf/GuHeightFieldData.h */, - FFFD820045387f8a82004538 /* src/hf/GuHeightFieldUtil.h */, - FFFD820045a07f8a820045a0 /* src/pcm/GuPCMContactConvexCommon.h */, - FFFD820046087f8a82004608 /* src/pcm/GuPCMContactGen.h */, - FFFD820046707f8a82004670 /* src/pcm/GuPCMContactGenUtil.h */, - FFFD820046d87f8a820046d8 /* src/pcm/GuPCMContactMeshCallback.h */, - FFFD820047407f8a82004740 /* src/pcm/GuPCMShapeConvex.h */, - FFFD820047a87f8a820047a8 /* src/pcm/GuPCMTriangleContactGen.h */, - FFFD820048107f8a82004810 /* src/pcm/GuPersistentContactManifold.h */, - FFFD820048787f8a82004878 /* src/ccd/GuCCDSweepConvexMesh.h */, - FFFD820048e07f8a820048e0 /* src/GuBounds.cpp */, - FFFD820049487f8a82004948 /* src/GuBox.cpp */, - FFFD820049b07f8a820049b0 /* src/GuCCTSweepTests.cpp */, - FFFD82004a187f8a82004a18 /* src/GuCapsule.cpp */, - FFFD82004a807f8a82004a80 /* src/GuGeometryQuery.cpp */, - FFFD82004ae87f8a82004ae8 /* src/GuGeometryUnion.cpp */, - FFFD82004b507f8a82004b50 /* src/GuInternal.cpp */, - FFFD82004bb87f8a82004bb8 /* src/GuMTD.cpp */, - FFFD82004c207f8a82004c20 /* src/GuMeshFactory.cpp */, - FFFD82004c887f8a82004c88 /* src/GuMetaData.cpp */, - FFFD82004cf07f8a82004cf0 /* src/GuOverlapTests.cpp */, - FFFD82004d587f8a82004d58 /* src/GuRaycastTests.cpp */, - FFFD82004dc07f8a82004dc0 /* src/GuSerialize.cpp */, - FFFD82004e287f8a82004e28 /* src/GuSweepMTD.cpp */, - FFFD82004e907f8a82004e90 /* src/GuSweepSharedTests.cpp */, - FFFD82004ef87f8a82004ef8 /* src/GuSweepTests.cpp */, - FFFD82004f607f8a82004f60 /* src/contact/GuContactBoxBox.cpp */, - FFFD82004fc87f8a82004fc8 /* src/contact/GuContactCapsuleBox.cpp */, - FFFD820050307f8a82005030 /* src/contact/GuContactCapsuleCapsule.cpp */, - FFFD820050987f8a82005098 /* src/contact/GuContactCapsuleConvex.cpp */, - FFFD820051007f8a82005100 /* src/contact/GuContactCapsuleMesh.cpp */, - FFFD820051687f8a82005168 /* src/contact/GuContactConvexConvex.cpp */, - FFFD820051d07f8a820051d0 /* src/contact/GuContactConvexMesh.cpp */, - FFFD820052387f8a82005238 /* src/contact/GuContactPlaneBox.cpp */, - FFFD820052a07f8a820052a0 /* src/contact/GuContactPlaneCapsule.cpp */, - FFFD820053087f8a82005308 /* src/contact/GuContactPlaneConvex.cpp */, - FFFD820053707f8a82005370 /* src/contact/GuContactPolygonPolygon.cpp */, - FFFD820053d87f8a820053d8 /* src/contact/GuContactSphereBox.cpp */, - FFFD820054407f8a82005440 /* src/contact/GuContactSphereCapsule.cpp */, - FFFD820054a87f8a820054a8 /* src/contact/GuContactSphereMesh.cpp */, - FFFD820055107f8a82005510 /* src/contact/GuContactSpherePlane.cpp */, - FFFD820055787f8a82005578 /* src/contact/GuContactSphereSphere.cpp */, - FFFD820055e07f8a820055e0 /* src/contact/GuFeatureCode.cpp */, - FFFD820056487f8a82005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */, - FFFD820056b07f8a820056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, - FFFD820057187f8a82005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */, - FFFD820057807f8a82005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */, - FFFD820057e87f8a820057e8 /* src/common/GuBarycentricCoordinates.cpp */, - FFFD820058507f8a82005850 /* src/common/GuSeparatingAxes.cpp */, - FFFD820058b87f8a820058b8 /* src/convex/GuBigConvexData.cpp */, - FFFD820059207f8a82005920 /* src/convex/GuConvexHelper.cpp */, - FFFD820059887f8a82005988 /* src/convex/GuConvexMesh.cpp */, - FFFD820059f07f8a820059f0 /* src/convex/GuConvexSupportTable.cpp */, - FFFD82005a587f8a82005a58 /* src/convex/GuConvexUtilsInternal.cpp */, - FFFD82005ac07f8a82005ac0 /* src/convex/GuHillClimbing.cpp */, - FFFD82005b287f8a82005b28 /* src/convex/GuShapeConvex.cpp */, - FFFD82005b907f8a82005b90 /* src/distance/GuDistancePointBox.cpp */, - FFFD82005bf87f8a82005bf8 /* src/distance/GuDistancePointTriangle.cpp */, - FFFD82005c607f8a82005c60 /* src/distance/GuDistanceSegmentBox.cpp */, - FFFD82005cc87f8a82005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */, - FFFD82005d307f8a82005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */, - FFFD82005d987f8a82005d98 /* src/sweep/GuSweepBoxBox.cpp */, - FFFD82005e007f8a82005e00 /* src/sweep/GuSweepBoxSphere.cpp */, - FFFD82005e687f8a82005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, - FFFD82005ed07f8a82005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, - FFFD82005f387f8a82005f38 /* src/sweep/GuSweepCapsuleBox.cpp */, - FFFD82005fa07f8a82005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, - FFFD820060087f8a82006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */, - FFFD820060707f8a82006070 /* src/sweep/GuSweepSphereCapsule.cpp */, - FFFD820060d87f8a820060d8 /* src/sweep/GuSweepSphereSphere.cpp */, - FFFD820061407f8a82006140 /* src/sweep/GuSweepSphereTriangle.cpp */, - FFFD820061a87f8a820061a8 /* src/sweep/GuSweepTriangleUtils.cpp */, - FFFD820062107f8a82006210 /* src/gjk/GuEPA.cpp */, - FFFD820062787f8a82006278 /* src/gjk/GuGJKSimplex.cpp */, - FFFD820062e07f8a820062e0 /* src/gjk/GuGJKTest.cpp */, - FFFD820063487f8a82006348 /* src/intersection/GuIntersectionBoxBox.cpp */, - FFFD820063b07f8a820063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, - FFFD820064187f8a82006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */, - FFFD820064807f8a82006480 /* src/intersection/GuIntersectionRayBox.cpp */, - FFFD820064e87f8a820064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, - FFFD820065507f8a82006550 /* src/intersection/GuIntersectionRaySphere.cpp */, - FFFD820065b87f8a820065b8 /* src/intersection/GuIntersectionSphereBox.cpp */, - FFFD820066207f8a82006620 /* src/intersection/GuIntersectionTriangleBox.cpp */, - FFFD820066887f8a82006688 /* src/mesh/GuBV32.cpp */, - FFFD820066f07f8a820066f0 /* src/mesh/GuBV32Build.cpp */, - FFFD820067587f8a82006758 /* src/mesh/GuBV4.cpp */, - FFFD820067c07f8a820067c0 /* src/mesh/GuBV4Build.cpp */, - FFFD820068287f8a82006828 /* src/mesh/GuBV4_AABBSweep.cpp */, - FFFD820068907f8a82006890 /* src/mesh/GuBV4_BoxOverlap.cpp */, - FFFD820068f87f8a820068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, - FFFD820069607f8a82006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, - FFFD820069c87f8a820069c8 /* src/mesh/GuBV4_OBBSweep.cpp */, - FFFD82006a307f8a82006a30 /* src/mesh/GuBV4_Raycast.cpp */, - FFFD82006a987f8a82006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */, - FFFD82006b007f8a82006b00 /* src/mesh/GuBV4_SphereSweep.cpp */, - FFFD82006b687f8a82006b68 /* src/mesh/GuMeshQuery.cpp */, - FFFD82006bd07f8a82006bd0 /* src/mesh/GuMidphaseBV4.cpp */, - FFFD82006c387f8a82006c38 /* src/mesh/GuMidphaseRTree.cpp */, - FFFD82006ca07f8a82006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */, - FFFD82006d087f8a82006d08 /* src/mesh/GuRTree.cpp */, - FFFD82006d707f8a82006d70 /* src/mesh/GuRTreeQueries.cpp */, - FFFD82006dd87f8a82006dd8 /* src/mesh/GuSweepsMesh.cpp */, - FFFD82006e407f8a82006e40 /* src/mesh/GuTriangleMesh.cpp */, - FFFD82006ea87f8a82006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */, - FFFD82006f107f8a82006f10 /* src/mesh/GuTriangleMeshRTree.cpp */, - FFFD82006f787f8a82006f78 /* src/hf/GuHeightField.cpp */, - FFFD82006fe07f8a82006fe0 /* src/hf/GuHeightFieldUtil.cpp */, - FFFD820070487f8a82007048 /* src/hf/GuOverlapTestsHF.cpp */, - FFFD820070b07f8a820070b0 /* src/hf/GuSweepsHF.cpp */, - FFFD820071187f8a82007118 /* src/pcm/GuPCMContactBoxBox.cpp */, - FFFD820071807f8a82007180 /* src/pcm/GuPCMContactBoxConvex.cpp */, - FFFD820071e87f8a820071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, - FFFD820072507f8a82007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, - FFFD820072b87f8a820072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, - FFFD820073207f8a82007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, - FFFD820073887f8a82007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, - FFFD820073f07f8a820073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, - FFFD820074587f8a82007458 /* src/pcm/GuPCMContactConvexConvex.cpp */, - FFFD820074c07f8a820074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, - FFFD820075287f8a82007528 /* src/pcm/GuPCMContactConvexMesh.cpp */, - FFFD820075907f8a82007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, - FFFD820075f87f8a820075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, - FFFD820076607f8a82007660 /* src/pcm/GuPCMContactPlaneBox.cpp */, - FFFD820076c87f8a820076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, - FFFD820077307f8a82007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */, - FFFD820077987f8a82007798 /* src/pcm/GuPCMContactSphereBox.cpp */, - FFFD820078007f8a82007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */, - FFFD820078687f8a82007868 /* src/pcm/GuPCMContactSphereConvex.cpp */, - FFFD820078d07f8a820078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, - FFFD820079387f8a82007938 /* src/pcm/GuPCMContactSphereMesh.cpp */, - FFFD820079a07f8a820079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, - FFFD82007a087f8a82007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */, - FFFD82007a707f8a82007a70 /* src/pcm/GuPCMShapeConvex.cpp */, - FFFD82007ad87f8a82007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */, - FFFD82007b407f8a82007b40 /* src/pcm/GuPersistentContactManifold.cpp */, - FFFD82007ba87f8a82007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, - FFFD82007c107f8a82007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */, + FFFD5c0010007fc05c001000 /* headers/GuAxes.h */, + FFFD5c0010687fc05c001068 /* headers/GuBox.h */, + FFFD5c0010d07fc05c0010d0 /* headers/GuDistanceSegmentBox.h */, + FFFD5c0011387fc05c001138 /* headers/GuDistanceSegmentSegment.h */, + FFFD5c0011a07fc05c0011a0 /* headers/GuIntersectionBoxBox.h */, + FFFD5c0012087fc05c001208 /* headers/GuIntersectionTriangleBox.h */, + FFFD5c0012707fc05c001270 /* headers/GuRaycastTests.h */, + FFFD5c0012d87fc05c0012d8 /* headers/GuSIMDHelpers.h */, + FFFD5c0013407fc05c001340 /* headers/GuSegment.h */, + FFFD5c0013a87fc05c0013a8 /* ../../Include/GeomUtils */, + FFFD5c0014107fc05c001410 /* src/GuBounds.h */, + FFFD5c0014787fc05c001478 /* src/GuCapsule.h */, + FFFD5c0014e07fc05c0014e0 /* src/GuCenterExtents.h */, + FFFD5c0015487fc05c001548 /* src/GuGeometryUnion.h */, + FFFD5c0015b07fc05c0015b0 /* src/GuInternal.h */, + FFFD5c0016187fc05c001618 /* src/GuMTD.h */, + FFFD5c0016807fc05c001680 /* src/GuMeshFactory.h */, + FFFD5c0016e87fc05c0016e8 /* src/GuOverlapTests.h */, + FFFD5c0017507fc05c001750 /* src/GuSerialize.h */, + FFFD5c0017b87fc05c0017b8 /* src/GuSphere.h */, + FFFD5c0018207fc05c001820 /* src/GuSweepMTD.h */, + FFFD5c0018887fc05c001888 /* src/GuSweepSharedTests.h */, + FFFD5c0018f07fc05c0018f0 /* src/GuSweepTests.h */, + FFFD5c0019587fc05c001958 /* src/contact/GuContactMethodImpl.h */, + FFFD5c0019c07fc05c0019c0 /* src/contact/GuContactPolygonPolygon.h */, + FFFD5c001a287fc05c001a28 /* src/contact/GuFeatureCode.h */, + FFFD5c001a907fc05c001a90 /* src/contact/GuLegacyTraceLineCallback.h */, + FFFD5c001af87fc05c001af8 /* src/common/GuBarycentricCoordinates.h */, + FFFD5c001b607fc05c001b60 /* src/common/GuBoxConversion.h */, + FFFD5c001bc87fc05c001bc8 /* src/common/GuEdgeCache.h */, + FFFD5c001c307fc05c001c30 /* src/common/GuEdgeListData.h */, + FFFD5c001c987fc05c001c98 /* src/common/GuSeparatingAxes.h */, + FFFD5c001d007fc05c001d00 /* src/convex/GuBigConvexData.h */, + FFFD5c001d687fc05c001d68 /* src/convex/GuBigConvexData2.h */, + FFFD5c001dd07fc05c001dd0 /* src/convex/GuConvexEdgeFlags.h */, + FFFD5c001e387fc05c001e38 /* src/convex/GuConvexHelper.h */, + FFFD5c001ea07fc05c001ea0 /* src/convex/GuConvexMesh.h */, + FFFD5c001f087fc05c001f08 /* src/convex/GuConvexMeshData.h */, + FFFD5c001f707fc05c001f70 /* src/convex/GuConvexSupportTable.h */, + FFFD5c001fd87fc05c001fd8 /* src/convex/GuConvexUtilsInternal.h */, + FFFD5c0020407fc05c002040 /* src/convex/GuCubeIndex.h */, + FFFD5c0020a87fc05c0020a8 /* src/convex/GuHillClimbing.h */, + FFFD5c0021107fc05c002110 /* src/convex/GuShapeConvex.h */, + FFFD5c0021787fc05c002178 /* src/distance/GuDistancePointBox.h */, + FFFD5c0021e07fc05c0021e0 /* src/distance/GuDistancePointSegment.h */, + FFFD5c0022487fc05c002248 /* src/distance/GuDistancePointTriangle.h */, + FFFD5c0022b07fc05c0022b0 /* src/distance/GuDistancePointTriangleSIMD.h */, + FFFD5c0023187fc05c002318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, + FFFD5c0023807fc05c002380 /* src/distance/GuDistanceSegmentTriangle.h */, + FFFD5c0023e87fc05c0023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, + FFFD5c0024507fc05c002450 /* src/sweep/GuSweepBoxBox.h */, + FFFD5c0024b87fc05c0024b8 /* src/sweep/GuSweepBoxSphere.h */, + FFFD5c0025207fc05c002520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, + FFFD5c0025887fc05c002588 /* src/sweep/GuSweepBoxTriangle_SAT.h */, + FFFD5c0025f07fc05c0025f0 /* src/sweep/GuSweepCapsuleBox.h */, + FFFD5c0026587fc05c002658 /* src/sweep/GuSweepCapsuleCapsule.h */, + FFFD5c0026c07fc05c0026c0 /* src/sweep/GuSweepCapsuleTriangle.h */, + FFFD5c0027287fc05c002728 /* src/sweep/GuSweepSphereCapsule.h */, + FFFD5c0027907fc05c002790 /* src/sweep/GuSweepSphereSphere.h */, + FFFD5c0027f87fc05c0027f8 /* src/sweep/GuSweepSphereTriangle.h */, + FFFD5c0028607fc05c002860 /* src/sweep/GuSweepTriangleUtils.h */, + FFFD5c0028c87fc05c0028c8 /* src/gjk/GuEPA.h */, + FFFD5c0029307fc05c002930 /* src/gjk/GuEPAFacet.h */, + FFFD5c0029987fc05c002998 /* src/gjk/GuGJK.h */, + FFFD5c002a007fc05c002a00 /* src/gjk/GuGJKPenetration.h */, + FFFD5c002a687fc05c002a68 /* src/gjk/GuGJKRaycast.h */, + FFFD5c002ad07fc05c002ad0 /* src/gjk/GuGJKSimplex.h */, + FFFD5c002b387fc05c002b38 /* src/gjk/GuGJKTest.h */, + FFFD5c002ba07fc05c002ba0 /* src/gjk/GuGJKType.h */, + FFFD5c002c087fc05c002c08 /* src/gjk/GuGJKUtil.h */, + FFFD5c002c707fc05c002c70 /* src/gjk/GuVecBox.h */, + FFFD5c002cd87fc05c002cd8 /* src/gjk/GuVecCapsule.h */, + FFFD5c002d407fc05c002d40 /* src/gjk/GuVecConvex.h */, + FFFD5c002da87fc05c002da8 /* src/gjk/GuVecConvexHull.h */, + FFFD5c002e107fc05c002e10 /* src/gjk/GuVecConvexHullNoScale.h */, + FFFD5c002e787fc05c002e78 /* src/gjk/GuVecPlane.h */, + FFFD5c002ee07fc05c002ee0 /* src/gjk/GuVecShrunkBox.h */, + FFFD5c002f487fc05c002f48 /* src/gjk/GuVecShrunkConvexHull.h */, + FFFD5c002fb07fc05c002fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, + FFFD5c0030187fc05c003018 /* src/gjk/GuVecSphere.h */, + FFFD5c0030807fc05c003080 /* src/gjk/GuVecTriangle.h */, + FFFD5c0030e87fc05c0030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, + FFFD5c0031507fc05c003150 /* src/intersection/GuIntersectionEdgeEdge.h */, + FFFD5c0031b87fc05c0031b8 /* src/intersection/GuIntersectionRay.h */, + FFFD5c0032207fc05c003220 /* src/intersection/GuIntersectionRayBox.h */, + FFFD5c0032887fc05c003288 /* src/intersection/GuIntersectionRayBoxSIMD.h */, + FFFD5c0032f07fc05c0032f0 /* src/intersection/GuIntersectionRayCapsule.h */, + FFFD5c0033587fc05c003358 /* src/intersection/GuIntersectionRayPlane.h */, + FFFD5c0033c07fc05c0033c0 /* src/intersection/GuIntersectionRaySphere.h */, + FFFD5c0034287fc05c003428 /* src/intersection/GuIntersectionRayTriangle.h */, + FFFD5c0034907fc05c003490 /* src/intersection/GuIntersectionSphereBox.h */, + FFFD5c0034f87fc05c0034f8 /* src/mesh/GuBV32.h */, + FFFD5c0035607fc05c003560 /* src/mesh/GuBV32Build.h */, + FFFD5c0035c87fc05c0035c8 /* src/mesh/GuBV4.h */, + FFFD5c0036307fc05c003630 /* src/mesh/GuBV4Build.h */, + FFFD5c0036987fc05c003698 /* src/mesh/GuBV4Settings.h */, + FFFD5c0037007fc05c003700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, + FFFD5c0037687fc05c003768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, + FFFD5c0037d07fc05c0037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, + FFFD5c0038387fc05c003838 /* src/mesh/GuBV4_BoxSweep_Internal.h */, + FFFD5c0038a07fc05c0038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, + FFFD5c0039087fc05c003908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, + FFFD5c0039707fc05c003970 /* src/mesh/GuBV4_Common.h */, + FFFD5c0039d87fc05c0039d8 /* src/mesh/GuBV4_Internal.h */, + FFFD5c003a407fc05c003a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, + FFFD5c003aa87fc05c003aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, + FFFD5c003b107fc05c003b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, + FFFD5c003b787fc05c003b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, + FFFD5c003be07fc05c003be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, + FFFD5c003c487fc05c003c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, + FFFD5c003cb07fc05c003cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, + FFFD5c003d187fc05c003d18 /* src/mesh/GuBV4_Slabs.h */, + FFFD5c003d807fc05c003d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, + FFFD5c003de87fc05c003de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, + FFFD5c003e507fc05c003e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, + FFFD5c003eb87fc05c003eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, + FFFD5c003f207fc05c003f20 /* src/mesh/GuBVConstants.h */, + FFFD5c003f887fc05c003f88 /* src/mesh/GuMeshData.h */, + FFFD5c003ff07fc05c003ff0 /* src/mesh/GuMidphaseInterface.h */, + FFFD5c0040587fc05c004058 /* src/mesh/GuRTree.h */, + FFFD5c0040c07fc05c0040c0 /* src/mesh/GuSweepConvexTri.h */, + FFFD5c0041287fc05c004128 /* src/mesh/GuSweepMesh.h */, + FFFD5c0041907fc05c004190 /* src/mesh/GuTriangle32.h */, + FFFD5c0041f87fc05c0041f8 /* src/mesh/GuTriangleCache.h */, + FFFD5c0042607fc05c004260 /* src/mesh/GuTriangleMesh.h */, + FFFD5c0042c87fc05c0042c8 /* src/mesh/GuTriangleMeshBV4.h */, + FFFD5c0043307fc05c004330 /* src/mesh/GuTriangleMeshRTree.h */, + FFFD5c0043987fc05c004398 /* src/mesh/GuTriangleVertexPointers.h */, + FFFD5c0044007fc05c004400 /* src/hf/GuEntityReport.h */, + FFFD5c0044687fc05c004468 /* src/hf/GuHeightField.h */, + FFFD5c0044d07fc05c0044d0 /* src/hf/GuHeightFieldData.h */, + FFFD5c0045387fc05c004538 /* src/hf/GuHeightFieldUtil.h */, + FFFD5c0045a07fc05c0045a0 /* src/pcm/GuPCMContactConvexCommon.h */, + FFFD5c0046087fc05c004608 /* src/pcm/GuPCMContactGen.h */, + FFFD5c0046707fc05c004670 /* src/pcm/GuPCMContactGenUtil.h */, + FFFD5c0046d87fc05c0046d8 /* src/pcm/GuPCMContactMeshCallback.h */, + FFFD5c0047407fc05c004740 /* src/pcm/GuPCMShapeConvex.h */, + FFFD5c0047a87fc05c0047a8 /* src/pcm/GuPCMTriangleContactGen.h */, + FFFD5c0048107fc05c004810 /* src/pcm/GuPersistentContactManifold.h */, + FFFD5c0048787fc05c004878 /* src/ccd/GuCCDSweepConvexMesh.h */, + FFFD5c0048e07fc05c0048e0 /* src/GuBounds.cpp */, + FFFD5c0049487fc05c004948 /* src/GuBox.cpp */, + FFFD5c0049b07fc05c0049b0 /* src/GuCCTSweepTests.cpp */, + FFFD5c004a187fc05c004a18 /* src/GuCapsule.cpp */, + FFFD5c004a807fc05c004a80 /* src/GuGeometryQuery.cpp */, + FFFD5c004ae87fc05c004ae8 /* src/GuGeometryUnion.cpp */, + FFFD5c004b507fc05c004b50 /* src/GuInternal.cpp */, + FFFD5c004bb87fc05c004bb8 /* src/GuMTD.cpp */, + FFFD5c004c207fc05c004c20 /* src/GuMeshFactory.cpp */, + FFFD5c004c887fc05c004c88 /* src/GuMetaData.cpp */, + FFFD5c004cf07fc05c004cf0 /* src/GuOverlapTests.cpp */, + FFFD5c004d587fc05c004d58 /* src/GuRaycastTests.cpp */, + FFFD5c004dc07fc05c004dc0 /* src/GuSerialize.cpp */, + FFFD5c004e287fc05c004e28 /* src/GuSweepMTD.cpp */, + FFFD5c004e907fc05c004e90 /* src/GuSweepSharedTests.cpp */, + FFFD5c004ef87fc05c004ef8 /* src/GuSweepTests.cpp */, + FFFD5c004f607fc05c004f60 /* src/contact/GuContactBoxBox.cpp */, + FFFD5c004fc87fc05c004fc8 /* src/contact/GuContactCapsuleBox.cpp */, + FFFD5c0050307fc05c005030 /* src/contact/GuContactCapsuleCapsule.cpp */, + FFFD5c0050987fc05c005098 /* src/contact/GuContactCapsuleConvex.cpp */, + FFFD5c0051007fc05c005100 /* src/contact/GuContactCapsuleMesh.cpp */, + FFFD5c0051687fc05c005168 /* src/contact/GuContactConvexConvex.cpp */, + FFFD5c0051d07fc05c0051d0 /* src/contact/GuContactConvexMesh.cpp */, + FFFD5c0052387fc05c005238 /* src/contact/GuContactPlaneBox.cpp */, + FFFD5c0052a07fc05c0052a0 /* src/contact/GuContactPlaneCapsule.cpp */, + FFFD5c0053087fc05c005308 /* src/contact/GuContactPlaneConvex.cpp */, + FFFD5c0053707fc05c005370 /* src/contact/GuContactPolygonPolygon.cpp */, + FFFD5c0053d87fc05c0053d8 /* src/contact/GuContactSphereBox.cpp */, + FFFD5c0054407fc05c005440 /* src/contact/GuContactSphereCapsule.cpp */, + FFFD5c0054a87fc05c0054a8 /* src/contact/GuContactSphereMesh.cpp */, + FFFD5c0055107fc05c005510 /* src/contact/GuContactSpherePlane.cpp */, + FFFD5c0055787fc05c005578 /* src/contact/GuContactSphereSphere.cpp */, + FFFD5c0055e07fc05c0055e0 /* src/contact/GuFeatureCode.cpp */, + FFFD5c0056487fc05c005648 /* src/contact/GuLegacyContactBoxHeightField.cpp */, + FFFD5c0056b07fc05c0056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, + FFFD5c0057187fc05c005718 /* src/contact/GuLegacyContactConvexHeightField.cpp */, + FFFD5c0057807fc05c005780 /* src/contact/GuLegacyContactSphereHeightField.cpp */, + FFFD5c0057e87fc05c0057e8 /* src/common/GuBarycentricCoordinates.cpp */, + FFFD5c0058507fc05c005850 /* src/common/GuSeparatingAxes.cpp */, + FFFD5c0058b87fc05c0058b8 /* src/convex/GuBigConvexData.cpp */, + FFFD5c0059207fc05c005920 /* src/convex/GuConvexHelper.cpp */, + FFFD5c0059887fc05c005988 /* src/convex/GuConvexMesh.cpp */, + FFFD5c0059f07fc05c0059f0 /* src/convex/GuConvexSupportTable.cpp */, + FFFD5c005a587fc05c005a58 /* src/convex/GuConvexUtilsInternal.cpp */, + FFFD5c005ac07fc05c005ac0 /* src/convex/GuHillClimbing.cpp */, + FFFD5c005b287fc05c005b28 /* src/convex/GuShapeConvex.cpp */, + FFFD5c005b907fc05c005b90 /* src/distance/GuDistancePointBox.cpp */, + FFFD5c005bf87fc05c005bf8 /* src/distance/GuDistancePointTriangle.cpp */, + FFFD5c005c607fc05c005c60 /* src/distance/GuDistanceSegmentBox.cpp */, + FFFD5c005cc87fc05c005cc8 /* src/distance/GuDistanceSegmentSegment.cpp */, + FFFD5c005d307fc05c005d30 /* src/distance/GuDistanceSegmentTriangle.cpp */, + FFFD5c005d987fc05c005d98 /* src/sweep/GuSweepBoxBox.cpp */, + FFFD5c005e007fc05c005e00 /* src/sweep/GuSweepBoxSphere.cpp */, + FFFD5c005e687fc05c005e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, + FFFD5c005ed07fc05c005ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, + FFFD5c005f387fc05c005f38 /* src/sweep/GuSweepCapsuleBox.cpp */, + FFFD5c005fa07fc05c005fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, + FFFD5c0060087fc05c006008 /* src/sweep/GuSweepCapsuleTriangle.cpp */, + FFFD5c0060707fc05c006070 /* src/sweep/GuSweepSphereCapsule.cpp */, + FFFD5c0060d87fc05c0060d8 /* src/sweep/GuSweepSphereSphere.cpp */, + FFFD5c0061407fc05c006140 /* src/sweep/GuSweepSphereTriangle.cpp */, + FFFD5c0061a87fc05c0061a8 /* src/sweep/GuSweepTriangleUtils.cpp */, + FFFD5c0062107fc05c006210 /* src/gjk/GuEPA.cpp */, + FFFD5c0062787fc05c006278 /* src/gjk/GuGJKSimplex.cpp */, + FFFD5c0062e07fc05c0062e0 /* src/gjk/GuGJKTest.cpp */, + FFFD5c0063487fc05c006348 /* src/intersection/GuIntersectionBoxBox.cpp */, + FFFD5c0063b07fc05c0063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, + FFFD5c0064187fc05c006418 /* src/intersection/GuIntersectionEdgeEdge.cpp */, + FFFD5c0064807fc05c006480 /* src/intersection/GuIntersectionRayBox.cpp */, + FFFD5c0064e87fc05c0064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, + FFFD5c0065507fc05c006550 /* src/intersection/GuIntersectionRaySphere.cpp */, + FFFD5c0065b87fc05c0065b8 /* src/intersection/GuIntersectionSphereBox.cpp */, + FFFD5c0066207fc05c006620 /* src/intersection/GuIntersectionTriangleBox.cpp */, + FFFD5c0066887fc05c006688 /* src/mesh/GuBV32.cpp */, + FFFD5c0066f07fc05c0066f0 /* src/mesh/GuBV32Build.cpp */, + FFFD5c0067587fc05c006758 /* src/mesh/GuBV4.cpp */, + FFFD5c0067c07fc05c0067c0 /* src/mesh/GuBV4Build.cpp */, + FFFD5c0068287fc05c006828 /* src/mesh/GuBV4_AABBSweep.cpp */, + FFFD5c0068907fc05c006890 /* src/mesh/GuBV4_BoxOverlap.cpp */, + FFFD5c0068f87fc05c0068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, + FFFD5c0069607fc05c006960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, + FFFD5c0069c87fc05c0069c8 /* src/mesh/GuBV4_OBBSweep.cpp */, + FFFD5c006a307fc05c006a30 /* src/mesh/GuBV4_Raycast.cpp */, + FFFD5c006a987fc05c006a98 /* src/mesh/GuBV4_SphereOverlap.cpp */, + FFFD5c006b007fc05c006b00 /* src/mesh/GuBV4_SphereSweep.cpp */, + FFFD5c006b687fc05c006b68 /* src/mesh/GuMeshQuery.cpp */, + FFFD5c006bd07fc05c006bd0 /* src/mesh/GuMidphaseBV4.cpp */, + FFFD5c006c387fc05c006c38 /* src/mesh/GuMidphaseRTree.cpp */, + FFFD5c006ca07fc05c006ca0 /* src/mesh/GuOverlapTestsMesh.cpp */, + FFFD5c006d087fc05c006d08 /* src/mesh/GuRTree.cpp */, + FFFD5c006d707fc05c006d70 /* src/mesh/GuRTreeQueries.cpp */, + FFFD5c006dd87fc05c006dd8 /* src/mesh/GuSweepsMesh.cpp */, + FFFD5c006e407fc05c006e40 /* src/mesh/GuTriangleMesh.cpp */, + FFFD5c006ea87fc05c006ea8 /* src/mesh/GuTriangleMeshBV4.cpp */, + FFFD5c006f107fc05c006f10 /* src/mesh/GuTriangleMeshRTree.cpp */, + FFFD5c006f787fc05c006f78 /* src/hf/GuHeightField.cpp */, + FFFD5c006fe07fc05c006fe0 /* src/hf/GuHeightFieldUtil.cpp */, + FFFD5c0070487fc05c007048 /* src/hf/GuOverlapTestsHF.cpp */, + FFFD5c0070b07fc05c0070b0 /* src/hf/GuSweepsHF.cpp */, + FFFD5c0071187fc05c007118 /* src/pcm/GuPCMContactBoxBox.cpp */, + FFFD5c0071807fc05c007180 /* src/pcm/GuPCMContactBoxConvex.cpp */, + FFFD5c0071e87fc05c0071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, + FFFD5c0072507fc05c007250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, + FFFD5c0072b87fc05c0072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, + FFFD5c0073207fc05c007320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, + FFFD5c0073887fc05c007388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, + FFFD5c0073f07fc05c0073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, + FFFD5c0074587fc05c007458 /* src/pcm/GuPCMContactConvexConvex.cpp */, + FFFD5c0074c07fc05c0074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, + FFFD5c0075287fc05c007528 /* src/pcm/GuPCMContactConvexMesh.cpp */, + FFFD5c0075907fc05c007590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, + FFFD5c0075f87fc05c0075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, + FFFD5c0076607fc05c007660 /* src/pcm/GuPCMContactPlaneBox.cpp */, + FFFD5c0076c87fc05c0076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, + FFFD5c0077307fc05c007730 /* src/pcm/GuPCMContactPlaneConvex.cpp */, + FFFD5c0077987fc05c007798 /* src/pcm/GuPCMContactSphereBox.cpp */, + FFFD5c0078007fc05c007800 /* src/pcm/GuPCMContactSphereCapsule.cpp */, + FFFD5c0078687fc05c007868 /* src/pcm/GuPCMContactSphereConvex.cpp */, + FFFD5c0078d07fc05c0078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, + FFFD5c0079387fc05c007938 /* src/pcm/GuPCMContactSphereMesh.cpp */, + FFFD5c0079a07fc05c0079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, + FFFD5c007a087fc05c007a08 /* src/pcm/GuPCMContactSphereSphere.cpp */, + FFFD5c007a707fc05c007a70 /* src/pcm/GuPCMShapeConvex.cpp */, + FFFD5c007ad87fc05c007ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */, + FFFD5c007b407fc05c007b40 /* src/pcm/GuPersistentContactManifold.cpp */, + FFFD5c007ba87fc05c007ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, + FFFD5c007c107fc05c007c10 /* src/ccd/GuCCDSweepPrimitives.cpp */, ); name = "geomutils"; sourceTree = SOURCE_ROOT; }; - FFFB810edec07f8a810edec0 /* PxFoundation */ = { + FFFB5b91b1007fc05b91b100 /* PxFoundation */ = { isa = PBXGroup; children = ( - FFFB810ee4a07f8a810ee4a0 /* include */, - FFFB810ee4c87f8a810ee4c8 /* src */, + FFFB5b91b7f07fc05b91b7f0 /* include */, + FFFB5b91b8187fc05b91b818 /* src */, ); name = "PxFoundation"; sourceTree = "<group>"; }; - FFFB810ee4a07f8a810ee4a0 /* include */ = { + FFFB5b91b7f07fc05b91b7f0 /* include */ = { isa = PBXGroup; children = ( - FFFD81828e007f8a81828e00 /* Px.h */, - FFFD81828e687f8a81828e68 /* PxAllocatorCallback.h */, - FFFD81828ed07f8a81828ed0 /* PxAssert.h */, - FFFD81828f387f8a81828f38 /* PxBitAndData.h */, - FFFD81828fa07f8a81828fa0 /* PxBounds3.h */, - FFFD818290087f8a81829008 /* PxErrorCallback.h */, - FFFD818290707f8a81829070 /* PxErrors.h */, - FFFD818290d87f8a818290d8 /* PxFlags.h */, - FFFD818291407f8a81829140 /* PxFoundation.h */, - FFFD818291a87f8a818291a8 /* PxFoundationVersion.h */, - FFFD818292107f8a81829210 /* PxIO.h */, - FFFD818292787f8a81829278 /* PxIntrinsics.h */, - FFFD818292e07f8a818292e0 /* PxMat33.h */, - FFFD818293487f8a81829348 /* PxMat44.h */, - FFFD818293b07f8a818293b0 /* PxMath.h */, - FFFD818294187f8a81829418 /* PxMathUtils.h */, - FFFD818294807f8a81829480 /* PxMemory.h */, - FFFD818294e87f8a818294e8 /* PxPlane.h */, - FFFD818295507f8a81829550 /* PxPreprocessor.h */, - FFFD818295b87f8a818295b8 /* PxProfiler.h */, - FFFD818296207f8a81829620 /* PxQuat.h */, - FFFD818296887f8a81829688 /* PxSimpleTypes.h */, - FFFD818296f07f8a818296f0 /* PxStrideIterator.h */, - FFFD818297587f8a81829758 /* PxTransform.h */, - FFFD818297c07f8a818297c0 /* PxUnionCast.h */, - FFFD818298287f8a81829828 /* PxVec2.h */, - FFFD818298907f8a81829890 /* PxVec3.h */, - FFFD818298f87f8a818298f8 /* PxVec4.h */, - FFFD818299607f8a81829960 /* unix/PxUnixIntrinsics.h */, + FFFD5b1856007fc05b185600 /* Px.h */, + FFFD5b1856687fc05b185668 /* PxAllocatorCallback.h */, + FFFD5b1856d07fc05b1856d0 /* PxAssert.h */, + FFFD5b1857387fc05b185738 /* PxBitAndData.h */, + FFFD5b1857a07fc05b1857a0 /* PxBounds3.h */, + FFFD5b1858087fc05b185808 /* PxErrorCallback.h */, + FFFD5b1858707fc05b185870 /* PxErrors.h */, + FFFD5b1858d87fc05b1858d8 /* PxFlags.h */, + FFFD5b1859407fc05b185940 /* PxFoundation.h */, + FFFD5b1859a87fc05b1859a8 /* PxFoundationVersion.h */, + FFFD5b185a107fc05b185a10 /* PxIO.h */, + FFFD5b185a787fc05b185a78 /* PxIntrinsics.h */, + FFFD5b185ae07fc05b185ae0 /* PxMat33.h */, + FFFD5b185b487fc05b185b48 /* PxMat44.h */, + FFFD5b185bb07fc05b185bb0 /* PxMath.h */, + FFFD5b185c187fc05b185c18 /* PxMathUtils.h */, + FFFD5b185c807fc05b185c80 /* PxMemory.h */, + FFFD5b185ce87fc05b185ce8 /* PxPlane.h */, + FFFD5b185d507fc05b185d50 /* PxPreprocessor.h */, + FFFD5b185db87fc05b185db8 /* PxProfiler.h */, + FFFD5b185e207fc05b185e20 /* PxQuat.h */, + FFFD5b185e887fc05b185e88 /* PxSimpleTypes.h */, + FFFD5b185ef07fc05b185ef0 /* PxStrideIterator.h */, + FFFD5b185f587fc05b185f58 /* PxTransform.h */, + FFFD5b185fc07fc05b185fc0 /* PxUnionCast.h */, + FFFD5b1860287fc05b186028 /* PxVec2.h */, + FFFD5b1860907fc05b186090 /* PxVec3.h */, + FFFD5b1860f87fc05b1860f8 /* PxVec4.h */, + FFFD5b1861607fc05b186160 /* unix/PxUnixIntrinsics.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB810ee4c87f8a810ee4c8 /* src */ = { + FFFB5b91b8187fc05b91b818 /* src */ = { isa = PBXGroup; children = ( - FFFD81811c007f8a81811c00 /* include/Ps.h */, - FFFD81811c687f8a81811c68 /* include/PsAlignedMalloc.h */, - FFFD81811cd07f8a81811cd0 /* include/PsAlloca.h */, - FFFD81811d387f8a81811d38 /* include/PsAllocator.h */, - FFFD81811da07f8a81811da0 /* include/PsAoS.h */, - FFFD81811e087f8a81811e08 /* include/PsArray.h */, - FFFD81811e707f8a81811e70 /* include/PsAtomic.h */, - FFFD81811ed87f8a81811ed8 /* include/PsBasicTemplates.h */, - FFFD81811f407f8a81811f40 /* include/PsBitUtils.h */, - FFFD81811fa87f8a81811fa8 /* include/PsBroadcast.h */, - FFFD818120107f8a81812010 /* include/PsCpu.h */, - FFFD818120787f8a81812078 /* include/PsFPU.h */, - FFFD818120e07f8a818120e0 /* include/PsFoundation.h */, - FFFD818121487f8a81812148 /* include/PsHash.h */, - FFFD818121b07f8a818121b0 /* include/PsHashInternals.h */, - FFFD818122187f8a81812218 /* include/PsHashMap.h */, - FFFD818122807f8a81812280 /* include/PsHashSet.h */, - FFFD818122e87f8a818122e8 /* include/PsInlineAllocator.h */, - FFFD818123507f8a81812350 /* include/PsInlineAoS.h */, - FFFD818123b87f8a818123b8 /* include/PsInlineArray.h */, - FFFD818124207f8a81812420 /* include/PsIntrinsics.h */, - FFFD818124887f8a81812488 /* include/PsMathUtils.h */, - FFFD818124f07f8a818124f0 /* include/PsMutex.h */, - FFFD818125587f8a81812558 /* include/PsPool.h */, - FFFD818125c07f8a818125c0 /* include/PsSList.h */, - FFFD818126287f8a81812628 /* include/PsSocket.h */, - FFFD818126907f8a81812690 /* include/PsSort.h */, - FFFD818126f87f8a818126f8 /* include/PsSortInternals.h */, - FFFD818127607f8a81812760 /* include/PsString.h */, - FFFD818127c87f8a818127c8 /* include/PsSync.h */, - FFFD818128307f8a81812830 /* include/PsTempAllocator.h */, - FFFD818128987f8a81812898 /* include/PsThread.h */, - FFFD818129007f8a81812900 /* include/PsTime.h */, - FFFD818129687f8a81812968 /* include/PsUserAllocated.h */, - FFFD818129d07f8a818129d0 /* include/PsUtilities.h */, - FFFD81812a387f8a81812a38 /* include/PsVecMath.h */, - FFFD81812aa07f8a81812aa0 /* include/PsVecMathAoSScalar.h */, - FFFD81812b087f8a81812b08 /* include/PsVecMathAoSScalarInline.h */, - FFFD81812b707f8a81812b70 /* include/PsVecMathSSE.h */, - FFFD81812bd87f8a81812bd8 /* include/PsVecMathUtilities.h */, - FFFD81812c407f8a81812c40 /* include/PsVecQuat.h */, - FFFD81812ca87f8a81812ca8 /* include/PsVecTransform.h */, - FFFD81812d107f8a81812d10 /* include/unix/PsUnixAoS.h */, - FFFD81812d787f8a81812d78 /* include/unix/PsUnixFPU.h */, - FFFD81812de07f8a81812de0 /* include/unix/PsUnixInlineAoS.h */, - FFFD81812e487f8a81812e48 /* include/unix/PsUnixIntrinsics.h */, - FFFD81812eb07f8a81812eb0 /* include/unix/PsUnixTrigConstants.h */, - FFFD81812f187f8a81812f18 /* src/PsAllocator.cpp */, - FFFD81812f807f8a81812f80 /* src/PsAssert.cpp */, - FFFD81812fe87f8a81812fe8 /* src/PsFoundation.cpp */, - FFFD818130507f8a81813050 /* src/PsMathUtils.cpp */, - FFFD818130b87f8a818130b8 /* src/PsString.cpp */, - FFFD818131207f8a81813120 /* src/PsTempAllocator.cpp */, - FFFD818131887f8a81813188 /* src/PsUtilities.cpp */, - FFFD818131f07f8a818131f0 /* src/unix/PsUnixAtomic.cpp */, - FFFD818132587f8a81813258 /* src/unix/PsUnixCpu.cpp */, - FFFD818132c07f8a818132c0 /* src/unix/PsUnixFPU.cpp */, - FFFD818133287f8a81813328 /* src/unix/PsUnixMutex.cpp */, - FFFD818133907f8a81813390 /* src/unix/PsUnixPrintString.cpp */, - FFFD818133f87f8a818133f8 /* src/unix/PsUnixSList.cpp */, - FFFD818134607f8a81813460 /* src/unix/PsUnixSocket.cpp */, - FFFD818134c87f8a818134c8 /* src/unix/PsUnixSync.cpp */, - FFFD818135307f8a81813530 /* src/unix/PsUnixThread.cpp */, - FFFD818135987f8a81813598 /* src/unix/PsUnixTime.cpp */, + FFFD5b17c0007fc05b17c000 /* include/Ps.h */, + FFFD5b17c0687fc05b17c068 /* include/PsAlignedMalloc.h */, + FFFD5b17c0d07fc05b17c0d0 /* include/PsAlloca.h */, + FFFD5b17c1387fc05b17c138 /* include/PsAllocator.h */, + FFFD5b17c1a07fc05b17c1a0 /* include/PsAoS.h */, + FFFD5b17c2087fc05b17c208 /* include/PsArray.h */, + FFFD5b17c2707fc05b17c270 /* include/PsAtomic.h */, + FFFD5b17c2d87fc05b17c2d8 /* include/PsBasicTemplates.h */, + FFFD5b17c3407fc05b17c340 /* include/PsBitUtils.h */, + FFFD5b17c3a87fc05b17c3a8 /* include/PsBroadcast.h */, + FFFD5b17c4107fc05b17c410 /* include/PsCpu.h */, + FFFD5b17c4787fc05b17c478 /* include/PsFPU.h */, + FFFD5b17c4e07fc05b17c4e0 /* include/PsFoundation.h */, + FFFD5b17c5487fc05b17c548 /* include/PsHash.h */, + FFFD5b17c5b07fc05b17c5b0 /* include/PsHashInternals.h */, + FFFD5b17c6187fc05b17c618 /* include/PsHashMap.h */, + FFFD5b17c6807fc05b17c680 /* include/PsHashSet.h */, + FFFD5b17c6e87fc05b17c6e8 /* include/PsInlineAllocator.h */, + FFFD5b17c7507fc05b17c750 /* include/PsInlineAoS.h */, + FFFD5b17c7b87fc05b17c7b8 /* include/PsInlineArray.h */, + FFFD5b17c8207fc05b17c820 /* include/PsIntrinsics.h */, + FFFD5b17c8887fc05b17c888 /* include/PsMathUtils.h */, + FFFD5b17c8f07fc05b17c8f0 /* include/PsMutex.h */, + FFFD5b17c9587fc05b17c958 /* include/PsPool.h */, + FFFD5b17c9c07fc05b17c9c0 /* include/PsSList.h */, + FFFD5b17ca287fc05b17ca28 /* include/PsSocket.h */, + FFFD5b17ca907fc05b17ca90 /* include/PsSort.h */, + FFFD5b17caf87fc05b17caf8 /* include/PsSortInternals.h */, + FFFD5b17cb607fc05b17cb60 /* include/PsString.h */, + FFFD5b17cbc87fc05b17cbc8 /* include/PsSync.h */, + FFFD5b17cc307fc05b17cc30 /* include/PsTempAllocator.h */, + FFFD5b17cc987fc05b17cc98 /* include/PsThread.h */, + FFFD5b17cd007fc05b17cd00 /* include/PsTime.h */, + FFFD5b17cd687fc05b17cd68 /* include/PsUserAllocated.h */, + FFFD5b17cdd07fc05b17cdd0 /* include/PsUtilities.h */, + FFFD5b17ce387fc05b17ce38 /* include/PsVecMath.h */, + FFFD5b17cea07fc05b17cea0 /* include/PsVecMathAoSScalar.h */, + FFFD5b17cf087fc05b17cf08 /* include/PsVecMathAoSScalarInline.h */, + FFFD5b17cf707fc05b17cf70 /* include/PsVecMathSSE.h */, + FFFD5b17cfd87fc05b17cfd8 /* include/PsVecMathUtilities.h */, + FFFD5b17d0407fc05b17d040 /* include/PsVecQuat.h */, + FFFD5b17d0a87fc05b17d0a8 /* include/PsVecTransform.h */, + FFFD5b17d1107fc05b17d110 /* include/unix/PsUnixAoS.h */, + FFFD5b17d1787fc05b17d178 /* include/unix/PsUnixFPU.h */, + FFFD5b17d1e07fc05b17d1e0 /* include/unix/PsUnixInlineAoS.h */, + FFFD5b17d2487fc05b17d248 /* include/unix/PsUnixIntrinsics.h */, + FFFD5b17d2b07fc05b17d2b0 /* include/unix/PsUnixTrigConstants.h */, + FFFD5b17d3187fc05b17d318 /* src/PsAllocator.cpp */, + FFFD5b17d3807fc05b17d380 /* src/PsAssert.cpp */, + FFFD5b17d3e87fc05b17d3e8 /* src/PsFoundation.cpp */, + FFFD5b17d4507fc05b17d450 /* src/PsMathUtils.cpp */, + FFFD5b17d4b87fc05b17d4b8 /* src/PsString.cpp */, + FFFD5b17d5207fc05b17d520 /* src/PsTempAllocator.cpp */, + FFFD5b17d5887fc05b17d588 /* src/PsUtilities.cpp */, + FFFD5b17d5f07fc05b17d5f0 /* src/unix/PsUnixAtomic.cpp */, + FFFD5b17d6587fc05b17d658 /* src/unix/PsUnixCpu.cpp */, + FFFD5b17d6c07fc05b17d6c0 /* src/unix/PsUnixFPU.cpp */, + FFFD5b17d7287fc05b17d728 /* src/unix/PsUnixMutex.cpp */, + FFFD5b17d7907fc05b17d790 /* src/unix/PsUnixPrintString.cpp */, + FFFD5b17d7f87fc05b17d7f8 /* src/unix/PsUnixSList.cpp */, + FFFD5b17d8607fc05b17d860 /* src/unix/PsUnixSocket.cpp */, + FFFD5b17d8c87fc05b17d8c8 /* src/unix/PsUnixSync.cpp */, + FFFD5b17d9307fc05b17d930 /* src/unix/PsUnixThread.cpp */, + FFFD5b17d9987fc05b17d998 /* src/unix/PsUnixTime.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB81169e707f8a81169e70 /* PxPvdSDK */ = { + FFFB5bf09c707fc05bf09c70 /* PxPvdSDK */ = { isa = PBXGroup; children = ( - FFFB8115d9a07f8a8115d9a0 /* include */, - FFFB8115d9c87f8a8115d9c8 /* src */, + FFFB5bf0c5907fc05bf0c590 /* include */, + FFFB5bf0c5b87fc05bf0c5b8 /* src */, ); name = "PxPvdSDK"; sourceTree = "<group>"; }; - FFFB8115d9a07f8a8115d9a0 /* include */ = { + FFFB5bf0c5907fc05bf0c590 /* include */ = { isa = PBXGroup; children = ( - FFFD8115e0707f8a8115e070 /* PxPvd.h */, - FFFD8115e0d87f8a8115e0d8 /* PxPvdTransport.h */, + FFFD5bf0cc607fc05bf0cc60 /* PxPvd.h */, + FFFD5bf0ccc87fc05bf0ccc8 /* PxPvdTransport.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB8115d9c87f8a8115d9c8 /* src */ = { + FFFB5bf0c5b87fc05bf0c5b8 /* src */ = { isa = PBXGroup; children = ( - FFFD809918007f8a80991800 /* include/PsPvd.h */, - FFFD809918687f8a80991868 /* include/PxProfileAllocatorWrapper.h */, - FFFD809918d07f8a809918d0 /* include/PxPvdClient.h */, - FFFD809919387f8a80991938 /* include/PxPvdDataStream.h */, - FFFD809919a07f8a809919a0 /* include/PxPvdDataStreamHelpers.h */, - FFFD80991a087f8a80991a08 /* include/PxPvdErrorCodes.h */, - FFFD80991a707f8a80991a70 /* include/PxPvdObjectModelBaseTypes.h */, - FFFD80991ad87f8a80991ad8 /* include/PxPvdRenderBuffer.h */, - FFFD80991b407f8a80991b40 /* include/PxPvdUserRenderer.h */, - FFFD80991ba87f8a80991ba8 /* src/PxProfileEventImpl.cpp */, - FFFD80991c107f8a80991c10 /* src/PxPvd.cpp */, - FFFD80991c787f8a80991c78 /* src/PxPvdDataStream.cpp */, - FFFD80991ce07f8a80991ce0 /* src/PxPvdDefaultFileTransport.cpp */, - FFFD80991d487f8a80991d48 /* src/PxPvdDefaultSocketTransport.cpp */, - FFFD80991db07f8a80991db0 /* src/PxPvdImpl.cpp */, - FFFD80991e187f8a80991e18 /* src/PxPvdMemClient.cpp */, - FFFD80991e807f8a80991e80 /* src/PxPvdObjectModelMetaData.cpp */, - FFFD80991ee87f8a80991ee8 /* src/PxPvdObjectRegistrar.cpp */, - FFFD80991f507f8a80991f50 /* src/PxPvdProfileZoneClient.cpp */, - FFFD80991fb87f8a80991fb8 /* src/PxPvdUserRenderer.cpp */, - FFFD809920207f8a80992020 /* src/PxProfileBase.h */, - FFFD809920887f8a80992088 /* src/PxProfileCompileTimeEventFilter.h */, - FFFD809920f07f8a809920f0 /* src/PxProfileContextProvider.h */, - FFFD809921587f8a80992158 /* src/PxProfileContextProviderImpl.h */, - FFFD809921c07f8a809921c0 /* src/PxProfileDataBuffer.h */, - FFFD809922287f8a80992228 /* src/PxProfileDataParsing.h */, - FFFD809922907f8a80992290 /* src/PxProfileEventBuffer.h */, - FFFD809922f87f8a809922f8 /* src/PxProfileEventBufferAtomic.h */, - FFFD809923607f8a80992360 /* src/PxProfileEventBufferClient.h */, - FFFD809923c87f8a809923c8 /* src/PxProfileEventBufferClientManager.h */, - FFFD809924307f8a80992430 /* src/PxProfileEventFilter.h */, - FFFD809924987f8a80992498 /* src/PxProfileEventHandler.h */, - FFFD809925007f8a80992500 /* src/PxProfileEventId.h */, - FFFD809925687f8a80992568 /* src/PxProfileEventMutex.h */, - FFFD809925d07f8a809925d0 /* src/PxProfileEventNames.h */, - FFFD809926387f8a80992638 /* src/PxProfileEventParser.h */, - FFFD809926a07f8a809926a0 /* src/PxProfileEventSender.h */, - FFFD809927087f8a80992708 /* src/PxProfileEventSerialization.h */, - FFFD809927707f8a80992770 /* src/PxProfileEventSystem.h */, - FFFD809927d87f8a809927d8 /* src/PxProfileEvents.h */, - FFFD809928407f8a80992840 /* src/PxProfileMemory.h */, - FFFD809928a87f8a809928a8 /* src/PxProfileMemoryBuffer.h */, - FFFD809929107f8a80992910 /* src/PxProfileMemoryEventBuffer.h */, - FFFD809929787f8a80992978 /* src/PxProfileMemoryEventParser.h */, - FFFD809929e07f8a809929e0 /* src/PxProfileMemoryEventRecorder.h */, - FFFD80992a487f8a80992a48 /* src/PxProfileMemoryEventReflexiveWriter.h */, - FFFD80992ab07f8a80992ab0 /* src/PxProfileMemoryEventSummarizer.h */, - FFFD80992b187f8a80992b18 /* src/PxProfileMemoryEventTypes.h */, - FFFD80992b807f8a80992b80 /* src/PxProfileMemoryEvents.h */, - FFFD80992be87f8a80992be8 /* src/PxProfileScopedEvent.h */, - FFFD80992c507f8a80992c50 /* src/PxProfileScopedMutexLock.h */, - FFFD80992cb87f8a80992cb8 /* src/PxProfileZone.h */, - FFFD80992d207f8a80992d20 /* src/PxProfileZoneImpl.h */, - FFFD80992d887f8a80992d88 /* src/PxProfileZoneManager.h */, - FFFD80992df07f8a80992df0 /* src/PxProfileZoneManagerImpl.h */, - FFFD80992e587f8a80992e58 /* src/PxPvdBits.h */, - FFFD80992ec07f8a80992ec0 /* src/PxPvdByteStreams.h */, - FFFD80992f287f8a80992f28 /* src/PxPvdCommStreamEventSink.h */, - FFFD80992f907f8a80992f90 /* src/PxPvdCommStreamEvents.h */, - FFFD80992ff87f8a80992ff8 /* src/PxPvdCommStreamSDKEventTypes.h */, - FFFD809930607f8a80993060 /* src/PxPvdCommStreamTypes.h */, - FFFD809930c87f8a809930c8 /* src/PxPvdDefaultFileTransport.h */, - FFFD809931307f8a80993130 /* src/PxPvdDefaultSocketTransport.h */, - FFFD809931987f8a80993198 /* src/PxPvdFoundation.h */, - FFFD809932007f8a80993200 /* src/PxPvdImpl.h */, - FFFD809932687f8a80993268 /* src/PxPvdInternalByteStreams.h */, - FFFD809932d07f8a809932d0 /* src/PxPvdMarshalling.h */, - FFFD809933387f8a80993338 /* src/PxPvdMemClient.h */, - FFFD809933a07f8a809933a0 /* src/PxPvdObjectModel.h */, - FFFD809934087f8a80993408 /* src/PxPvdObjectModelInternalTypeDefs.h */, - FFFD809934707f8a80993470 /* src/PxPvdObjectModelInternalTypes.h */, - FFFD809934d87f8a809934d8 /* src/PxPvdObjectModelMetaData.h */, - FFFD809935407f8a80993540 /* src/PxPvdObjectRegistrar.h */, - FFFD809935a87f8a809935a8 /* src/PxPvdProfileZoneClient.h */, - FFFD809936107f8a80993610 /* src/PxPvdUserRenderImpl.h */, - FFFD809936787f8a80993678 /* src/PxPvdUserRenderTypes.h */, + FFFD5c8104007fc05c810400 /* include/PsPvd.h */, + FFFD5c8104687fc05c810468 /* include/PxProfileAllocatorWrapper.h */, + FFFD5c8104d07fc05c8104d0 /* include/PxPvdClient.h */, + FFFD5c8105387fc05c810538 /* include/PxPvdDataStream.h */, + FFFD5c8105a07fc05c8105a0 /* include/PxPvdDataStreamHelpers.h */, + FFFD5c8106087fc05c810608 /* include/PxPvdErrorCodes.h */, + FFFD5c8106707fc05c810670 /* include/PxPvdObjectModelBaseTypes.h */, + FFFD5c8106d87fc05c8106d8 /* include/PxPvdRenderBuffer.h */, + FFFD5c8107407fc05c810740 /* include/PxPvdUserRenderer.h */, + FFFD5c8107a87fc05c8107a8 /* src/PxProfileEventImpl.cpp */, + FFFD5c8108107fc05c810810 /* src/PxPvd.cpp */, + FFFD5c8108787fc05c810878 /* src/PxPvdDataStream.cpp */, + FFFD5c8108e07fc05c8108e0 /* src/PxPvdDefaultFileTransport.cpp */, + FFFD5c8109487fc05c810948 /* src/PxPvdDefaultSocketTransport.cpp */, + FFFD5c8109b07fc05c8109b0 /* src/PxPvdImpl.cpp */, + FFFD5c810a187fc05c810a18 /* src/PxPvdMemClient.cpp */, + FFFD5c810a807fc05c810a80 /* src/PxPvdObjectModelMetaData.cpp */, + FFFD5c810ae87fc05c810ae8 /* src/PxPvdObjectRegistrar.cpp */, + FFFD5c810b507fc05c810b50 /* src/PxPvdProfileZoneClient.cpp */, + FFFD5c810bb87fc05c810bb8 /* src/PxPvdUserRenderer.cpp */, + FFFD5c810c207fc05c810c20 /* src/PxProfileBase.h */, + FFFD5c810c887fc05c810c88 /* src/PxProfileCompileTimeEventFilter.h */, + FFFD5c810cf07fc05c810cf0 /* src/PxProfileContextProvider.h */, + FFFD5c810d587fc05c810d58 /* src/PxProfileContextProviderImpl.h */, + FFFD5c810dc07fc05c810dc0 /* src/PxProfileDataBuffer.h */, + FFFD5c810e287fc05c810e28 /* src/PxProfileDataParsing.h */, + FFFD5c810e907fc05c810e90 /* src/PxProfileEventBuffer.h */, + FFFD5c810ef87fc05c810ef8 /* src/PxProfileEventBufferAtomic.h */, + FFFD5c810f607fc05c810f60 /* src/PxProfileEventBufferClient.h */, + FFFD5c810fc87fc05c810fc8 /* src/PxProfileEventBufferClientManager.h */, + FFFD5c8110307fc05c811030 /* src/PxProfileEventFilter.h */, + FFFD5c8110987fc05c811098 /* src/PxProfileEventHandler.h */, + FFFD5c8111007fc05c811100 /* src/PxProfileEventId.h */, + FFFD5c8111687fc05c811168 /* src/PxProfileEventMutex.h */, + FFFD5c8111d07fc05c8111d0 /* src/PxProfileEventNames.h */, + FFFD5c8112387fc05c811238 /* src/PxProfileEventParser.h */, + FFFD5c8112a07fc05c8112a0 /* src/PxProfileEventSender.h */, + FFFD5c8113087fc05c811308 /* src/PxProfileEventSerialization.h */, + FFFD5c8113707fc05c811370 /* src/PxProfileEventSystem.h */, + FFFD5c8113d87fc05c8113d8 /* src/PxProfileEvents.h */, + FFFD5c8114407fc05c811440 /* src/PxProfileMemory.h */, + FFFD5c8114a87fc05c8114a8 /* src/PxProfileMemoryBuffer.h */, + FFFD5c8115107fc05c811510 /* src/PxProfileMemoryEventBuffer.h */, + FFFD5c8115787fc05c811578 /* src/PxProfileMemoryEventParser.h */, + FFFD5c8115e07fc05c8115e0 /* src/PxProfileMemoryEventRecorder.h */, + FFFD5c8116487fc05c811648 /* src/PxProfileMemoryEventReflexiveWriter.h */, + FFFD5c8116b07fc05c8116b0 /* src/PxProfileMemoryEventSummarizer.h */, + FFFD5c8117187fc05c811718 /* src/PxProfileMemoryEventTypes.h */, + FFFD5c8117807fc05c811780 /* src/PxProfileMemoryEvents.h */, + FFFD5c8117e87fc05c8117e8 /* src/PxProfileScopedEvent.h */, + FFFD5c8118507fc05c811850 /* src/PxProfileScopedMutexLock.h */, + FFFD5c8118b87fc05c8118b8 /* src/PxProfileZone.h */, + FFFD5c8119207fc05c811920 /* src/PxProfileZoneImpl.h */, + FFFD5c8119887fc05c811988 /* src/PxProfileZoneManager.h */, + FFFD5c8119f07fc05c8119f0 /* src/PxProfileZoneManagerImpl.h */, + FFFD5c811a587fc05c811a58 /* src/PxPvdBits.h */, + FFFD5c811ac07fc05c811ac0 /* src/PxPvdByteStreams.h */, + FFFD5c811b287fc05c811b28 /* src/PxPvdCommStreamEventSink.h */, + FFFD5c811b907fc05c811b90 /* src/PxPvdCommStreamEvents.h */, + FFFD5c811bf87fc05c811bf8 /* src/PxPvdCommStreamSDKEventTypes.h */, + FFFD5c811c607fc05c811c60 /* src/PxPvdCommStreamTypes.h */, + FFFD5c811cc87fc05c811cc8 /* src/PxPvdDefaultFileTransport.h */, + FFFD5c811d307fc05c811d30 /* src/PxPvdDefaultSocketTransport.h */, + FFFD5c811d987fc05c811d98 /* src/PxPvdFoundation.h */, + FFFD5c811e007fc05c811e00 /* src/PxPvdImpl.h */, + FFFD5c811e687fc05c811e68 /* src/PxPvdInternalByteStreams.h */, + FFFD5c811ed07fc05c811ed0 /* src/PxPvdMarshalling.h */, + FFFD5c811f387fc05c811f38 /* src/PxPvdMemClient.h */, + FFFD5c811fa07fc05c811fa0 /* src/PxPvdObjectModel.h */, + FFFD5c8120087fc05c812008 /* src/PxPvdObjectModelInternalTypeDefs.h */, + FFFD5c8120707fc05c812070 /* src/PxPvdObjectModelInternalTypes.h */, + FFFD5c8120d87fc05c8120d8 /* src/PxPvdObjectModelMetaData.h */, + FFFD5c8121407fc05c812140 /* src/PxPvdObjectRegistrar.h */, + FFFD5c8121a87fc05c8121a8 /* src/PxPvdProfileZoneClient.h */, + FFFD5c8122107fc05c812210 /* src/PxPvdUserRenderImpl.h */, + FFFD5c8122787fc05c812278 /* src/PxPvdUserRenderTypes.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB810c34707f8a810c3470 /* LowLevel */ = { + FFFB5be3ff207fc05be3ff20 /* LowLevel */ = { isa = PBXGroup; children = ( - FFFB810c5ce07f8a810c5ce0 /* API Source */, - FFFB810c5d087f8a810c5d08 /* API Includes */, - FFFB810c5d307f8a810c5d30 /* Software Source */, - FFFB810c5d587f8a810c5d58 /* Software Includes */, - FFFB810c5d807f8a810c5d80 /* Common Source */, - FFFB810c5da87f8a810c5da8 /* Common Includes */, + FFFB5be4caa07fc05be4caa0 /* API Source */, + FFFB5be4cac87fc05be4cac8 /* API Includes */, + FFFB5be4caf07fc05be4caf0 /* Software Source */, + FFFB5be4cb187fc05be4cb18 /* Software Includes */, + FFFB5be4cb407fc05be4cb40 /* Common Source */, + FFFB5be4cb687fc05be4cb68 /* Common Includes */, ); name = "LowLevel"; sourceTree = "<group>"; }; - FFFB810c5ce07f8a810c5ce0 /* API Source */ = { + FFFB5be4caa07fc05be4caa0 /* API Source */ = { isa = PBXGroup; children = ( - FFFD810c4bd07f8a810c4bd0 /* px_globals.cpp */, + FFFD5be4b8a07fc05be4b8a0 /* px_globals.cpp */, ); name = "API Source"; sourceTree = SOURCE_ROOT; }; - FFFB810c5d087f8a810c5d08 /* API Includes */ = { + FFFB5be4cac87fc05be4cac8 /* API Includes */ = { isa = PBXGroup; children = ( - FFFD810c6e107f8a810c6e10 /* PxsMaterialCore.h */, - FFFD810c6e787f8a810c6e78 /* PxsMaterialManager.h */, - FFFD810c6ee07f8a810c6ee0 /* PxvConfig.h */, - FFFD810c6f487f8a810c6f48 /* PxvContext.h */, - FFFD810c6fb07f8a810c6fb0 /* PxvDynamics.h */, - FFFD810c70187f8a810c7018 /* PxvGeometry.h */, - FFFD810c70807f8a810c7080 /* PxvGlobals.h */, - FFFD810c70e87f8a810c70e8 /* PxvManager.h */, - FFFD810c71507f8a810c7150 /* PxvSimStats.h */, + FFFD5be4ddd07fc05be4ddd0 /* PxsMaterialCore.h */, + FFFD5be4de387fc05be4de38 /* PxsMaterialManager.h */, + FFFD5be4dea07fc05be4dea0 /* PxvConfig.h */, + FFFD5be4df087fc05be4df08 /* PxvContext.h */, + FFFD5be4df707fc05be4df70 /* PxvDynamics.h */, + FFFD5be4dfd87fc05be4dfd8 /* PxvGeometry.h */, + FFFD5be4e0407fc05be4e040 /* PxvGlobals.h */, + FFFD5be4e0a87fc05be4e0a8 /* PxvManager.h */, + FFFD5be4e1107fc05be4e110 /* PxvSimStats.h */, ); name = "API Includes"; sourceTree = SOURCE_ROOT; }; - FFFB810c5d307f8a810c5d30 /* Software Source */ = { + FFFB5be4caf07fc05be4caf0 /* Software Source */ = { isa = PBXGroup; children = ( - FFFD810b88f07f8a810b88f0 /* PxsCCD.cpp */, - FFFD810b89587f8a810b8958 /* PxsContactManager.cpp */, - FFFD810b89c07f8a810b89c0 /* PxsContext.cpp */, - FFFD810b8a287f8a810b8a28 /* PxsDefaultMemoryManager.cpp */, - FFFD810b8a907f8a810b8a90 /* PxsIslandSim.cpp */, - FFFD810b8af87f8a810b8af8 /* PxsMaterialCombiner.cpp */, - FFFD810b8b607f8a810b8b60 /* PxsNphaseImplementationContext.cpp */, - FFFD810b8bc87f8a810b8bc8 /* PxsSimpleIslandManager.cpp */, + FFFD5be4eee07fc05be4eee0 /* PxsCCD.cpp */, + FFFD5be4ef487fc05be4ef48 /* PxsContactManager.cpp */, + FFFD5be4efb07fc05be4efb0 /* PxsContext.cpp */, + FFFD5be4f0187fc05be4f018 /* PxsDefaultMemoryManager.cpp */, + FFFD5be4f0807fc05be4f080 /* PxsIslandSim.cpp */, + FFFD5be4f0e87fc05be4f0e8 /* PxsMaterialCombiner.cpp */, + FFFD5be4f1507fc05be4f150 /* PxsNphaseImplementationContext.cpp */, + FFFD5be4f1b87fc05be4f1b8 /* PxsSimpleIslandManager.cpp */, ); name = "Software Source"; sourceTree = SOURCE_ROOT; }; - FFFB810c5d587f8a810c5d58 /* Software Includes */ = { + FFFB5be4cb187fc05be4cb18 /* Software Includes */ = { isa = PBXGroup; children = ( - FFFD818312007f8a81831200 /* PxsBodySim.h */, - FFFD818312687f8a81831268 /* PxsCCD.h */, - FFFD818312d07f8a818312d0 /* PxsContactManager.h */, - FFFD818313387f8a81831338 /* PxsContactManagerState.h */, - FFFD818313a07f8a818313a0 /* PxsContext.h */, - FFFD818314087f8a81831408 /* PxsDefaultMemoryManager.h */, - FFFD818314707f8a81831470 /* PxsHeapMemoryAllocator.h */, - FFFD818314d87f8a818314d8 /* PxsIncrementalConstraintPartitioning.h */, - FFFD818315407f8a81831540 /* PxsIslandManagerTypes.h */, - FFFD818315a87f8a818315a8 /* PxsIslandSim.h */, - FFFD818316107f8a81831610 /* PxsKernelWrangler.h */, - FFFD818316787f8a81831678 /* PxsMaterialCombiner.h */, - FFFD818316e07f8a818316e0 /* PxsMemoryManager.h */, - FFFD818317487f8a81831748 /* PxsNphaseImplementationContext.h */, - FFFD818317b07f8a818317b0 /* PxsRigidBody.h */, - FFFD818318187f8a81831818 /* PxsShapeSim.h */, - FFFD818318807f8a81831880 /* PxsSimpleIslandManager.h */, - FFFD818318e87f8a818318e8 /* PxsSimulationController.h */, - FFFD818319507f8a81831950 /* PxsTransformCache.h */, - FFFD818319b87f8a818319b8 /* PxvNphaseImplementationContext.h */, + FFFD5a83e2007fc05a83e200 /* PxsBodySim.h */, + FFFD5a83e2687fc05a83e268 /* PxsCCD.h */, + FFFD5a83e2d07fc05a83e2d0 /* PxsContactManager.h */, + FFFD5a83e3387fc05a83e338 /* PxsContactManagerState.h */, + FFFD5a83e3a07fc05a83e3a0 /* PxsContext.h */, + FFFD5a83e4087fc05a83e408 /* PxsDefaultMemoryManager.h */, + FFFD5a83e4707fc05a83e470 /* PxsHeapMemoryAllocator.h */, + FFFD5a83e4d87fc05a83e4d8 /* PxsIncrementalConstraintPartitioning.h */, + FFFD5a83e5407fc05a83e540 /* PxsIslandManagerTypes.h */, + FFFD5a83e5a87fc05a83e5a8 /* PxsIslandSim.h */, + FFFD5a83e6107fc05a83e610 /* PxsKernelWrangler.h */, + FFFD5a83e6787fc05a83e678 /* PxsMaterialCombiner.h */, + FFFD5a83e6e07fc05a83e6e0 /* PxsMemoryManager.h */, + FFFD5a83e7487fc05a83e748 /* PxsNphaseImplementationContext.h */, + FFFD5a83e7b07fc05a83e7b0 /* PxsRigidBody.h */, + FFFD5a83e8187fc05a83e818 /* PxsShapeSim.h */, + FFFD5a83e8807fc05a83e880 /* PxsSimpleIslandManager.h */, + FFFD5a83e8e87fc05a83e8e8 /* PxsSimulationController.h */, + FFFD5a83e9507fc05a83e950 /* PxsTransformCache.h */, + FFFD5a83e9b87fc05a83e9b8 /* PxvNphaseImplementationContext.h */, ); name = "Software Includes"; sourceTree = SOURCE_ROOT; }; - FFFB810c5d807f8a810c5d80 /* Common Source */ = { + FFFB5be4cb407fc05be4cb40 /* Common Source */ = { isa = PBXGroup; children = ( - FFFD8182fc007f8a8182fc00 /* collision/PxcContact.cpp */, - FFFD8182fc687f8a8182fc68 /* pipeline/PxcContactCache.cpp */, - FFFD8182fcd07f8a8182fcd0 /* pipeline/PxcContactMethodImpl.cpp */, - FFFD8182fd387f8a8182fd38 /* pipeline/PxcMaterialHeightField.cpp */, - FFFD8182fda07f8a8182fda0 /* pipeline/PxcMaterialMesh.cpp */, - FFFD8182fe087f8a8182fe08 /* pipeline/PxcMaterialMethodImpl.cpp */, - FFFD8182fe707f8a8182fe70 /* pipeline/PxcMaterialShape.cpp */, - FFFD8182fed87f8a8182fed8 /* pipeline/PxcNpBatch.cpp */, - FFFD8182ff407f8a8182ff40 /* pipeline/PxcNpCacheStreamPair.cpp */, - FFFD8182ffa87f8a8182ffa8 /* pipeline/PxcNpContactPrepShared.cpp */, - FFFD818300107f8a81830010 /* pipeline/PxcNpMemBlockPool.cpp */, - FFFD818300787f8a81830078 /* pipeline/PxcNpThreadContext.cpp */, + FFFD5a83cc007fc05a83cc00 /* collision/PxcContact.cpp */, + FFFD5a83cc687fc05a83cc68 /* pipeline/PxcContactCache.cpp */, + FFFD5a83ccd07fc05a83ccd0 /* pipeline/PxcContactMethodImpl.cpp */, + FFFD5a83cd387fc05a83cd38 /* pipeline/PxcMaterialHeightField.cpp */, + FFFD5a83cda07fc05a83cda0 /* pipeline/PxcMaterialMesh.cpp */, + FFFD5a83ce087fc05a83ce08 /* pipeline/PxcMaterialMethodImpl.cpp */, + FFFD5a83ce707fc05a83ce70 /* pipeline/PxcMaterialShape.cpp */, + FFFD5a83ced87fc05a83ced8 /* pipeline/PxcNpBatch.cpp */, + FFFD5a83cf407fc05a83cf40 /* pipeline/PxcNpCacheStreamPair.cpp */, + FFFD5a83cfa87fc05a83cfa8 /* pipeline/PxcNpContactPrepShared.cpp */, + FFFD5a83d0107fc05a83d010 /* pipeline/PxcNpMemBlockPool.cpp */, + FFFD5a83d0787fc05a83d078 /* pipeline/PxcNpThreadContext.cpp */, ); name = "Common Source"; sourceTree = SOURCE_ROOT; }; - FFFB810c5da87f8a810c5da8 /* Common Includes */ = { + FFFB5be4cb687fc05be4cb68 /* Common Includes */ = { isa = PBXGroup; children = ( - FFFD818304007f8a81830400 /* collision/PxcContactMethodImpl.h */, - FFFD818304687f8a81830468 /* pipeline/PxcCCDStateStreamPair.h */, - FFFD818304d07f8a818304d0 /* pipeline/PxcConstraintBlockStream.h */, - FFFD818305387f8a81830538 /* pipeline/PxcContactCache.h */, - FFFD818305a07f8a818305a0 /* pipeline/PxcMaterialMethodImpl.h */, - FFFD818306087f8a81830608 /* pipeline/PxcNpBatch.h */, - FFFD818306707f8a81830670 /* pipeline/PxcNpCache.h */, - FFFD818306d87f8a818306d8 /* pipeline/PxcNpCacheStreamPair.h */, - FFFD818307407f8a81830740 /* pipeline/PxcNpContactPrepShared.h */, - FFFD818307a87f8a818307a8 /* pipeline/PxcNpMemBlockPool.h */, - FFFD818308107f8a81830810 /* pipeline/PxcNpThreadContext.h */, - FFFD818308787f8a81830878 /* pipeline/PxcNpWorkUnit.h */, - FFFD818308e07f8a818308e0 /* pipeline/PxcRigidBody.h */, - FFFD818309487f8a81830948 /* utils/PxcScratchAllocator.h */, - FFFD818309b07f8a818309b0 /* utils/PxcThreadCoherentCache.h */, + FFFD5a83d4007fc05a83d400 /* collision/PxcContactMethodImpl.h */, + FFFD5a83d4687fc05a83d468 /* pipeline/PxcCCDStateStreamPair.h */, + FFFD5a83d4d07fc05a83d4d0 /* pipeline/PxcConstraintBlockStream.h */, + FFFD5a83d5387fc05a83d538 /* pipeline/PxcContactCache.h */, + FFFD5a83d5a07fc05a83d5a0 /* pipeline/PxcMaterialMethodImpl.h */, + FFFD5a83d6087fc05a83d608 /* pipeline/PxcNpBatch.h */, + FFFD5a83d6707fc05a83d670 /* pipeline/PxcNpCache.h */, + FFFD5a83d6d87fc05a83d6d8 /* pipeline/PxcNpCacheStreamPair.h */, + FFFD5a83d7407fc05a83d740 /* pipeline/PxcNpContactPrepShared.h */, + FFFD5a83d7a87fc05a83d7a8 /* pipeline/PxcNpMemBlockPool.h */, + FFFD5a83d8107fc05a83d810 /* pipeline/PxcNpThreadContext.h */, + FFFD5a83d8787fc05a83d878 /* pipeline/PxcNpWorkUnit.h */, + FFFD5a83d8e07fc05a83d8e0 /* pipeline/PxcRigidBody.h */, + FFFD5a83d9487fc05a83d948 /* utils/PxcScratchAllocator.h */, + FFFD5a83d9b07fc05a83d9b0 /* utils/PxcThreadCoherentCache.h */, ); name = "Common Includes"; sourceTree = SOURCE_ROOT; }; - FFFB81149d807f8a81149d80 /* LowLevelAABB */ = { + FFFB5bf207407fc05bf20740 /* LowLevelAABB */ = { isa = PBXGroup; children = ( - FFFB811593c07f8a811593c0 /* include */, - FFFB811593e87f8a811593e8 /* src */, + FFFB5bf1d9207fc05bf1d920 /* include */, + FFFB5bf1d9487fc05bf1d948 /* src */, ); name = "LowLevelAABB"; sourceTree = "<group>"; }; - FFFB811593c07f8a811593c0 /* include */ = { + FFFB5bf1d9207fc05bf1d920 /* include */ = { isa = PBXGroup; children = ( - FFFD811598e07f8a811598e0 /* BpAABBManagerTasks.h */, - FFFD811599487f8a81159948 /* BpBroadPhase.h */, - FFFD811599b07f8a811599b0 /* BpBroadPhaseUpdate.h */, - FFFD81159a187f8a81159a18 /* BpSimpleAABBManager.h */, + FFFD5bf245407fc05bf24540 /* BpAABBManagerTasks.h */, + FFFD5bf245a87fc05bf245a8 /* BpBroadPhase.h */, + FFFD5bf246107fc05bf24610 /* BpBroadPhaseUpdate.h */, + FFFD5bf246787fc05bf24678 /* BpSimpleAABBManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB811593e87f8a811593e8 /* src */ = { + FFFB5bf1d9487fc05bf1d948 /* src */ = { isa = PBXGroup; children = ( - FFFD809982007f8a80998200 /* BpBroadPhaseMBP.h */, - FFFD809982687f8a80998268 /* BpBroadPhaseMBPCommon.h */, - FFFD809982d07f8a809982d0 /* BpBroadPhaseSap.h */, - FFFD809983387f8a80998338 /* BpBroadPhaseSapAux.h */, - FFFD809983a07f8a809983a0 /* BpMBPTasks.h */, - FFFD809984087f8a80998408 /* BpSAPTasks.h */, - FFFD809984707f8a80998470 /* BpBroadPhase.cpp */, - FFFD809984d87f8a809984d8 /* BpBroadPhaseMBP.cpp */, - FFFD809985407f8a80998540 /* BpBroadPhaseSap.cpp */, - FFFD809985a87f8a809985a8 /* BpBroadPhaseSapAux.cpp */, - FFFD809986107f8a80998610 /* BpMBPTasks.cpp */, - FFFD809986787f8a80998678 /* BpSAPTasks.cpp */, - FFFD809986e07f8a809986e0 /* BpSimpleAABBManager.cpp */, + FFFD5c8174007fc05c817400 /* BpBroadPhaseMBP.h */, + FFFD5c8174687fc05c817468 /* BpBroadPhaseMBPCommon.h */, + FFFD5c8174d07fc05c8174d0 /* BpBroadPhaseSap.h */, + FFFD5c8175387fc05c817538 /* BpBroadPhaseSapAux.h */, + FFFD5c8175a07fc05c8175a0 /* BpMBPTasks.h */, + FFFD5c8176087fc05c817608 /* BpSAPTasks.h */, + FFFD5c8176707fc05c817670 /* BpBroadPhase.cpp */, + FFFD5c8176d87fc05c8176d8 /* BpBroadPhaseMBP.cpp */, + FFFD5c8177407fc05c817740 /* BpBroadPhaseSap.cpp */, + FFFD5c8177a87fc05c8177a8 /* BpBroadPhaseSapAux.cpp */, + FFFD5c8178107fc05c817810 /* BpMBPTasks.cpp */, + FFFD5c8178787fc05c817878 /* BpSAPTasks.cpp */, + FFFD5c8178e07fc05c8178e0 /* BpSimpleAABBManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB81432a807f8a81432a80 /* LowLevelDynamics */ = { + FFFB5bf4ac107fc05bf4ac10 /* LowLevelDynamics */ = { isa = PBXGroup; children = ( - FFFB814399807f8a81439980 /* Dynamics Source */, - FFFB814399a87f8a814399a8 /* Dynamics Includes */, - FFFB814399d07f8a814399d0 /* Dynamics Internal Includes */, + FFFB5bf482d07fc05bf482d0 /* Dynamics Source */, + FFFB5bf482f87fc05bf482f8 /* Dynamics Includes */, + FFFB5bf483207fc05bf48320 /* Dynamics Internal Includes */, ); name = "LowLevelDynamics"; sourceTree = "<group>"; }; - FFFB814399807f8a81439980 /* Dynamics Source */ = { + FFFB5bf482d07fc05bf482d0 /* Dynamics Source */ = { isa = PBXGroup; children = ( - FFFD82018c007f8a82018c00 /* DyArticulation.cpp */, - FFFD82018c687f8a82018c68 /* DyArticulationContactPrep.cpp */, - FFFD82018cd07f8a82018cd0 /* DyArticulationContactPrepPF.cpp */, - FFFD82018d387f8a82018d38 /* DyArticulationHelper.cpp */, - FFFD82018da07f8a82018da0 /* DyArticulationSIMD.cpp */, - FFFD82018e087f8a82018e08 /* DyArticulationScalar.cpp */, - FFFD82018e707f8a82018e70 /* DyConstraintPartition.cpp */, - FFFD82018ed87f8a82018ed8 /* DyConstraintSetup.cpp */, - FFFD82018f407f8a82018f40 /* DyConstraintSetupBlock.cpp */, - FFFD82018fa87f8a82018fa8 /* DyContactPrep.cpp */, - FFFD820190107f8a82019010 /* DyContactPrep4.cpp */, - FFFD820190787f8a82019078 /* DyContactPrep4PF.cpp */, - FFFD820190e07f8a820190e0 /* DyContactPrepPF.cpp */, - FFFD820191487f8a82019148 /* DyDynamics.cpp */, - FFFD820191b07f8a820191b0 /* DyFrictionCorrelation.cpp */, - FFFD820192187f8a82019218 /* DyRigidBodyToSolverBody.cpp */, - FFFD820192807f8a82019280 /* DySolverConstraints.cpp */, - FFFD820192e87f8a820192e8 /* DySolverConstraintsBlock.cpp */, - FFFD820193507f8a82019350 /* DySolverControl.cpp */, - FFFD820193b87f8a820193b8 /* DySolverControlPF.cpp */, - FFFD820194207f8a82019420 /* DySolverPFConstraints.cpp */, - FFFD820194887f8a82019488 /* DySolverPFConstraintsBlock.cpp */, - FFFD820194f07f8a820194f0 /* DyThreadContext.cpp */, - FFFD820195587f8a82019558 /* DyThresholdTable.cpp */, + FFFD5c8206007fc05c820600 /* DyArticulation.cpp */, + FFFD5c8206687fc05c820668 /* DyArticulationContactPrep.cpp */, + FFFD5c8206d07fc05c8206d0 /* DyArticulationContactPrepPF.cpp */, + FFFD5c8207387fc05c820738 /* DyArticulationHelper.cpp */, + FFFD5c8207a07fc05c8207a0 /* DyArticulationSIMD.cpp */, + FFFD5c8208087fc05c820808 /* DyArticulationScalar.cpp */, + FFFD5c8208707fc05c820870 /* DyConstraintPartition.cpp */, + FFFD5c8208d87fc05c8208d8 /* DyConstraintSetup.cpp */, + FFFD5c8209407fc05c820940 /* DyConstraintSetupBlock.cpp */, + FFFD5c8209a87fc05c8209a8 /* DyContactPrep.cpp */, + FFFD5c820a107fc05c820a10 /* DyContactPrep4.cpp */, + FFFD5c820a787fc05c820a78 /* DyContactPrep4PF.cpp */, + FFFD5c820ae07fc05c820ae0 /* DyContactPrepPF.cpp */, + FFFD5c820b487fc05c820b48 /* DyDynamics.cpp */, + FFFD5c820bb07fc05c820bb0 /* DyFrictionCorrelation.cpp */, + FFFD5c820c187fc05c820c18 /* DyRigidBodyToSolverBody.cpp */, + FFFD5c820c807fc05c820c80 /* DySolverConstraints.cpp */, + FFFD5c820ce87fc05c820ce8 /* DySolverConstraintsBlock.cpp */, + FFFD5c820d507fc05c820d50 /* DySolverControl.cpp */, + FFFD5c820db87fc05c820db8 /* DySolverControlPF.cpp */, + FFFD5c820e207fc05c820e20 /* DySolverPFConstraints.cpp */, + FFFD5c820e887fc05c820e88 /* DySolverPFConstraintsBlock.cpp */, + FFFD5c820ef07fc05c820ef0 /* DyThreadContext.cpp */, + FFFD5c820f587fc05c820f58 /* DyThresholdTable.cpp */, ); name = "Dynamics Source"; sourceTree = SOURCE_ROOT; }; - FFFB814399a87f8a814399a8 /* Dynamics Includes */ = { + FFFB5bf482f87fc05bf482f8 /* Dynamics Includes */ = { isa = PBXGroup; children = ( - FFFD8143afc07f8a8143afc0 /* DyArticulation.h */, - FFFD8143b0287f8a8143b028 /* DyConstraint.h */, - FFFD8143b0907f8a8143b090 /* DyConstraintWriteBack.h */, - FFFD8143b0f87f8a8143b0f8 /* DyContext.h */, - FFFD8143b1607f8a8143b160 /* DySleepingConfigulation.h */, - FFFD8143b1c87f8a8143b1c8 /* DyThresholdTable.h */, + FFFD5bf520a07fc05bf520a0 /* DyArticulation.h */, + FFFD5bf521087fc05bf52108 /* DyConstraint.h */, + FFFD5bf521707fc05bf52170 /* DyConstraintWriteBack.h */, + FFFD5bf521d87fc05bf521d8 /* DyContext.h */, + FFFD5bf522407fc05bf52240 /* DySleepingConfigulation.h */, + FFFD5bf522a87fc05bf522a8 /* DyThresholdTable.h */, ); name = "Dynamics Includes"; sourceTree = SOURCE_ROOT; }; - FFFB814399d07f8a814399d0 /* Dynamics Internal Includes */ = { + FFFB5bf483207fc05bf48320 /* Dynamics Internal Includes */ = { isa = PBXGroup; children = ( - FFFD82019e007f8a82019e00 /* DyArticulationContactPrep.h */, - FFFD82019e687f8a82019e68 /* DyArticulationFnsDebug.h */, - FFFD82019ed07f8a82019ed0 /* DyArticulationFnsScalar.h */, - FFFD82019f387f8a82019f38 /* DyArticulationFnsSimd.h */, - FFFD82019fa07f8a82019fa0 /* DyArticulationHelper.h */, - FFFD8201a0087f8a8201a008 /* DyArticulationPImpl.h */, - FFFD8201a0707f8a8201a070 /* DyArticulationReference.h */, - FFFD8201a0d87f8a8201a0d8 /* DyArticulationScalar.h */, - FFFD8201a1407f8a8201a140 /* DyArticulationUtils.h */, - FFFD8201a1a87f8a8201a1a8 /* DyBodyCoreIntegrator.h */, - FFFD8201a2107f8a8201a210 /* DyConstraintPartition.h */, - FFFD8201a2787f8a8201a278 /* DyConstraintPrep.h */, - FFFD8201a2e07f8a8201a2e0 /* DyContactPrep.h */, - FFFD8201a3487f8a8201a348 /* DyContactPrepShared.h */, - FFFD8201a3b07f8a8201a3b0 /* DyContactReduction.h */, - FFFD8201a4187f8a8201a418 /* DyCorrelationBuffer.h */, - FFFD8201a4807f8a8201a480 /* DyDynamics.h */, - FFFD8201a4e87f8a8201a4e8 /* DyFrictionPatch.h */, - FFFD8201a5507f8a8201a550 /* DyFrictionPatchStreamPair.h */, - FFFD8201a5b87f8a8201a5b8 /* DySolverBody.h */, - FFFD8201a6207f8a8201a620 /* DySolverConstraint1D.h */, - FFFD8201a6887f8a8201a688 /* DySolverConstraint1D4.h */, - FFFD8201a6f07f8a8201a6f0 /* DySolverConstraintDesc.h */, - FFFD8201a7587f8a8201a758 /* DySolverConstraintExtShared.h */, - FFFD8201a7c07f8a8201a7c0 /* DySolverConstraintTypes.h */, - FFFD8201a8287f8a8201a828 /* DySolverConstraintsShared.h */, - FFFD8201a8907f8a8201a890 /* DySolverContact.h */, - FFFD8201a8f87f8a8201a8f8 /* DySolverContact4.h */, - FFFD8201a9607f8a8201a960 /* DySolverContactPF.h */, - FFFD8201a9c87f8a8201a9c8 /* DySolverContactPF4.h */, - FFFD8201aa307f8a8201aa30 /* DySolverContext.h */, - FFFD8201aa987f8a8201aa98 /* DySolverControl.h */, - FFFD8201ab007f8a8201ab00 /* DySolverControlPF.h */, - FFFD8201ab687f8a8201ab68 /* DySolverCore.h */, - FFFD8201abd07f8a8201abd0 /* DySolverExt.h */, - FFFD8201ac387f8a8201ac38 /* DySpatial.h */, - FFFD8201aca07f8a8201aca0 /* DyThreadContext.h */, + FFFD5c821e007fc05c821e00 /* DyArticulationContactPrep.h */, + FFFD5c821e687fc05c821e68 /* DyArticulationFnsDebug.h */, + FFFD5c821ed07fc05c821ed0 /* DyArticulationFnsScalar.h */, + FFFD5c821f387fc05c821f38 /* DyArticulationFnsSimd.h */, + FFFD5c821fa07fc05c821fa0 /* DyArticulationHelper.h */, + FFFD5c8220087fc05c822008 /* DyArticulationPImpl.h */, + FFFD5c8220707fc05c822070 /* DyArticulationReference.h */, + FFFD5c8220d87fc05c8220d8 /* DyArticulationScalar.h */, + FFFD5c8221407fc05c822140 /* DyArticulationUtils.h */, + FFFD5c8221a87fc05c8221a8 /* DyBodyCoreIntegrator.h */, + FFFD5c8222107fc05c822210 /* DyConstraintPartition.h */, + FFFD5c8222787fc05c822278 /* DyConstraintPrep.h */, + FFFD5c8222e07fc05c8222e0 /* DyContactPrep.h */, + FFFD5c8223487fc05c822348 /* DyContactPrepShared.h */, + FFFD5c8223b07fc05c8223b0 /* DyContactReduction.h */, + FFFD5c8224187fc05c822418 /* DyCorrelationBuffer.h */, + FFFD5c8224807fc05c822480 /* DyDynamics.h */, + FFFD5c8224e87fc05c8224e8 /* DyFrictionPatch.h */, + FFFD5c8225507fc05c822550 /* DyFrictionPatchStreamPair.h */, + FFFD5c8225b87fc05c8225b8 /* DySolverBody.h */, + FFFD5c8226207fc05c822620 /* DySolverConstraint1D.h */, + FFFD5c8226887fc05c822688 /* DySolverConstraint1D4.h */, + FFFD5c8226f07fc05c8226f0 /* DySolverConstraintDesc.h */, + FFFD5c8227587fc05c822758 /* DySolverConstraintExtShared.h */, + FFFD5c8227c07fc05c8227c0 /* DySolverConstraintTypes.h */, + FFFD5c8228287fc05c822828 /* DySolverConstraintsShared.h */, + FFFD5c8228907fc05c822890 /* DySolverContact.h */, + FFFD5c8228f87fc05c8228f8 /* DySolverContact4.h */, + FFFD5c8229607fc05c822960 /* DySolverContactPF.h */, + FFFD5c8229c87fc05c8229c8 /* DySolverContactPF4.h */, + FFFD5c822a307fc05c822a30 /* DySolverContext.h */, + FFFD5c822a987fc05c822a98 /* DySolverControl.h */, + FFFD5c822b007fc05c822b00 /* DySolverControlPF.h */, + FFFD5c822b687fc05c822b68 /* DySolverCore.h */, + FFFD5c822bd07fc05c822bd0 /* DySolverExt.h */, + FFFD5c822c387fc05c822c38 /* DySpatial.h */, + FFFD5c822ca07fc05c822ca0 /* DyThreadContext.h */, ); name = "Dynamics Internal Includes"; sourceTree = SOURCE_ROOT; }; - FFFB816f83807f8a816f8380 /* LowLevelCloth */ = { + FFFB5bc335c07fc05bc335c0 /* LowLevelCloth */ = { isa = PBXGroup; children = ( - FFFB8170a0207f8a8170a020 /* include */, - FFFB8170a0487f8a8170a048 /* src */, + FFFB5bc06b007fc05bc06b00 /* include */, + FFFB5bc06b287fc05bc06b28 /* src */, ); name = "LowLevelCloth"; sourceTree = "<group>"; }; - FFFB8170a0207f8a8170a020 /* include */ = { + FFFB5bc06b007fc05bc06b00 /* include */ = { isa = PBXGroup; children = ( - FFFD8170b1607f8a8170b160 /* Cloth.h */, - FFFD8170b1c87f8a8170b1c8 /* Fabric.h */, - FFFD8170b2307f8a8170b230 /* Factory.h */, - FFFD8170b2987f8a8170b298 /* PhaseConfig.h */, - FFFD8170b3007f8a8170b300 /* Range.h */, - FFFD8170b3687f8a8170b368 /* Solver.h */, - FFFD8170b3d07f8a8170b3d0 /* Types.h */, + FFFD5bc36ff07fc05bc36ff0 /* Cloth.h */, + FFFD5bc370587fc05bc37058 /* Fabric.h */, + FFFD5bc370c07fc05bc370c0 /* Factory.h */, + FFFD5bc371287fc05bc37128 /* PhaseConfig.h */, + FFFD5bc371907fc05bc37190 /* Range.h */, + FFFD5bc371f87fc05bc371f8 /* Solver.h */, + FFFD5bc372607fc05bc37260 /* Types.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB8170a0487f8a8170a048 /* src */ = { + FFFB5bc06b287fc05bc06b28 /* src */ = { isa = PBXGroup; children = ( - FFFD82827c007f8a82827c00 /* Allocator.h */, - FFFD82827c687f8a82827c68 /* Array.h */, - FFFD82827cd07f8a82827cd0 /* BoundingBox.h */, - FFFD82827d387f8a82827d38 /* ClothBase.h */, - FFFD82827da07f8a82827da0 /* ClothImpl.h */, - FFFD82827e087f8a82827e08 /* IndexPair.h */, - FFFD82827e707f8a82827e70 /* IterationState.h */, - FFFD82827ed87f8a82827ed8 /* MovingAverage.h */, - FFFD82827f407f8a82827f40 /* PointInterpolator.h */, - FFFD82827fa87f8a82827fa8 /* Simd.h */, - FFFD828280107f8a82828010 /* Simd4f.h */, - FFFD828280787f8a82828078 /* Simd4i.h */, - FFFD828280e07f8a828280e0 /* SimdTypes.h */, - FFFD828281487f8a82828148 /* StackAllocator.h */, - FFFD828281b07f8a828281b0 /* SwCloth.h */, - FFFD828282187f8a82828218 /* SwClothData.h */, - FFFD828282807f8a82828280 /* SwCollision.h */, - FFFD828282e87f8a828282e8 /* SwCollisionHelpers.h */, - FFFD828283507f8a82828350 /* SwFabric.h */, - FFFD828283b87f8a828283b8 /* SwFactory.h */, - FFFD828284207f8a82828420 /* SwInterCollision.h */, - FFFD828284887f8a82828488 /* SwSelfCollision.h */, - FFFD828284f07f8a828284f0 /* SwSolver.h */, - FFFD828285587f8a82828558 /* SwSolverKernel.h */, - FFFD828285c07f8a828285c0 /* TripletScheduler.h */, - FFFD828286287f8a82828628 /* Vec4T.h */, - FFFD828286907f8a82828690 /* Allocator.cpp */, - FFFD828286f87f8a828286f8 /* Factory.cpp */, - FFFD828287607f8a82828760 /* PhaseConfig.cpp */, - FFFD828287c87f8a828287c8 /* SwCloth.cpp */, - FFFD828288307f8a82828830 /* SwClothData.cpp */, - FFFD828288987f8a82828898 /* SwCollision.cpp */, - FFFD828289007f8a82828900 /* SwFabric.cpp */, - FFFD828289687f8a82828968 /* SwFactory.cpp */, - FFFD828289d07f8a828289d0 /* SwInterCollision.cpp */, - FFFD82828a387f8a82828a38 /* SwSelfCollision.cpp */, - FFFD82828aa07f8a82828aa0 /* SwSolver.cpp */, - FFFD82828b087f8a82828b08 /* SwSolverKernel.cpp */, - FFFD82828b707f8a82828b70 /* TripletScheduler.cpp */, + FFFD5c01a2007fc05c01a200 /* Allocator.h */, + FFFD5c01a2687fc05c01a268 /* Array.h */, + FFFD5c01a2d07fc05c01a2d0 /* BoundingBox.h */, + FFFD5c01a3387fc05c01a338 /* ClothBase.h */, + FFFD5c01a3a07fc05c01a3a0 /* ClothImpl.h */, + FFFD5c01a4087fc05c01a408 /* IndexPair.h */, + FFFD5c01a4707fc05c01a470 /* IterationState.h */, + FFFD5c01a4d87fc05c01a4d8 /* MovingAverage.h */, + FFFD5c01a5407fc05c01a540 /* PointInterpolator.h */, + FFFD5c01a5a87fc05c01a5a8 /* Simd.h */, + FFFD5c01a6107fc05c01a610 /* Simd4f.h */, + FFFD5c01a6787fc05c01a678 /* Simd4i.h */, + FFFD5c01a6e07fc05c01a6e0 /* SimdTypes.h */, + FFFD5c01a7487fc05c01a748 /* StackAllocator.h */, + FFFD5c01a7b07fc05c01a7b0 /* SwCloth.h */, + FFFD5c01a8187fc05c01a818 /* SwClothData.h */, + FFFD5c01a8807fc05c01a880 /* SwCollision.h */, + FFFD5c01a8e87fc05c01a8e8 /* SwCollisionHelpers.h */, + FFFD5c01a9507fc05c01a950 /* SwFabric.h */, + FFFD5c01a9b87fc05c01a9b8 /* SwFactory.h */, + FFFD5c01aa207fc05c01aa20 /* SwInterCollision.h */, + FFFD5c01aa887fc05c01aa88 /* SwSelfCollision.h */, + FFFD5c01aaf07fc05c01aaf0 /* SwSolver.h */, + FFFD5c01ab587fc05c01ab58 /* SwSolverKernel.h */, + FFFD5c01abc07fc05c01abc0 /* TripletScheduler.h */, + FFFD5c01ac287fc05c01ac28 /* Vec4T.h */, + FFFD5c01ac907fc05c01ac90 /* Allocator.cpp */, + FFFD5c01acf87fc05c01acf8 /* Factory.cpp */, + FFFD5c01ad607fc05c01ad60 /* PhaseConfig.cpp */, + FFFD5c01adc87fc05c01adc8 /* SwCloth.cpp */, + FFFD5c01ae307fc05c01ae30 /* SwClothData.cpp */, + FFFD5c01ae987fc05c01ae98 /* SwCollision.cpp */, + FFFD5c01af007fc05c01af00 /* SwFabric.cpp */, + FFFD5c01af687fc05c01af68 /* SwFactory.cpp */, + FFFD5c01afd07fc05c01afd0 /* SwInterCollision.cpp */, + FFFD5c01b0387fc05c01b038 /* SwSelfCollision.cpp */, + FFFD5c01b0a07fc05c01b0a0 /* SwSolver.cpp */, + FFFD5c01b1087fc05c01b108 /* SwSolverKernel.cpp */, + FFFD5c01b1707fc05c01b170 /* TripletScheduler.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB8172b0d07f8a8172b0d0 /* LowLevelParticles */ = { + FFFB5be6a2a07fc05be6a2a0 /* LowLevelParticles */ = { isa = PBXGroup; children = ( - FFFB817243607f8a81724360 /* include */, - FFFB817243887f8a81724388 /* src */, + FFFB5be6c1b07fc05be6c1b0 /* include */, + FFFB5be6c1d87fc05be6c1d8 /* src */, ); name = "LowLevelParticles"; sourceTree = "<group>"; }; - FFFB817243607f8a81724360 /* include */ = { + FFFB5be6c1b07fc05be6c1b0 /* include */ = { isa = PBXGroup; children = ( - FFFD82825c007f8a82825c00 /* PtBodyTransformVault.h */, - FFFD82825c687f8a82825c68 /* PtContext.h */, - FFFD82825cd07f8a82825cd0 /* PtGridCellVector.h */, - FFFD82825d387f8a82825d38 /* PtParticle.h */, - FFFD82825da07f8a82825da0 /* PtParticleContactManagerStream.h */, - FFFD82825e087f8a82825e08 /* PtParticleData.h */, - FFFD82825e707f8a82825e70 /* PtParticleShape.h */, - FFFD82825ed87f8a82825ed8 /* PtParticleSystemCore.h */, - FFFD82825f407f8a82825f40 /* PtParticleSystemFlags.h */, - FFFD82825fa87f8a82825fa8 /* PtParticleSystemSim.h */, + FFFD5a83dc007fc05a83dc00 /* PtBodyTransformVault.h */, + FFFD5a83dc687fc05a83dc68 /* PtContext.h */, + FFFD5a83dcd07fc05a83dcd0 /* PtGridCellVector.h */, + FFFD5a83dd387fc05a83dd38 /* PtParticle.h */, + FFFD5a83dda07fc05a83dda0 /* PtParticleContactManagerStream.h */, + FFFD5a83de087fc05a83de08 /* PtParticleData.h */, + FFFD5a83de707fc05a83de70 /* PtParticleShape.h */, + FFFD5a83ded87fc05a83ded8 /* PtParticleSystemCore.h */, + FFFD5a83df407fc05a83df40 /* PtParticleSystemFlags.h */, + FFFD5a83dfa87fc05a83dfa8 /* PtParticleSystemSim.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB817243887f8a81724388 /* src */ = { + FFFB5be6c1d87fc05be6c1d8 /* src */ = { isa = PBXGroup; children = ( - FFFD82831c007f8a82831c00 /* PtBatcher.h */, - FFFD82831c687f8a82831c68 /* PtCollision.h */, - FFFD82831cd07f8a82831cd0 /* PtCollisionData.h */, - FFFD82831d387f8a82831d38 /* PtCollisionHelper.h */, - FFFD82831da07f8a82831da0 /* PtCollisionMethods.h */, - FFFD82831e087f8a82831e08 /* PtCollisionParameters.h */, - FFFD82831e707f8a82831e70 /* PtConfig.h */, - FFFD82831ed87f8a82831ed8 /* PtConstants.h */, - FFFD82831f407f8a82831f40 /* PtContextCpu.h */, - FFFD82831fa87f8a82831fa8 /* PtDynamicHelper.h */, - FFFD828320107f8a82832010 /* PtDynamics.h */, - FFFD828320787f8a82832078 /* PtDynamicsKernels.h */, - FFFD828320e07f8a828320e0 /* PtDynamicsParameters.h */, - FFFD828321487f8a82832148 /* PtDynamicsTempBuffers.h */, - FFFD828321b07f8a828321b0 /* PtHeightFieldAabbTest.h */, - FFFD828322187f8a82832218 /* PtPacketSections.h */, - FFFD828322807f8a82832280 /* PtParticleCell.h */, - FFFD828322e87f8a828322e8 /* PtParticleOpcodeCache.h */, - FFFD828323507f8a82832350 /* PtParticleShapeCpu.h */, - FFFD828323b87f8a828323b8 /* PtParticleSystemSimCpu.h */, - FFFD828324207f8a82832420 /* PtSpatialHash.h */, - FFFD828324887f8a82832488 /* PtSpatialHashHelper.h */, - FFFD828324f07f8a828324f0 /* PtTwoWayData.h */, - FFFD828325587f8a82832558 /* PtBatcher.cpp */, - FFFD828325c07f8a828325c0 /* PtBodyTransformVault.cpp */, - FFFD828326287f8a82832628 /* PtCollision.cpp */, - FFFD828326907f8a82832690 /* PtCollisionBox.cpp */, - FFFD828326f87f8a828326f8 /* PtCollisionCapsule.cpp */, - FFFD828327607f8a82832760 /* PtCollisionConvex.cpp */, - FFFD828327c87f8a828327c8 /* PtCollisionMesh.cpp */, - FFFD828328307f8a82832830 /* PtCollisionPlane.cpp */, - FFFD828328987f8a82832898 /* PtCollisionSphere.cpp */, - FFFD828329007f8a82832900 /* PtContextCpu.cpp */, - FFFD828329687f8a82832968 /* PtDynamics.cpp */, - FFFD828329d07f8a828329d0 /* PtParticleData.cpp */, - FFFD82832a387f8a82832a38 /* PtParticleShapeCpu.cpp */, - FFFD82832aa07f8a82832aa0 /* PtParticleSystemSimCpu.cpp */, - FFFD82832b087f8a82832b08 /* PtSpatialHash.cpp */, - FFFD82832b707f8a82832b70 /* PtSpatialLocalHash.cpp */, + FFFD5a8468007fc05a846800 /* PtBatcher.h */, + FFFD5a8468687fc05a846868 /* PtCollision.h */, + FFFD5a8468d07fc05a8468d0 /* PtCollisionData.h */, + FFFD5a8469387fc05a846938 /* PtCollisionHelper.h */, + FFFD5a8469a07fc05a8469a0 /* PtCollisionMethods.h */, + FFFD5a846a087fc05a846a08 /* PtCollisionParameters.h */, + FFFD5a846a707fc05a846a70 /* PtConfig.h */, + FFFD5a846ad87fc05a846ad8 /* PtConstants.h */, + FFFD5a846b407fc05a846b40 /* PtContextCpu.h */, + FFFD5a846ba87fc05a846ba8 /* PtDynamicHelper.h */, + FFFD5a846c107fc05a846c10 /* PtDynamics.h */, + FFFD5a846c787fc05a846c78 /* PtDynamicsKernels.h */, + FFFD5a846ce07fc05a846ce0 /* PtDynamicsParameters.h */, + FFFD5a846d487fc05a846d48 /* PtDynamicsTempBuffers.h */, + FFFD5a846db07fc05a846db0 /* PtHeightFieldAabbTest.h */, + FFFD5a846e187fc05a846e18 /* PtPacketSections.h */, + FFFD5a846e807fc05a846e80 /* PtParticleCell.h */, + FFFD5a846ee87fc05a846ee8 /* PtParticleOpcodeCache.h */, + FFFD5a846f507fc05a846f50 /* PtParticleShapeCpu.h */, + FFFD5a846fb87fc05a846fb8 /* PtParticleSystemSimCpu.h */, + FFFD5a8470207fc05a847020 /* PtSpatialHash.h */, + FFFD5a8470887fc05a847088 /* PtSpatialHashHelper.h */, + FFFD5a8470f07fc05a8470f0 /* PtTwoWayData.h */, + FFFD5a8471587fc05a847158 /* PtBatcher.cpp */, + FFFD5a8471c07fc05a8471c0 /* PtBodyTransformVault.cpp */, + FFFD5a8472287fc05a847228 /* PtCollision.cpp */, + FFFD5a8472907fc05a847290 /* PtCollisionBox.cpp */, + FFFD5a8472f87fc05a8472f8 /* PtCollisionCapsule.cpp */, + FFFD5a8473607fc05a847360 /* PtCollisionConvex.cpp */, + FFFD5a8473c87fc05a8473c8 /* PtCollisionMesh.cpp */, + FFFD5a8474307fc05a847430 /* PtCollisionPlane.cpp */, + FFFD5a8474987fc05a847498 /* PtCollisionSphere.cpp */, + FFFD5a8475007fc05a847500 /* PtContextCpu.cpp */, + FFFD5a8475687fc05a847568 /* PtDynamics.cpp */, + FFFD5a8475d07fc05a8475d0 /* PtParticleData.cpp */, + FFFD5a8476387fc05a847638 /* PtParticleShapeCpu.cpp */, + FFFD5a8476a07fc05a8476a0 /* PtParticleSystemSimCpu.cpp */, + FFFD5a8477087fc05a847708 /* PtSpatialHash.cpp */, + FFFD5a8477707fc05a847770 /* PtSpatialLocalHash.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB811077f07f8a811077f0 /* PxTask */ = { + FFFB5bf838007fc05bf83800 /* PxTask */ = { isa = PBXGroup; children = ( - FFFB81102b507f8a81102b50 /* include */, - FFFB81102b787f8a81102b78 /* src */, + FFFB5bf662207fc05bf66220 /* include */, + FFFB5bf662487fc05bf66248 /* src */, ); name = "PxTask"; sourceTree = "<group>"; }; - FFFB81102b507f8a81102b50 /* include */ = { + FFFB5bf662207fc05bf66220 /* include */ = { isa = PBXGroup; children = ( - FFFD81129de07f8a81129de0 /* PxCpuDispatcher.h */, - FFFD81129e487f8a81129e48 /* PxGpuDispatcher.h */, - FFFD81129eb07f8a81129eb0 /* PxGpuTask.h */, - FFFD81129f187f8a81129f18 /* PxTask.h */, - FFFD81129f807f8a81129f80 /* PxTaskDefine.h */, - FFFD81129fe87f8a81129fe8 /* PxTaskManager.h */, + FFFD5bf63cf07fc05bf63cf0 /* PxCpuDispatcher.h */, + FFFD5bf63d587fc05bf63d58 /* PxGpuDispatcher.h */, + FFFD5bf63dc07fc05bf63dc0 /* PxGpuTask.h */, + FFFD5bf63e287fc05bf63e28 /* PxTask.h */, + FFFD5bf63e907fc05bf63e90 /* PxTaskDefine.h */, + FFFD5bf63ef87fc05bf63ef8 /* PxTaskManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB81102b787f8a81102b78 /* src */ = { + FFFB5bf662487fc05bf66248 /* src */ = { isa = PBXGroup; children = ( - FFFD811297307f8a81129730 /* src/TaskManager.cpp */, + FFFD5bf63c607fc05bf63c60 /* src/TaskManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB8145b5107f8a8145b510 /* PsFastXml */ = { + FFFB5d16dba07fc05d16dba0 /* PsFastXml */ = { isa = PBXGroup; children = ( - FFFB8145b9407f8a8145b940 /* include */, - FFFB8145b9687f8a8145b968 /* src */, + FFFB5d16e1607fc05d16e160 /* include */, + FFFB5d16e1887fc05d16e188 /* src */, ); name = "PsFastXml"; sourceTree = "<group>"; }; - FFFB8145b9407f8a8145b940 /* include */ = { + FFFB5d16e1607fc05d16e160 /* include */ = { isa = PBXGroup; children = ( - FFFD8145bad07f8a8145bad0 /* PsFastXml.h */, + FFFD5d167f407fc05d167f40 /* PsFastXml.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB8145b9687f8a8145b968 /* src */ = { + FFFB5d16e1887fc05d16e188 /* src */ = { isa = PBXGroup; children = ( - FFFD8145bbd07f8a8145bbd0 /* PsFastXml.cpp */, + FFFD5d1680407fc05d168040 /* PsFastXml.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; @@ -4995,61 +4995,61 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - FFFA814495b07f8a814495b0 /* PhysX */ = { + FFFA5d170f707fc05d170f70 /* PhysX */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6814495b07f8a814495b0 /* Build configuration list for PBXNativeTarget "PhysX" */; + buildConfigurationList = FFF65d170f707fc05d170f70 /* Build configuration list for PBXNativeTarget "PhysX" */; buildPhases = ( - FFF2814495b07f8a814495b0, - FFF8814495b07f8a814495b0, - FFFC814495b07f8a814495b0, + FFF25d170f707fc05d170f70, + FFF85d170f707fc05d170f70, + FFFC5d170f707fc05d170f70, ); buildRules = ( ); dependencies = ( - FFF4814601d07f8a814601d0, /* LowLevel */ - FFF4814569507f8a81456950, /* LowLevelAABB */ - FFF4814607d07f8a814607d0, /* LowLevelCloth */ - FFF4814607707f8a81460770, /* LowLevelDynamics */ - FFF48144ef007f8a8144ef00, /* LowLevelParticles */ - FFF48144b5907f8a8144b590, /* PhysXCommon */ - FFF4814498a07f8a814498a0, /* PxFoundation */ - FFF4814495507f8a81449550, /* PxPvdSDK */ - FFF4814608b07f8a814608b0, /* PxTask */ - FFF48144ef607f8a8144ef60, /* SceneQuery */ - FFF4814608807f8a81460880, /* SimulationController */ + FFF45d17a1107fc05d17a110, /* LowLevel */ + FFF45d17cbe07fc05d17cbe0, /* LowLevelAABB */ + FFF45d17cca07fc05d17cca0, /* LowLevelCloth */ + FFF45d17cc407fc05d17cc40, /* LowLevelDynamics */ + FFF45d1799c07fc05d1799c0, /* LowLevelParticles */ + FFF45d17a0b07fc05d17a0b0, /* PhysXCommon */ + FFF45d1712607fc05d171260, /* PxFoundation */ + FFF45d170f107fc05d170f10, /* PxPvdSDK */ + FFF45d179b007fc05d179b00, /* PxTask */ + FFF45d179a207fc05d179a20, /* SceneQuery */ + FFF45d179a807fc05d179a80, /* SimulationController */ ); name = "PhysX"; productName = "PhysX"; - productReference = FFFD814495b07f8a814495b0 /* PhysX */; + productReference = FFFD5d170f707fc05d170f70 /* PhysX */; productType = "com.apple.product-type.library.static"; }; - FFFA8144ebc07f8a8144ebc0 /* PhysXCharacterKinematic */ = { + FFFA5d179b107fc05d179b10 /* PhysXCharacterKinematic */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF68144ebc07f8a8144ebc0 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; + buildConfigurationList = FFF65d179b107fc05d179b10 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; buildPhases = ( - FFF28144ebc07f8a8144ebc0, - FFF88144ebc07f8a8144ebc0, - FFFC8144ebc07f8a8144ebc0, + FFF25d179b107fc05d179b10, + FFF85d179b107fc05d179b10, + FFFC5d179b107fc05d179b10, ); buildRules = ( ); dependencies = ( - FFF4814577b07f8a814577b0, /* PhysXCommon */ - FFF4814622207f8a81462220, /* PhysXExtensions */ - FFF4814636f07f8a814636f0, /* PxFoundation */ + FFF45d1809507fc05d180950, /* PhysXCommon */ + FFF45d17f4a07fc05d17f4a0, /* PhysXExtensions */ + FFF45d17f9507fc05d17f950, /* PxFoundation */ ); name = "PhysXCharacterKinematic"; productName = "PhysXCharacterKinematic"; - productReference = FFFD8144ebc07f8a8144ebc0 /* PhysXCharacterKinematic */; + productReference = FFFD5d179b107fc05d179b10 /* PhysXCharacterKinematic */; productType = "com.apple.product-type.library.static"; }; - FFFA814570a07f8a814570a0 /* PhysXVehicle */ = { + FFFA5d17ae507fc05d17ae50 /* PhysXVehicle */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6814570a07f8a814570a0 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; + buildConfigurationList = FFF65d17ae507fc05d17ae50 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; buildPhases = ( - FFF2814570a07f8a814570a0, - FFF8814570a07f8a814570a0, - FFFC814570a07f8a814570a0, + FFF25d17ae507fc05d17ae50, + FFF85d17ae507fc05d17ae50, + FFFC5d17ae507fc05d17ae50, ); buildRules = ( ); @@ -5057,34 +5057,34 @@ ); name = "PhysXVehicle"; productName = "PhysXVehicle"; - productReference = FFFD814570a07f8a814570a0 /* PhysXVehicle */; + productReference = FFFD5d17ae507fc05d17ae50 /* PhysXVehicle */; productType = "com.apple.product-type.library.static"; }; - FFFA8146da607f8a8146da60 /* PhysXExtensions */ = { + FFFA5d18aba07fc05d18aba0 /* PhysXExtensions */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF68146da607f8a8146da60 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; + buildConfigurationList = FFF65d18aba07fc05d18aba0 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; buildPhases = ( - FFF28146da607f8a8146da60, - FFF88146da607f8a8146da60, - FFFC8146da607f8a8146da60, + FFF25d18aba07fc05d18aba0, + FFF85d18aba07fc05d18aba0, + FFFC5d18aba07fc05d18aba0, ); buildRules = ( ); dependencies = ( - FFF48146dee07f8a8146dee0, /* PsFastXml */ + FFF45d18b0207fc05d18b020, /* PsFastXml */ ); name = "PhysXExtensions"; productName = "PhysXExtensions"; - productReference = FFFD8146da607f8a8146da60 /* PhysXExtensions */; + productReference = FFFD5d18aba07fc05d18aba0 /* PhysXExtensions */; productType = "com.apple.product-type.library.static"; }; - FFFA814803907f8a81480390 /* SceneQuery */ = { + FFFA5d19d4d07fc05d19d4d0 /* SceneQuery */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6814803907f8a81480390 /* Build configuration list for PBXNativeTarget "SceneQuery" */; + buildConfigurationList = FFF65d19d4d07fc05d19d4d0 /* Build configuration list for PBXNativeTarget "SceneQuery" */; buildPhases = ( - FFF2814803907f8a81480390, - FFF8814803907f8a81480390, - FFFC814803907f8a81480390, + FFF25d19d4d07fc05d19d4d0, + FFF85d19d4d07fc05d19d4d0, + FFFC5d19d4d07fc05d19d4d0, ); buildRules = ( ); @@ -5092,16 +5092,16 @@ ); name = "SceneQuery"; productName = "SceneQuery"; - productReference = FFFD814803907f8a81480390 /* SceneQuery */; + productReference = FFFD5d19d4d07fc05d19d4d0 /* SceneQuery */; productType = "com.apple.product-type.library.static"; }; - FFFA81484a807f8a81484a80 /* SimulationController */ = { + FFFA5d1a1bc07fc05d1a1bc0 /* SimulationController */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF681484a807f8a81484a80 /* Build configuration list for PBXNativeTarget "SimulationController" */; + buildConfigurationList = FFF65d1a1bc07fc05d1a1bc0 /* Build configuration list for PBXNativeTarget "SimulationController" */; buildPhases = ( - FFF281484a807f8a81484a80, - FFF881484a807f8a81484a80, - FFFC81484a807f8a81484a80, + FFF25d1a1bc07fc05d1a1bc0, + FFF85d1a1bc07fc05d1a1bc0, + FFFC5d1a1bc07fc05d1a1bc0, ); buildRules = ( ); @@ -5109,54 +5109,54 @@ ); name = "SimulationController"; productName = "SimulationController"; - productReference = FFFD81484a807f8a81484a80 /* SimulationController */; + productReference = FFFD5d1a1bc07fc05d1a1bc0 /* SimulationController */; productType = "com.apple.product-type.library.static"; }; - FFFA8105c6407f8a8105c640 /* PhysXCooking */ = { + FFFA5bfadce07fc05bfadce0 /* PhysXCooking */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF68105c6407f8a8105c640 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; + buildConfigurationList = FFF65bfadce07fc05bfadce0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; buildPhases = ( - FFF28105c6407f8a8105c640, - FFF88105c6407f8a8105c640, - FFFC8105c6407f8a8105c640, + FFF25bfadce07fc05bfadce0, + FFF85bfadce07fc05bfadce0, + FFFC5bfadce07fc05bfadce0, ); buildRules = ( ); dependencies = ( - FFF48105dda07f8a8105dda0, /* PhysXCommon */ - FFF4810608407f8a81060840, /* PhysXExtensions */ - FFF48105c5407f8a8105c540, /* PxFoundation */ + FFF45bf98f607fc05bf98f60, /* PhysXCommon */ + FFF45bf99c407fc05bf99c40, /* PhysXExtensions */ + FFF45bfad5607fc05bfad560, /* PxFoundation */ ); name = "PhysXCooking"; productName = "PhysXCooking"; - productReference = FFFD8105c6407f8a8105c640 /* PhysXCooking */; + productReference = FFFD5bfadce07fc05bfadce0 /* PhysXCooking */; productType = "com.apple.product-type.library.static"; }; - FFFA810dc3907f8a810dc390 /* PhysXCommon */ = { + FFFA5b93e9407fc05b93e940 /* PhysXCommon */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6810dc3907f8a810dc390 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; + buildConfigurationList = FFF65b93e9407fc05b93e940 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; buildPhases = ( - FFF2810dc3907f8a810dc390, - FFF8810dc3907f8a810dc390, - FFFC810dc3907f8a810dc390, + FFF25b93e9407fc05b93e940, + FFF85b93e9407fc05b93e940, + FFFC5b93e9407fc05b93e940, ); buildRules = ( ); dependencies = ( - FFF4810caf307f8a810caf30, /* PxFoundation */ + FFF45b93a4907fc05b93a490, /* PxFoundation */ ); name = "PhysXCommon"; productName = "PhysXCommon"; - productReference = FFFD810dc3907f8a810dc390 /* PhysXCommon */; + productReference = FFFD5b93e9407fc05b93e940 /* PhysXCommon */; productType = "com.apple.product-type.library.static"; }; - FFFA810edec07f8a810edec0 /* PxFoundation */ = { + FFFA5b91b1007fc05b91b100 /* PxFoundation */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6810edec07f8a810edec0 /* Build configuration list for PBXNativeTarget "PxFoundation" */; + buildConfigurationList = FFF65b91b1007fc05b91b100 /* Build configuration list for PBXNativeTarget "PxFoundation" */; buildPhases = ( - FFF2810edec07f8a810edec0, - FFF8810edec07f8a810edec0, - FFFC810edec07f8a810edec0, + FFF25b91b1007fc05b91b100, + FFF85b91b1007fc05b91b100, + FFFC5b91b1007fc05b91b100, ); buildRules = ( ); @@ -5164,34 +5164,34 @@ ); name = "PxFoundation"; productName = "PxFoundation"; - productReference = FFFD810edec07f8a810edec0 /* PxFoundation */; + productReference = FFFD5b91b1007fc05b91b100 /* PxFoundation */; productType = "com.apple.product-type.library.static"; }; - FFFA81169e707f8a81169e70 /* PxPvdSDK */ = { + FFFA5bf09c707fc05bf09c70 /* PxPvdSDK */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF681169e707f8a81169e70 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; + buildConfigurationList = FFF65bf09c707fc05bf09c70 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; buildPhases = ( - FFF281169e707f8a81169e70, - FFF881169e707f8a81169e70, - FFFC81169e707f8a81169e70, + FFF25bf09c707fc05bf09c70, + FFF85bf09c707fc05bf09c70, + FFFC5bf09c707fc05bf09c70, ); buildRules = ( ); dependencies = ( - FFF4806734307f8a80673430, /* PxFoundation */ + FFF45bf050407fc05bf05040, /* PxFoundation */ ); name = "PxPvdSDK"; productName = "PxPvdSDK"; - productReference = FFFD81169e707f8a81169e70 /* PxPvdSDK */; + productReference = FFFD5bf09c707fc05bf09c70 /* PxPvdSDK */; productType = "com.apple.product-type.library.static"; }; - FFFA810c34707f8a810c3470 /* LowLevel */ = { + FFFA5be3ff207fc05be3ff20 /* LowLevel */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6810c34707f8a810c3470 /* Build configuration list for PBXNativeTarget "LowLevel" */; + buildConfigurationList = FFF65be3ff207fc05be3ff20 /* Build configuration list for PBXNativeTarget "LowLevel" */; buildPhases = ( - FFF2810c34707f8a810c3470, - FFF8810c34707f8a810c3470, - FFFC810c34707f8a810c3470, + FFF25be3ff207fc05be3ff20, + FFF85be3ff207fc05be3ff20, + FFFC5be3ff207fc05be3ff20, ); buildRules = ( ); @@ -5199,16 +5199,16 @@ ); name = "LowLevel"; productName = "LowLevel"; - productReference = FFFD810c34707f8a810c3470 /* LowLevel */; + productReference = FFFD5be3ff207fc05be3ff20 /* LowLevel */; productType = "com.apple.product-type.library.static"; }; - FFFA81149d807f8a81149d80 /* LowLevelAABB */ = { + FFFA5bf207407fc05bf20740 /* LowLevelAABB */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF681149d807f8a81149d80 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; + buildConfigurationList = FFF65bf207407fc05bf20740 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; buildPhases = ( - FFF281149d807f8a81149d80, - FFF881149d807f8a81149d80, - FFFC81149d807f8a81149d80, + FFF25bf207407fc05bf20740, + FFF85bf207407fc05bf20740, + FFFC5bf207407fc05bf20740, ); buildRules = ( ); @@ -5216,16 +5216,16 @@ ); name = "LowLevelAABB"; productName = "LowLevelAABB"; - productReference = FFFD81149d807f8a81149d80 /* LowLevelAABB */; + productReference = FFFD5bf207407fc05bf20740 /* LowLevelAABB */; productType = "com.apple.product-type.library.static"; }; - FFFA81432a807f8a81432a80 /* LowLevelDynamics */ = { + FFFA5bf4ac107fc05bf4ac10 /* LowLevelDynamics */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF681432a807f8a81432a80 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; + buildConfigurationList = FFF65bf4ac107fc05bf4ac10 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; buildPhases = ( - FFF281432a807f8a81432a80, - FFF881432a807f8a81432a80, - FFFC81432a807f8a81432a80, + FFF25bf4ac107fc05bf4ac10, + FFF85bf4ac107fc05bf4ac10, + FFFC5bf4ac107fc05bf4ac10, ); buildRules = ( ); @@ -5233,16 +5233,16 @@ ); name = "LowLevelDynamics"; productName = "LowLevelDynamics"; - productReference = FFFD81432a807f8a81432a80 /* LowLevelDynamics */; + productReference = FFFD5bf4ac107fc05bf4ac10 /* LowLevelDynamics */; productType = "com.apple.product-type.library.static"; }; - FFFA816f83807f8a816f8380 /* LowLevelCloth */ = { + FFFA5bc335c07fc05bc335c0 /* LowLevelCloth */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6816f83807f8a816f8380 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; + buildConfigurationList = FFF65bc335c07fc05bc335c0 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; buildPhases = ( - FFF2816f83807f8a816f8380, - FFF8816f83807f8a816f8380, - FFFC816f83807f8a816f8380, + FFF25bc335c07fc05bc335c0, + FFF85bc335c07fc05bc335c0, + FFFC5bc335c07fc05bc335c0, ); buildRules = ( ); @@ -5250,16 +5250,16 @@ ); name = "LowLevelCloth"; productName = "LowLevelCloth"; - productReference = FFFD816f83807f8a816f8380 /* LowLevelCloth */; + productReference = FFFD5bc335c07fc05bc335c0 /* LowLevelCloth */; productType = "com.apple.product-type.library.static"; }; - FFFA8172b0d07f8a8172b0d0 /* LowLevelParticles */ = { + FFFA5be6a2a07fc05be6a2a0 /* LowLevelParticles */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF68172b0d07f8a8172b0d0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; + buildConfigurationList = FFF65be6a2a07fc05be6a2a0 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; buildPhases = ( - FFF28172b0d07f8a8172b0d0, - FFF88172b0d07f8a8172b0d0, - FFFC8172b0d07f8a8172b0d0, + FFF25be6a2a07fc05be6a2a0, + FFF85be6a2a07fc05be6a2a0, + FFFC5be6a2a07fc05be6a2a0, ); buildRules = ( ); @@ -5267,16 +5267,16 @@ ); name = "LowLevelParticles"; productName = "LowLevelParticles"; - productReference = FFFD8172b0d07f8a8172b0d0 /* LowLevelParticles */; + productReference = FFFD5be6a2a07fc05be6a2a0 /* LowLevelParticles */; productType = "com.apple.product-type.library.static"; }; - FFFA811077f07f8a811077f0 /* PxTask */ = { + FFFA5bf838007fc05bf83800 /* PxTask */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF6811077f07f8a811077f0 /* Build configuration list for PBXNativeTarget "PxTask" */; + buildConfigurationList = FFF65bf838007fc05bf83800 /* Build configuration list for PBXNativeTarget "PxTask" */; buildPhases = ( - FFF2811077f07f8a811077f0, - FFF8811077f07f8a811077f0, - FFFC811077f07f8a811077f0, + FFF25bf838007fc05bf83800, + FFF85bf838007fc05bf83800, + FFFC5bf838007fc05bf83800, ); buildRules = ( ); @@ -5284,16 +5284,16 @@ ); name = "PxTask"; productName = "PxTask"; - productReference = FFFD811077f07f8a811077f0 /* PxTask */; + productReference = FFFD5bf838007fc05bf83800 /* PxTask */; productType = "com.apple.product-type.library.static"; }; - FFFA8145b5107f8a8145b510 /* PsFastXml */ = { + FFFA5d16dba07fc05d16dba0 /* PsFastXml */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF68145b5107f8a8145b510 /* Build configuration list for PBXNativeTarget "PsFastXml" */; + buildConfigurationList = FFF65d16dba07fc05d16dba0 /* Build configuration list for PBXNativeTarget "PsFastXml" */; buildPhases = ( - FFF28145b5107f8a8145b510, - FFF88145b5107f8a8145b510, - FFFC8145b5107f8a8145b510, + FFF25d16dba07fc05d16dba0, + FFF85d16dba07fc05d16dba0, + FFFC5d16dba07fc05d16dba0, ); buildRules = ( ); @@ -5301,213 +5301,213 @@ ); name = "PsFastXml"; productName = "PsFastXml"; - productReference = FFFD8145b5107f8a8145b510 /* PsFastXml */; + productReference = FFFD5d16dba07fc05d16dba0 /* PsFastXml */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin XCConfigurationList section */ - FFF6814495b07f8a814495b0 = { + FFF65d170f707fc05d170f70 = { isa = XCConfigurationList; buildConfigurations = ( - FFF78183ca007f8a8183ca00, - FFF78183d0f07f8a8183d0f0, - FFF78183d7e07f8a8183d7e0, - FFF78183ded07f8a8183ded0, + FFF75c8520007fc05c852000, + FFF75c8526f07fc05c8526f0, + FFF75c852de07fc05c852de0, + FFF75c8534d07fc05c8534d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF68144ebc07f8a8144ebc0 = { + FFF65d179b107fc05d179b10 = { isa = XCConfigurationList; buildConfigurations = ( - FFF78183e6007f8a8183e600, - FFF78183ecf07f8a8183ecf0, - FFF78183f3e07f8a8183f3e0, - FFF78183fad07f8a8183fad0, + FFF75c853c007fc05c853c00, + FFF75c8542f07fc05c8542f0, + FFF75c8549e07fc05c8549e0, + FFF75c8550d07fc05c8550d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6814570a07f8a814570a0 = { + FFF65d17ae507fc05d17ae50 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7818402007f8a81840200, - FFF7818408f07f8a818408f0, - FFF781840fe07f8a81840fe0, - FFF7818416d07f8a818416d0, + FFF75c8558007fc05c855800, + FFF75c855ef07fc05c855ef0, + FFF75c8565e07fc05c8565e0, + FFF75c856cd07fc05c856cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF68146da607f8a8146da60 = { + FFF65d18aba07fc05d18aba0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF781841e007f8a81841e00, - FFF7818424f07f8a818424f0, - FFF781842be07f8a81842be0, - FFF7818432d07f8a818432d0, + FFF75c857a007fc05c857a00, + FFF75c8580f07fc05c8580f0, + FFF75c8587e07fc05c8587e0, + FFF75c858ed07fc05c858ed0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6814803907f8a81480390 = { + FFF65d19d4d07fc05d19d4d0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF781843a007f8a81843a00, - FFF7818440f07f8a818440f0, - FFF7818447e07f8a818447e0, - FFF781844ed07f8a81844ed0, + FFF75c8596007fc05c859600, + FFF75c859cf07fc05c859cf0, + FFF75c85a3e07fc05c85a3e0, + FFF75c85aad07fc05c85aad0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF681484a807f8a81484a80 = { + FFF65d1a1bc07fc05d1a1bc0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7818456007f8a81845600, - FFF781845cf07f8a81845cf0, - FFF7818463e07f8a818463e0, - FFF781846ad07f8a81846ad0, + FFF75c85b2007fc05c85b200, + FFF75c85b8f07fc05c85b8f0, + FFF75c85bfe07fc05c85bfe0, + FFF75c85c6d07fc05c85c6d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF68105c6407f8a8105c640 = { + FFF65bfadce07fc05bfadce0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7818472007f8a81847200, - FFF7818478f07f8a818478f0, - FFF781847fe07f8a81847fe0, - FFF7818486d07f8a818486d0, + FFF75c85ce007fc05c85ce00, + FFF75c85d4f07fc05c85d4f0, + FFF75c85dbe07fc05c85dbe0, + FFF75c85e2d07fc05c85e2d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6810dc3907f8a810dc390 = { + FFF65b93e9407fc05b93e940 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7820110007f8a82011000, - FFF7820116f07f8a820116f0, - FFF782011de07f8a82011de0, - FFF7820124d07f8a820124d0, + FFF75c0110007fc05c011000, + FFF75c0116f07fc05c0116f0, + FFF75c011de07fc05c011de0, + FFF75c0124d07fc05c0124d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF6810edec07f8a810edec0 = { + FFF65b91b1007fc05b91b100 = { isa = XCConfigurationList; buildConfigurations = ( - FFF781808c007f8a81808c00, - FFF7818092f07f8a818092f0, - FFF7818099e07f8a818099e0, - FFF78180a0d07f8a8180a0d0, + FFF75b18d2007fc05b18d200, + FFF75b18d8f07fc05b18d8f0, + FFF75b18dfe07fc05b18dfe0, + FFF75b18e6d07fc05b18e6d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF681169e707f8a81169e70 = { + FFF65bf09c707fc05bf09c70 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7809878007f8a80987800, - FFF780987ef07f8a80987ef0, - FFF7809885e07f8a809885e0, - FFF780988cd07f8a80988cd0, + FFF75c80b8007fc05c80b800, + FFF75c80bef07fc05c80bef0, + FFF75c80c5e07fc05c80c5e0, + FFF75c80ccd07fc05c80ccd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6810c34707f8a810c3470 = { + FFF65be3ff207fc05be3ff20 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7818332007f8a81833200, - FFF7818338f07f8a818338f0, - FFF781833fe07f8a81833fe0, - FFF7818346d07f8a818346d0, + FFF75a8402007fc05a840200, + FFF75a8408f07fc05a8408f0, + FFF75a840fe07fc05a840fe0, + FFF75a8416d07fc05a8416d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF681149d807f8a81149d80 = { + FFF65bf207407fc05bf20740 = { isa = XCConfigurationList; buildConfigurations = ( - FFF78099a0007f8a8099a000, - FFF78099a6f07f8a8099a6f0, - FFF78099ade07f8a8099ade0, - FFF78099b4d07f8a8099b4d0, + FFF75c8192007fc05c819200, + FFF75c8198f07fc05c8198f0, + FFF75c819fe07fc05c819fe0, + FFF75c81a6d07fc05c81a6d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF681432a807f8a81432a80 = { + FFF65bf4ac107fc05bf4ac10 = { isa = XCConfigurationList; buildConfigurations = ( - FFF78201b8007f8a8201b800, - FFF78201bef07f8a8201bef0, - FFF78201c5e07f8a8201c5e0, - FFF78201ccd07f8a8201ccd0, + FFF75c8238007fc05c823800, + FFF75c823ef07fc05c823ef0, + FFF75c8245e07fc05c8245e0, + FFF75c824cd07fc05c824cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6816f83807f8a816f8380 = { + FFF65bc335c07fc05bc335c0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7828296007f8a82829600, - FFF782829cf07f8a82829cf0, - FFF78282a3e07f8a8282a3e0, - FFF78282aad07f8a8282aad0, + FFF75c01bc007fc05c01bc00, + FFF75c01c2f07fc05c01c2f0, + FFF75c01c9e07fc05c01c9e0, + FFF75c01d0d07fc05c01d0d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF68172b0d07f8a8172b0d0 = { + FFF65be6a2a07fc05be6a2a0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7828336007f8a82833600, - FFF782833cf07f8a82833cf0, - FFF7828343e07f8a828343e0, - FFF782834ad07f8a82834ad0, + FFF75a8482007fc05a848200, + FFF75a8488f07fc05a8488f0, + FFF75a848fe07fc05a848fe0, + FFF75a8496d07fc05a8496d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF6811077f07f8a811077f0 = { + FFF65bf838007fc05bf83800 = { isa = XCConfigurationList; buildConfigurations = ( - FFF7809a14007f8a809a1400, - FFF7809a1af07f8a809a1af0, - FFF7809a21e07f8a809a21e0, - FFF7809a28d07f8a809a28d0, + FFF75c82b2007fc05c82b200, + FFF75c82b8f07fc05c82b8f0, + FFF75c82bfe07fc05c82bfe0, + FFF75c82c6d07fc05c82c6d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF68145b5107f8a8145b510 = { + FFF65d16dba07fc05d16dba0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF782021a007f8a82021a00, - FFF7820220f07f8a820220f0, - FFF7820227e07f8a820227e0, - FFF782022ed07f8a82022ed0, + FFF75a86d4007fc05a86d400, + FFF75a86daf07fc05a86daf0, + FFF75a86e1e07fc05a86e1e0, + FFF75a86e8d07fc05a86e8d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF68047cb207f8a8047cb20 = { + FFF65a70e2507fc05a70e250 = { isa = XCConfigurationList; buildConfigurations = ( - FFF38183ca007f8a8183ca00 /* release */, - FFF38183d0f07f8a8183d0f0 /* debug */, - FFF38183d7e07f8a8183d7e0 /* checked */, - FFF38183ded07f8a8183ded0 /* profile */, + FFF35c8520007fc05c852000 /* release */, + FFF35c8526f07fc05c8526f0 /* debug */, + FFF35c852de07fc05c852de0 /* checked */, + FFF35c8534d07fc05c8534d0 /* profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; /* End XCConfigurationList section */ /* Begin XCBuildConfiguration section */ - FFF78183ca007f8a8183ca00 /* release */ = { + FFF75c8520007fc05c852000 /* 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; @@ -5537,7 +5537,7 @@ }; name = "release"; }; - FFF78183d0f07f8a8183d0f0 /* debug */ = { + FFF75c8526f07fc05c8526f0 /* 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; @@ -5567,7 +5567,7 @@ }; name = "debug"; }; - FFF78183d7e07f8a8183d7e0 /* checked */ = { + FFF75c852de07fc05c852de0 /* 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; @@ -5597,7 +5597,7 @@ }; name = "checked"; }; - FFF78183ded07f8a8183ded0 /* profile */ = { + FFF75c8534d07fc05c8534d0 /* 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; @@ -5627,7 +5627,7 @@ }; name = "profile"; }; - FFF78183e6007f8a8183e600 /* debug */ = { + FFF75c853c007fc05c853c00 /* 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; @@ -5657,7 +5657,7 @@ }; name = "debug"; }; - FFF78183ecf07f8a8183ecf0 /* checked */ = { + FFF75c8542f07fc05c8542f0 /* 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; @@ -5687,7 +5687,7 @@ }; name = "checked"; }; - FFF78183f3e07f8a8183f3e0 /* profile */ = { + FFF75c8549e07fc05c8549e0 /* 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; @@ -5717,7 +5717,7 @@ }; name = "profile"; }; - FFF78183fad07f8a8183fad0 /* release */ = { + FFF75c8550d07fc05c8550d0 /* 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; @@ -5747,7 +5747,7 @@ }; name = "release"; }; - FFF7818402007f8a81840200 /* debug */ = { + FFF75c8558007fc05c855800 /* 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; @@ -5777,7 +5777,7 @@ }; name = "debug"; }; - FFF7818408f07f8a818408f0 /* checked */ = { + FFF75c855ef07fc05c855ef0 /* 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; @@ -5807,7 +5807,7 @@ }; name = "checked"; }; - FFF781840fe07f8a81840fe0 /* profile */ = { + FFF75c8565e07fc05c8565e0 /* 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; @@ -5837,7 +5837,7 @@ }; name = "profile"; }; - FFF7818416d07f8a818416d0 /* release */ = { + FFF75c856cd07fc05c856cd0 /* 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; @@ -5867,7 +5867,7 @@ }; name = "release"; }; - FFF781841e007f8a81841e00 /* debug */ = { + FFF75c857a007fc05c857a00 /* 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; @@ -5875,7 +5875,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5897,7 +5897,7 @@ }; name = "debug"; }; - FFF7818424f07f8a818424f0 /* checked */ = { + FFF75c8580f07fc05c8580f0 /* 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; @@ -5905,7 +5905,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5927,7 +5927,7 @@ }; name = "checked"; }; - FFF781842be07f8a81842be0 /* profile */ = { + FFF75c8587e07fc05c8587e0 /* 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; @@ -5935,7 +5935,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5957,7 +5957,7 @@ }; name = "profile"; }; - FFF7818432d07f8a818432d0 /* release */ = { + FFF75c858ed07fc05c858ed0 /* 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; @@ -5965,7 +5965,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5987,7 +5987,7 @@ }; name = "release"; }; - FFF781843a007f8a81843a00 /* debug */ = { + FFF75c8596007fc05c859600 /* 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; @@ -6017,7 +6017,7 @@ }; name = "debug"; }; - FFF7818440f07f8a818440f0 /* checked */ = { + FFF75c859cf07fc05c859cf0 /* 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; @@ -6047,7 +6047,7 @@ }; name = "checked"; }; - FFF7818447e07f8a818447e0 /* profile */ = { + FFF75c85a3e07fc05c85a3e0 /* 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; @@ -6077,7 +6077,7 @@ }; name = "profile"; }; - FFF781844ed07f8a81844ed0 /* release */ = { + FFF75c85aad07fc05c85aad0 /* 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; @@ -6107,7 +6107,7 @@ }; name = "release"; }; - FFF7818456007f8a81845600 /* debug */ = { + FFF75c85b2007fc05c85b200 /* 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; @@ -6137,7 +6137,7 @@ }; name = "debug"; }; - FFF781845cf07f8a81845cf0 /* checked */ = { + FFF75c85b8f07fc05c85b8f0 /* 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; @@ -6167,7 +6167,7 @@ }; name = "checked"; }; - FFF7818463e07f8a818463e0 /* profile */ = { + FFF75c85bfe07fc05c85bfe0 /* 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; @@ -6197,7 +6197,7 @@ }; name = "profile"; }; - FFF781846ad07f8a81846ad0 /* release */ = { + FFF75c85c6d07fc05c85c6d0 /* 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; @@ -6227,7 +6227,7 @@ }; name = "release"; }; - FFF7818472007f8a81847200 /* release */ = { + FFF75c85ce007fc05c85ce00 /* 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; @@ -6257,7 +6257,7 @@ }; name = "release"; }; - FFF7818478f07f8a818478f0 /* debug */ = { + FFF75c85d4f07fc05c85d4f0 /* 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; @@ -6287,7 +6287,7 @@ }; name = "debug"; }; - FFF781847fe07f8a81847fe0 /* checked */ = { + FFF75c85dbe07fc05c85dbe0 /* 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; @@ -6317,7 +6317,7 @@ }; name = "checked"; }; - FFF7818486d07f8a818486d0 /* profile */ = { + FFF75c85e2d07fc05c85e2d0 /* 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; @@ -6347,7 +6347,7 @@ }; name = "profile"; }; - FFF7820110007f8a82011000 /* release */ = { + FFF75c0110007fc05c011000 /* 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; @@ -6377,7 +6377,7 @@ }; name = "release"; }; - FFF7820116f07f8a820116f0 /* debug */ = { + FFF75c0116f07fc05c0116f0 /* 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; @@ -6407,7 +6407,7 @@ }; name = "debug"; }; - FFF782011de07f8a82011de0 /* checked */ = { + FFF75c011de07fc05c011de0 /* 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; @@ -6437,7 +6437,7 @@ }; name = "checked"; }; - FFF7820124d07f8a820124d0 /* profile */ = { + FFF75c0124d07fc05c0124d0 /* 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; @@ -6467,7 +6467,7 @@ }; name = "profile"; }; - FFF781808c007f8a81808c00 /* debug */ = { + FFF75b18d2007fc05b18d200 /* 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; @@ -6497,7 +6497,7 @@ }; name = "debug"; }; - FFF7818092f07f8a818092f0 /* release */ = { + FFF75b18d8f07fc05b18d8f0 /* 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; @@ -6527,7 +6527,7 @@ }; name = "release"; }; - FFF7818099e07f8a818099e0 /* checked */ = { + FFF75b18dfe07fc05b18dfe0 /* 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; @@ -6557,7 +6557,7 @@ }; name = "checked"; }; - FFF78180a0d07f8a8180a0d0 /* profile */ = { + FFF75b18e6d07fc05b18e6d0 /* 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; @@ -6587,7 +6587,7 @@ }; name = "profile"; }; - FFF7809878007f8a80987800 /* debug */ = { + FFF75c80b8007fc05c80b800 /* 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; @@ -6617,7 +6617,7 @@ }; name = "debug"; }; - FFF780987ef07f8a80987ef0 /* release */ = { + FFF75c80bef07fc05c80bef0 /* 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; @@ -6647,7 +6647,7 @@ }; name = "release"; }; - FFF7809885e07f8a809885e0 /* checked */ = { + FFF75c80c5e07fc05c80c5e0 /* 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; @@ -6677,7 +6677,7 @@ }; name = "checked"; }; - FFF780988cd07f8a80988cd0 /* profile */ = { + FFF75c80ccd07fc05c80ccd0 /* 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; @@ -6707,7 +6707,7 @@ }; name = "profile"; }; - FFF7818332007f8a81833200 /* debug */ = { + FFF75a8402007fc05a840200 /* 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; @@ -6737,7 +6737,7 @@ }; name = "debug"; }; - FFF7818338f07f8a818338f0 /* checked */ = { + FFF75a8408f07fc05a8408f0 /* 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; @@ -6767,7 +6767,7 @@ }; name = "checked"; }; - FFF781833fe07f8a81833fe0 /* profile */ = { + FFF75a840fe07fc05a840fe0 /* 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; @@ -6797,7 +6797,7 @@ }; name = "profile"; }; - FFF7818346d07f8a818346d0 /* release */ = { + FFF75a8416d07fc05a8416d0 /* 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; @@ -6827,7 +6827,7 @@ }; name = "release"; }; - FFF78099a0007f8a8099a000 /* debug */ = { + FFF75c8192007fc05c819200 /* 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; @@ -6857,7 +6857,7 @@ }; name = "debug"; }; - FFF78099a6f07f8a8099a6f0 /* checked */ = { + FFF75c8198f07fc05c8198f0 /* 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; @@ -6887,7 +6887,7 @@ }; name = "checked"; }; - FFF78099ade07f8a8099ade0 /* profile */ = { + FFF75c819fe07fc05c819fe0 /* 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; @@ -6917,7 +6917,7 @@ }; name = "profile"; }; - FFF78099b4d07f8a8099b4d0 /* release */ = { + FFF75c81a6d07fc05c81a6d0 /* 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; @@ -6947,7 +6947,7 @@ }; name = "release"; }; - FFF78201b8007f8a8201b800 /* debug */ = { + FFF75c8238007fc05c823800 /* 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; @@ -6977,7 +6977,7 @@ }; name = "debug"; }; - FFF78201bef07f8a8201bef0 /* checked */ = { + FFF75c823ef07fc05c823ef0 /* 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; @@ -7007,7 +7007,7 @@ }; name = "checked"; }; - FFF78201c5e07f8a8201c5e0 /* profile */ = { + FFF75c8245e07fc05c8245e0 /* 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; @@ -7037,7 +7037,7 @@ }; name = "profile"; }; - FFF78201ccd07f8a8201ccd0 /* release */ = { + FFF75c824cd07fc05c824cd0 /* 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; @@ -7067,7 +7067,7 @@ }; name = "release"; }; - FFF7828296007f8a82829600 /* debug */ = { + FFF75c01bc007fc05c01bc00 /* 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; @@ -7097,7 +7097,7 @@ }; name = "debug"; }; - FFF782829cf07f8a82829cf0 /* checked */ = { + FFF75c01c2f07fc05c01c2f0 /* 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; @@ -7127,7 +7127,7 @@ }; name = "checked"; }; - FFF78282a3e07f8a8282a3e0 /* profile */ = { + FFF75c01c9e07fc05c01c9e0 /* 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; @@ -7157,7 +7157,7 @@ }; name = "profile"; }; - FFF78282aad07f8a8282aad0 /* release */ = { + FFF75c01d0d07fc05c01d0d0 /* 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; @@ -7187,7 +7187,7 @@ }; name = "release"; }; - FFF7828336007f8a82833600 /* debug */ = { + FFF75a8482007fc05a848200 /* 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; @@ -7217,7 +7217,7 @@ }; name = "debug"; }; - FFF782833cf07f8a82833cf0 /* checked */ = { + FFF75a8488f07fc05a8488f0 /* 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; @@ -7247,7 +7247,7 @@ }; name = "checked"; }; - FFF7828343e07f8a828343e0 /* profile */ = { + FFF75a848fe07fc05a848fe0 /* 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; @@ -7277,7 +7277,7 @@ }; name = "profile"; }; - FFF782834ad07f8a82834ad0 /* release */ = { + FFF75a8496d07fc05a8496d0 /* 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; @@ -7307,7 +7307,7 @@ }; name = "release"; }; - FFF7809a14007f8a809a1400 /* debug */ = { + FFF75c82b2007fc05c82b200 /* 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; @@ -7337,7 +7337,7 @@ }; name = "debug"; }; - FFF7809a1af07f8a809a1af0 /* release */ = { + FFF75c82b8f07fc05c82b8f0 /* 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; @@ -7367,7 +7367,7 @@ }; name = "release"; }; - FFF7809a21e07f8a809a21e0 /* checked */ = { + FFF75c82bfe07fc05c82bfe0 /* 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; @@ -7397,7 +7397,7 @@ }; name = "checked"; }; - FFF7809a28d07f8a809a28d0 /* profile */ = { + FFF75c82c6d07fc05c82c6d0 /* 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; @@ -7427,7 +7427,7 @@ }; name = "profile"; }; - FFF782021a007f8a82021a00 /* debug */ = { + FFF75a86d4007fc05a86d400 /* 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; @@ -7457,7 +7457,7 @@ }; name = "debug"; }; - FFF7820220f07f8a820220f0 /* release */ = { + FFF75a86daf07fc05a86daf0 /* 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; @@ -7487,7 +7487,7 @@ }; name = "release"; }; - FFF7820227e07f8a820227e0 /* checked */ = { + FFF75a86e1e07fc05a86e1e0 /* 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; @@ -7517,7 +7517,7 @@ }; name = "checked"; }; - FFF782022ed07f8a82022ed0 /* profile */ = { + FFF75a86e8d07fc05a86e8d0 /* 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; @@ -7547,25 +7547,25 @@ }; name = "profile"; }; - FFF38183ca007f8a8183ca00 /* release */ = { + FFF35c8520007fc05c852000 /* release */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "release"; }; - FFF38183d0f07f8a8183d0f0 /* debug */ = { + FFF35c8526f07fc05c8526f0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "debug"; }; - FFF38183d7e07f8a8183d7e0 /* checked */ = { + FFF35c852de07fc05c852de0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "checked"; }; - FFF38183ded07f8a8183ded0 /* profile */ = { + FFF35c8534d07fc05c8534d0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { }; @@ -7574,34 +7574,34 @@ /* End XCBuildConfiguration section */ /* Begin PBXProject section */ - FFF98047cb207f8a8047cb20 /* Project object */ = { + FFF95a70e2507fc05a70e250 /* Project object */ = { isa = PBXProject; - buildConfigurationList = FFF68047cb207f8a8047cb20 /* Build configuration list for PBXProject PhysX */; + buildConfigurationList = FFF65a70e2507fc05a70e250 /* Build configuration list for PBXProject PhysX */; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 1; - mainGroup = FFFB8047cb887f8a8047cb88 /* PhysX */; + mainGroup = FFFB5a70e2b87fc05a70e2b8 /* PhysX */; targets = ( - FFFA814495b07f8a814495b0, - FFFA8144ebc07f8a8144ebc0, - FFFA814570a07f8a814570a0, - FFFA8146da607f8a8146da60, - FFFA814803907f8a81480390, - FFFA81484a807f8a81484a80, - FFFA8105c6407f8a8105c640, - FFFA810dc3907f8a810dc390, - FFFA810edec07f8a810edec0, - FFFA81169e707f8a81169e70, - FFFA810c34707f8a810c3470, - FFFA81149d807f8a81149d80, - FFFA81432a807f8a81432a80, - FFFA816f83807f8a816f8380, - FFFA8172b0d07f8a8172b0d0, - FFFA811077f07f8a811077f0, - FFFA8145b5107f8a8145b510, + FFFA5d170f707fc05d170f70, + FFFA5d179b107fc05d179b10, + FFFA5d17ae507fc05d17ae50, + FFFA5d18aba07fc05d18aba0, + FFFA5d19d4d07fc05d19d4d0, + FFFA5d1a1bc07fc05d1a1bc0, + FFFA5bfadce07fc05bfadce0, + FFFA5b93e9407fc05b93e940, + FFFA5b91b1007fc05b91b100, + FFFA5bf09c707fc05bf09c70, + FFFA5be3ff207fc05be3ff20, + FFFA5bf207407fc05bf20740, + FFFA5bf4ac107fc05bf4ac10, + FFFA5bc335c07fc05bc335c0, + FFFA5be6a2a07fc05be6a2a0, + FFFA5bf838007fc05bf83800, + FFFA5d16dba07fc05d16dba0, ); }; /* End PBXProject section */ }; - rootObject = FFF98047cb207f8a8047cb20 /* Project object */; + rootObject = FFF95a70e2507fc05a70e250 /* 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 1927d90c..1a81cd1c 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 */ - FFFF2d9ed0607f922d9ed060 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD2dc145807f922dc14580 /* SceneQuery */; }; - FFFF2d9f03907f922d9f0390 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD2dc18c707f922dc18c70 /* SimulationController */; }; - FFFF2c8616387f922c861638 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8616387f922c861638 /* NpActor.cpp */; }; - FFFF2c8616a07f922c8616a0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8616a07f922c8616a0 /* NpAggregate.cpp */; }; - FFFF2c8617087f922c861708 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8617087f922c861708 /* NpArticulation.cpp */; }; - FFFF2c8617707f922c861770 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8617707f922c861770 /* NpArticulationJoint.cpp */; }; - FFFF2c8617d87f922c8617d8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8617d87f922c8617d8 /* NpArticulationLink.cpp */; }; - FFFF2c8618407f922c861840 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8618407f922c861840 /* NpBatchQuery.cpp */; }; - FFFF2c8618a87f922c8618a8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8618a87f922c8618a8 /* NpConstraint.cpp */; }; - FFFF2c8619107f922c861910 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8619107f922c861910 /* NpFactory.cpp */; }; - FFFF2c8619787f922c861978 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8619787f922c861978 /* NpMaterial.cpp */; }; - FFFF2c8619e07f922c8619e0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8619e07f922c8619e0 /* NpMetaData.cpp */; }; - FFFF2c861a487f922c861a48 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c861a487f922c861a48 /* NpPhysics.cpp */; }; - FFFF2c861ab07f922c861ab0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c861ab07f922c861ab0 /* NpPvdSceneQueryCollector.cpp */; }; - FFFF2c861b187f922c861b18 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c861b187f922c861b18 /* NpReadCheck.cpp */; }; - FFFF2c861b807f922c861b80 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c861b807f922c861b80 /* NpRigidDynamic.cpp */; }; - FFFF2c861be87f922c861be8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c861be87f922c861be8 /* NpRigidStatic.cpp */; }; - FFFF2c861c507f922c861c50 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c861c507f922c861c50 /* NpScene.cpp */; }; - FFFF2c861cb87f922c861cb8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c861cb87f922c861cb8 /* NpSceneQueries.cpp */; }; - FFFF2c861d207f922c861d20 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c861d207f922c861d20 /* NpSerializerAdapter.cpp */; }; - FFFF2c861d887f922c861d88 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c861d887f922c861d88 /* NpShape.cpp */; }; - FFFF2c861df07f922c861df0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c861df07f922c861df0 /* NpShapeManager.cpp */; }; - FFFF2c861e587f922c861e58 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c861e587f922c861e58 /* NpSpatialIndex.cpp */; }; - FFFF2c861ec07f922c861ec0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c861ec07f922c861ec0 /* NpVolumeCache.cpp */; }; - FFFF2c861f287f922c861f28 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c861f287f922c861f28 /* NpWriteCheck.cpp */; }; - FFFF2c861f907f922c861f90 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c861f907f922c861f90 /* PvdMetaDataPvdBinding.cpp */; }; - FFFF2c861ff87f922c861ff8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c861ff87f922c861ff8 /* PvdPhysicsClient.cpp */; }; - FFFF2c8622007f922c862200 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8622007f922c862200 /* particles/NpParticleFluid.cpp */; }; - FFFF2c8622687f922c862268 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8622687f922c862268 /* particles/NpParticleSystem.cpp */; }; - FFFF2c862a207f922c862a20 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c862a207f922c862a20 /* buffering/ScbActor.cpp */; }; - FFFF2c862a887f922c862a88 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c862a887f922c862a88 /* buffering/ScbAggregate.cpp */; }; - FFFF2c862af07f922c862af0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c862af07f922c862af0 /* buffering/ScbBase.cpp */; }; - FFFF2c862b587f922c862b58 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c862b587f922c862b58 /* buffering/ScbCloth.cpp */; }; - FFFF2c862bc07f922c862bc0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c862bc07f922c862bc0 /* buffering/ScbMetaData.cpp */; }; - FFFF2c862c287f922c862c28 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c862c287f922c862c28 /* buffering/ScbParticleSystem.cpp */; }; - FFFF2c862c907f922c862c90 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c862c907f922c862c90 /* buffering/ScbScene.cpp */; }; - FFFF2c862cf87f922c862cf8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c862cf87f922c862cf8 /* buffering/ScbScenePvdClient.cpp */; }; - FFFF2c862d607f922c862d60 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c862d607f922c862d60 /* buffering/ScbShape.cpp */; }; - FFFF2c862f007f922c862f00 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c862f007f922c862f00 /* cloth/NpCloth.cpp */; }; - FFFF2c862f687f922c862f68 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c862f687f922c862f68 /* cloth/NpClothFabric.cpp */; }; - FFFF2c862fd07f922c862fd0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c862fd07f922c862fd0 /* cloth/NpClothParticleData.cpp */; }; - FFFF2c8630387f922c863038 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8630387f922c863038 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; - FFFF2c8635a87f922c8635a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD2c8635a87f922c8635a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; - FFFF2c8636107f922c863610 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD2c8636107f922c863610 /* core/src/PxMetaDataObjects.cpp */; }; + FFFF31534ac07fc331534ac0 /* SceneQuery in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD315548707fc331554870 /* SceneQuery */; }; + FFFF31534b207fc331534b20 /* SimulationController in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD31558f607fc331558f60 /* SimulationController */; }; + FFFF32833a387fc332833a38 /* NpActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32833a387fc332833a38 /* NpActor.cpp */; }; + FFFF32833aa07fc332833aa0 /* NpAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32833aa07fc332833aa0 /* NpAggregate.cpp */; }; + FFFF32833b087fc332833b08 /* NpArticulation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32833b087fc332833b08 /* NpArticulation.cpp */; }; + FFFF32833b707fc332833b70 /* NpArticulationJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32833b707fc332833b70 /* NpArticulationJoint.cpp */; }; + FFFF32833bd87fc332833bd8 /* NpArticulationLink.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32833bd87fc332833bd8 /* NpArticulationLink.cpp */; }; + FFFF32833c407fc332833c40 /* NpBatchQuery.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32833c407fc332833c40 /* NpBatchQuery.cpp */; }; + FFFF32833ca87fc332833ca8 /* NpConstraint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32833ca87fc332833ca8 /* NpConstraint.cpp */; }; + FFFF32833d107fc332833d10 /* NpFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32833d107fc332833d10 /* NpFactory.cpp */; }; + FFFF32833d787fc332833d78 /* NpMaterial.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32833d787fc332833d78 /* NpMaterial.cpp */; }; + FFFF32833de07fc332833de0 /* NpMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32833de07fc332833de0 /* NpMetaData.cpp */; }; + FFFF32833e487fc332833e48 /* NpPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32833e487fc332833e48 /* NpPhysics.cpp */; }; + FFFF32833eb07fc332833eb0 /* NpPvdSceneQueryCollector.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32833eb07fc332833eb0 /* NpPvdSceneQueryCollector.cpp */; }; + FFFF32833f187fc332833f18 /* NpReadCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32833f187fc332833f18 /* NpReadCheck.cpp */; }; + FFFF32833f807fc332833f80 /* NpRigidDynamic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32833f807fc332833f80 /* NpRigidDynamic.cpp */; }; + FFFF32833fe87fc332833fe8 /* NpRigidStatic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32833fe87fc332833fe8 /* NpRigidStatic.cpp */; }; + FFFF328340507fc332834050 /* NpScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328340507fc332834050 /* NpScene.cpp */; }; + FFFF328340b87fc3328340b8 /* NpSceneQueries.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328340b87fc3328340b8 /* NpSceneQueries.cpp */; }; + FFFF328341207fc332834120 /* NpSerializerAdapter.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328341207fc332834120 /* NpSerializerAdapter.cpp */; }; + FFFF328341887fc332834188 /* NpShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328341887fc332834188 /* NpShape.cpp */; }; + FFFF328341f07fc3328341f0 /* NpShapeManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328341f07fc3328341f0 /* NpShapeManager.cpp */; }; + FFFF328342587fc332834258 /* NpSpatialIndex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328342587fc332834258 /* NpSpatialIndex.cpp */; }; + FFFF328342c07fc3328342c0 /* NpVolumeCache.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328342c07fc3328342c0 /* NpVolumeCache.cpp */; }; + FFFF328343287fc332834328 /* NpWriteCheck.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328343287fc332834328 /* NpWriteCheck.cpp */; }; + FFFF328343907fc332834390 /* PvdMetaDataPvdBinding.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328343907fc332834390 /* PvdMetaDataPvdBinding.cpp */; }; + FFFF328343f87fc3328343f8 /* PvdPhysicsClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328343f87fc3328343f8 /* PvdPhysicsClient.cpp */; }; + FFFF328346007fc332834600 /* particles/NpParticleFluid.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328346007fc332834600 /* particles/NpParticleFluid.cpp */; }; + FFFF328346687fc332834668 /* particles/NpParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328346687fc332834668 /* particles/NpParticleSystem.cpp */; }; + FFFF32834e207fc332834e20 /* buffering/ScbActor.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32834e207fc332834e20 /* buffering/ScbActor.cpp */; }; + FFFF32834e887fc332834e88 /* buffering/ScbAggregate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32834e887fc332834e88 /* buffering/ScbAggregate.cpp */; }; + FFFF32834ef07fc332834ef0 /* buffering/ScbBase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32834ef07fc332834ef0 /* buffering/ScbBase.cpp */; }; + FFFF32834f587fc332834f58 /* buffering/ScbCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32834f587fc332834f58 /* buffering/ScbCloth.cpp */; }; + FFFF32834fc07fc332834fc0 /* buffering/ScbMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32834fc07fc332834fc0 /* buffering/ScbMetaData.cpp */; }; + FFFF328350287fc332835028 /* buffering/ScbParticleSystem.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328350287fc332835028 /* buffering/ScbParticleSystem.cpp */; }; + FFFF328350907fc332835090 /* buffering/ScbScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328350907fc332835090 /* buffering/ScbScene.cpp */; }; + FFFF328350f87fc3328350f8 /* buffering/ScbScenePvdClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328350f87fc3328350f8 /* buffering/ScbScenePvdClient.cpp */; }; + FFFF328351607fc332835160 /* buffering/ScbShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328351607fc332835160 /* buffering/ScbShape.cpp */; }; + FFFF328353007fc332835300 /* cloth/NpCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328353007fc332835300 /* cloth/NpCloth.cpp */; }; + FFFF328353687fc332835368 /* cloth/NpClothFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328353687fc332835368 /* cloth/NpClothFabric.cpp */; }; + FFFF328353d07fc3328353d0 /* cloth/NpClothParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328353d07fc3328353d0 /* cloth/NpClothParticleData.cpp */; }; + FFFF328354387fc332835438 /* ../../ImmediateMode/src/NpImmediateMode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328354387fc332835438 /* ../../ImmediateMode/src/NpImmediateMode.cpp */; }; + FFFF3282dba87fc33282dba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD3282dba87fc33282dba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */; }; + FFFF3282dc107fc33282dc10 /* core/src/PxMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD3282dc107fc33282dc10 /* core/src/PxMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2d9e31707f922d9e3170 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c8608007f922c860800 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8608687f922c860868 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8608d07f922c8608d0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8609387f922c860938 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8609a07f922c8609a0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c860a087f922c860a08 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c860a707f922c860a70 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c860ad87f922c860ad8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c860b407f922c860b40 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c860ba87f922c860ba8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c860c107f922c860c10 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c860c787f922c860c78 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c860ce07f922c860ce0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c860d487f922c860d48 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c860db07f922c860db0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c860e187f922c860e18 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c860e807f922c860e80 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c860ee87f922c860ee8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c860f507f922c860f50 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c860fb87f922c860fb8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8610207f922c861020 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8610887f922c861088 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8610f07f922c8610f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8611587f922c861158 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8611c07f922c8611c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8612287f922c861228 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8612907f922c861290 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8612f87f922c8612f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8613607f922c861360 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8613c87f922c8613c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8614307f922c861430 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8614987f922c861498 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8615007f922c861500 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8615687f922c861568 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8615d07f922c8615d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8616387f922c861638 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8616a07f922c8616a0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8617087f922c861708 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8617707f922c861770 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8617d87f922c8617d8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8618407f922c861840 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8618a87f922c8618a8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8619107f922c861910 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8619787f922c861978 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8619e07f922c8619e0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c861a487f922c861a48 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c861ab07f922c861ab0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c861b187f922c861b18 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c861b807f922c861b80 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c861be87f922c861be8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c861c507f922c861c50 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c861cb87f922c861cb8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c861d207f922c861d20 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c861d887f922c861d88 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c861df07f922c861df0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c861e587f922c861e58 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c861ec07f922c861ec0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c861f287f922c861f28 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c861f907f922c861f90 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c861ff87f922c861ff8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8620607f922c862060 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8620c87f922c8620c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8621307f922c862130 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8621987f922c862198 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8622007f922c862200 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8622687f922c862268 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8622d07f922c8622d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8623387f922c862338 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8623a07f922c8623a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8624087f922c862408 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8624707f922c862470 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8624d87f922c8624d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8625407f922c862540 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8625a87f922c8625a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8626107f922c862610 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8626787f922c862678 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8626e07f922c8626e0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8627487f922c862748 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8627b07f922c8627b0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8628187f922c862818 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8628807f922c862880 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8628e87f922c8628e8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8629507f922c862950 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8629b87f922c8629b8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c862a207f922c862a20 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c862a887f922c862a88 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c862af07f922c862af0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c862b587f922c862b58 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c862bc07f922c862bc0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c862c287f922c862c28 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c862c907f922c862c90 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c862cf87f922c862cf8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c862d607f922c862d60 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c862dc87f922c862dc8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c862e307f922c862e30 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c862e987f922c862e98 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c862f007f922c862f00 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c862f687f922c862f68 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c862fd07f922c862fd0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8630387f922c863038 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c863e007f922c863e00 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c863e687f922c863e68 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c863ed07f922c863ed0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c863f387f922c863f38 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c863fa07f922c863fa0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8640087f922c864008 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8640707f922c864070 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8640d87f922c8640d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8641407f922c864140 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8641a87f922c8641a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8642107f922c864210 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8642787f922c864278 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8642e07f922c8642e0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8643487f922c864348 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8643b07f922c8643b0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8644187f922c864418 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8644807f922c864480 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8644e87f922c8644e8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8645507f922c864550 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8645b87f922c8645b8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8646207f922c864620 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8646887f922c864688 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8646f07f922c8646f0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8647587f922c864758 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8647c07f922c8647c0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8648287f922c864828 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8648907f922c864890 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8648f87f922c8648f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8649607f922c864960 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8649c87f922c8649c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c864a307f922c864a30 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c864a987f922c864a98 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c864b007f922c864b00 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c864b687f922c864b68 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c864bd07f922c864bd0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c864c387f922c864c38 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c864ca07f922c864ca0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c864d087f922c864d08 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c864d707f922c864d70 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c864dd87f922c864dd8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c864e407f922c864e40 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c864ea87f922c864ea8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c864f107f922c864f10 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c864f787f922c864f78 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c864fe07f922c864fe0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8650487f922c865048 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8650b07f922c8650b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8651187f922c865118 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8651807f922c865180 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8651e87f922c8651e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8652507f922c865250 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8652b87f922c8652b8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8653207f922c865320 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8653887f922c865388 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8632007f922c863200 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8632687f922c863268 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8632d07f922c8632d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8633387f922c863338 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8633a07f922c8633a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8634087f922c863408 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8634707f922c863470 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8634d87f922c8634d8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8635407f922c863540 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8635a87f922c8635a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8636107f922c863610 /* core/src/PxMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3152d5407fc33152d540 /* PhysX */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysX"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD32832c007fc332832c00 /* NpActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.h"; path = "../../PhysX/src/NpActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD32832c687fc332832c68 /* NpActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActorTemplate.h"; path = "../../PhysX/src/NpActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD32832cd07fc332832cd0 /* NpAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.h"; path = "../../PhysX/src/NpAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD32832d387fc332832d38 /* NpArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.h"; path = "../../PhysX/src/NpArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD32832da07fc332832da0 /* NpArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.h"; path = "../../PhysX/src/NpArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD32832e087fc332832e08 /* NpArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.h"; path = "../../PhysX/src/NpArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFD32832e707fc332832e70 /* NpBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.h"; path = "../../PhysX/src/NpBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD32832ed87fc332832ed8 /* NpCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpCast.h"; path = "../../PhysX/src/NpCast.h"; sourceTree = SOURCE_ROOT; }; + FFFD32832f407fc332832f40 /* NpConnector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConnector.h"; path = "../../PhysX/src/NpConnector.h"; sourceTree = SOURCE_ROOT; }; + FFFD32832fa87fc332832fa8 /* NpConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.h"; path = "../../PhysX/src/NpConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD328330107fc332833010 /* NpFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.h"; path = "../../PhysX/src/NpFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD328330787fc332833078 /* NpMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.h"; path = "../../PhysX/src/NpMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFD328330e07fc3328330e0 /* NpMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterialManager.h"; path = "../../PhysX/src/NpMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD328331487fc332833148 /* NpPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.h"; path = "../../PhysX/src/NpPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD328331b07fc3328331b0 /* NpPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysicsInsertionCallback.h"; path = "../../PhysX/src/NpPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD328332187fc332833218 /* NpPtrTableStorageManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPtrTableStorageManager.h"; path = "../../PhysX/src/NpPtrTableStorageManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD328332807fc332833280 /* NpPvdSceneQueryCollector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.h"; path = "../../PhysX/src/NpPvdSceneQueryCollector.h"; sourceTree = SOURCE_ROOT; }; + FFFD328332e87fc3328332e8 /* NpQueryShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpQueryShared.h"; path = "../../PhysX/src/NpQueryShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD328333507fc332833350 /* NpReadCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.h"; path = "../../PhysX/src/NpReadCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFD328333b87fc3328333b8 /* NpRigidActorTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplate.h"; path = "../../PhysX/src/NpRigidActorTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD328334207fc332833420 /* NpRigidActorTemplateInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidActorTemplateInternal.h"; path = "../../PhysX/src/NpRigidActorTemplateInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD328334887fc332833488 /* NpRigidBodyTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidBodyTemplate.h"; path = "../../PhysX/src/NpRigidBodyTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD328334f07fc3328334f0 /* NpRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.h"; path = "../../PhysX/src/NpRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFD328335587fc332833558 /* NpRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.h"; path = "../../PhysX/src/NpRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD328335c07fc3328335c0 /* NpScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.h"; path = "../../PhysX/src/NpScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD328336287fc332833628 /* NpSceneQueries.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.h"; path = "../../PhysX/src/NpSceneQueries.h"; sourceTree = SOURCE_ROOT; }; + FFFD328336907fc332833690 /* NpShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.h"; path = "../../PhysX/src/NpShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD328336f87fc3328336f8 /* NpShapeManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.h"; path = "../../PhysX/src/NpShapeManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD328337607fc332833760 /* NpSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.h"; path = "../../PhysX/src/NpSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD328337c87fc3328337c8 /* NpVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.h"; path = "../../PhysX/src/NpVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD328338307fc332833830 /* NpWriteCheck.h */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.h"; path = "../../PhysX/src/NpWriteCheck.h"; sourceTree = SOURCE_ROOT; }; + FFFD328338987fc332833898 /* PvdMetaDataBindingData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataBindingData.h"; path = "../../PhysX/src/PvdMetaDataBindingData.h"; sourceTree = SOURCE_ROOT; }; + FFFD328339007fc332833900 /* PvdMetaDataPvdBinding.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.h"; path = "../../PhysX/src/PvdMetaDataPvdBinding.h"; sourceTree = SOURCE_ROOT; }; + FFFD328339687fc332833968 /* PvdPhysicsClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.h"; path = "../../PhysX/src/PvdPhysicsClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD328339d07fc3328339d0 /* PvdTypeNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdTypeNames.h"; path = "../../PhysX/src/PvdTypeNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD32833a387fc332833a38 /* NpActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpActor.cpp"; path = "../../PhysX/src/NpActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32833aa07fc332833aa0 /* NpAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpAggregate.cpp"; path = "../../PhysX/src/NpAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32833b087fc332833b08 /* NpArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulation.cpp"; path = "../../PhysX/src/NpArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32833b707fc332833b70 /* NpArticulationJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationJoint.cpp"; path = "../../PhysX/src/NpArticulationJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32833bd87fc332833bd8 /* NpArticulationLink.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpArticulationLink.cpp"; path = "../../PhysX/src/NpArticulationLink.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32833c407fc332833c40 /* NpBatchQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpBatchQuery.cpp"; path = "../../PhysX/src/NpBatchQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32833ca87fc332833ca8 /* NpConstraint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpConstraint.cpp"; path = "../../PhysX/src/NpConstraint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32833d107fc332833d10 /* NpFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpFactory.cpp"; path = "../../PhysX/src/NpFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32833d787fc332833d78 /* NpMaterial.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMaterial.cpp"; path = "../../PhysX/src/NpMaterial.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32833de07fc332833de0 /* NpMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpMetaData.cpp"; path = "../../PhysX/src/NpMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32833e487fc332833e48 /* NpPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPhysics.cpp"; path = "../../PhysX/src/NpPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32833eb07fc332833eb0 /* NpPvdSceneQueryCollector.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpPvdSceneQueryCollector.cpp"; path = "../../PhysX/src/NpPvdSceneQueryCollector.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32833f187fc332833f18 /* NpReadCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpReadCheck.cpp"; path = "../../PhysX/src/NpReadCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32833f807fc332833f80 /* NpRigidDynamic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidDynamic.cpp"; path = "../../PhysX/src/NpRigidDynamic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32833fe87fc332833fe8 /* NpRigidStatic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpRigidStatic.cpp"; path = "../../PhysX/src/NpRigidStatic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328340507fc332834050 /* NpScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpScene.cpp"; path = "../../PhysX/src/NpScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328340b87fc3328340b8 /* NpSceneQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSceneQueries.cpp"; path = "../../PhysX/src/NpSceneQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328341207fc332834120 /* NpSerializerAdapter.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSerializerAdapter.cpp"; path = "../../PhysX/src/NpSerializerAdapter.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328341887fc332834188 /* NpShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShape.cpp"; path = "../../PhysX/src/NpShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328341f07fc3328341f0 /* NpShapeManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpShapeManager.cpp"; path = "../../PhysX/src/NpShapeManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328342587fc332834258 /* NpSpatialIndex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpSpatialIndex.cpp"; path = "../../PhysX/src/NpSpatialIndex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328342c07fc3328342c0 /* NpVolumeCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpVolumeCache.cpp"; path = "../../PhysX/src/NpVolumeCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328343287fc332834328 /* NpWriteCheck.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "NpWriteCheck.cpp"; path = "../../PhysX/src/NpWriteCheck.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328343907fc332834390 /* PvdMetaDataPvdBinding.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdMetaDataPvdBinding.cpp"; path = "../../PhysX/src/PvdMetaDataPvdBinding.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328343f87fc3328343f8 /* PvdPhysicsClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PvdPhysicsClient.cpp"; path = "../../PhysX/src/PvdPhysicsClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328344607fc332834460 /* particles/NpParticleBaseTemplate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleBaseTemplate.h"; path = "../../PhysX/src/particles/NpParticleBaseTemplate.h"; sourceTree = SOURCE_ROOT; }; + FFFD328344c87fc3328344c8 /* particles/NpParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.h"; path = "../../PhysX/src/particles/NpParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFD328345307fc332834530 /* particles/NpParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluidReadData.h"; path = "../../PhysX/src/particles/NpParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD328345987fc332834598 /* particles/NpParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.h"; path = "../../PhysX/src/particles/NpParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD328346007fc332834600 /* particles/NpParticleFluid.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleFluid.cpp"; path = "../../PhysX/src/particles/NpParticleFluid.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328346687fc332834668 /* particles/NpParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/NpParticleSystem.cpp"; path = "../../PhysX/src/particles/NpParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328346d07fc3328346d0 /* buffering/ScbActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.h"; path = "../../PhysX/src/buffering/ScbActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD328347387fc332834738 /* buffering/ScbAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.h"; path = "../../PhysX/src/buffering/ScbAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD328347a07fc3328347a0 /* buffering/ScbArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulation.h"; path = "../../PhysX/src/buffering/ScbArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD328348087fc332834808 /* buffering/ScbArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbArticulationJoint.h"; path = "../../PhysX/src/buffering/ScbArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD328348707fc332834870 /* buffering/ScbBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.h"; path = "../../PhysX/src/buffering/ScbBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD328348d87fc3328348d8 /* buffering/ScbBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBody.h"; path = "../../PhysX/src/buffering/ScbBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD328349407fc332834940 /* buffering/ScbCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.h"; path = "../../PhysX/src/buffering/ScbCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD328349a87fc3328349a8 /* buffering/ScbConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbConstraint.h"; path = "../../PhysX/src/buffering/ScbConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD32834a107fc332834a10 /* buffering/ScbDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbDefs.h"; path = "../../PhysX/src/buffering/ScbDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFD32834a787fc332834a78 /* buffering/ScbNpDeps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbNpDeps.h"; path = "../../PhysX/src/buffering/ScbNpDeps.h"; sourceTree = SOURCE_ROOT; }; + FFFD32834ae07fc332834ae0 /* buffering/ScbParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.h"; path = "../../PhysX/src/buffering/ScbParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD32834b487fc332834b48 /* buffering/ScbRigidObject.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidObject.h"; path = "../../PhysX/src/buffering/ScbRigidObject.h"; sourceTree = SOURCE_ROOT; }; + FFFD32834bb07fc332834bb0 /* buffering/ScbRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbRigidStatic.h"; path = "../../PhysX/src/buffering/ScbRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD32834c187fc332834c18 /* buffering/ScbScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.h"; path = "../../PhysX/src/buffering/ScbScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD32834c807fc332834c80 /* buffering/ScbSceneBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbSceneBuffer.h"; path = "../../PhysX/src/buffering/ScbSceneBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD32834ce87fc332834ce8 /* buffering/ScbScenePvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.h"; path = "../../PhysX/src/buffering/ScbScenePvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD32834d507fc332834d50 /* buffering/ScbShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.h"; path = "../../PhysX/src/buffering/ScbShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD32834db87fc332834db8 /* buffering/ScbType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbType.h"; path = "../../PhysX/src/buffering/ScbType.h"; sourceTree = SOURCE_ROOT; }; + FFFD32834e207fc332834e20 /* buffering/ScbActor.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbActor.cpp"; path = "../../PhysX/src/buffering/ScbActor.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32834e887fc332834e88 /* buffering/ScbAggregate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbAggregate.cpp"; path = "../../PhysX/src/buffering/ScbAggregate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32834ef07fc332834ef0 /* buffering/ScbBase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbBase.cpp"; path = "../../PhysX/src/buffering/ScbBase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32834f587fc332834f58 /* buffering/ScbCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbCloth.cpp"; path = "../../PhysX/src/buffering/ScbCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32834fc07fc332834fc0 /* buffering/ScbMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbMetaData.cpp"; path = "../../PhysX/src/buffering/ScbMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328350287fc332835028 /* buffering/ScbParticleSystem.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbParticleSystem.cpp"; path = "../../PhysX/src/buffering/ScbParticleSystem.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328350907fc332835090 /* buffering/ScbScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScene.cpp"; path = "../../PhysX/src/buffering/ScbScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328350f87fc3328350f8 /* buffering/ScbScenePvdClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbScenePvdClient.cpp"; path = "../../PhysX/src/buffering/ScbScenePvdClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328351607fc332835160 /* buffering/ScbShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "buffering/ScbShape.cpp"; path = "../../PhysX/src/buffering/ScbShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328351c87fc3328351c8 /* cloth/NpCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.h"; path = "../../PhysX/src/cloth/NpCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD328352307fc332835230 /* cloth/NpClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.h"; path = "../../PhysX/src/cloth/NpClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD328352987fc332835298 /* cloth/NpClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.h"; path = "../../PhysX/src/cloth/NpClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD328353007fc332835300 /* cloth/NpCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpCloth.cpp"; path = "../../PhysX/src/cloth/NpCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328353687fc332835368 /* cloth/NpClothFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothFabric.cpp"; path = "../../PhysX/src/cloth/NpClothFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328353d07fc3328353d0 /* cloth/NpClothParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/NpClothParticleData.cpp"; path = "../../PhysX/src/cloth/NpClothParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328354387fc332835438 /* ../../ImmediateMode/src/NpImmediateMode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "../../ImmediateMode/src/NpImmediateMode.cpp"; path = "../../ImmediateMode/src/NpImmediateMode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328356007fc332835600 /* PxActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxActor.h"; path = "../../../Include/PxActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD328356687fc332835668 /* PxAggregate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAggregate.h"; path = "../../../Include/PxAggregate.h"; sourceTree = SOURCE_ROOT; }; + FFFD328356d07fc3328356d0 /* PxArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulation.h"; path = "../../../Include/PxArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD328357387fc332835738 /* PxArticulationJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationJoint.h"; path = "../../../Include/PxArticulationJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD328357a07fc3328357a0 /* PxArticulationLink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxArticulationLink.h"; path = "../../../Include/PxArticulationLink.h"; sourceTree = SOURCE_ROOT; }; + FFFD328358087fc332835808 /* PxBatchQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQuery.h"; path = "../../../Include/PxBatchQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD328358707fc332835870 /* PxBatchQueryDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBatchQueryDesc.h"; path = "../../../Include/PxBatchQueryDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD328358d87fc3328358d8 /* PxBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhase.h"; path = "../../../Include/PxBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFD328359407fc332835940 /* PxClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClient.h"; path = "../../../Include/PxClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD328359a87fc3328359a8 /* PxConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraint.h"; path = "../../../Include/PxConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD32835a107fc332835a10 /* PxConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintDesc.h"; path = "../../../Include/PxConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD32835a787fc332835a78 /* PxContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContact.h"; path = "../../../Include/PxContact.h"; sourceTree = SOURCE_ROOT; }; + FFFD32835ae07fc332835ae0 /* PxContactModifyCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxContactModifyCallback.h"; path = "../../../Include/PxContactModifyCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD32835b487fc332835b48 /* PxDeletionListener.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDeletionListener.h"; path = "../../../Include/PxDeletionListener.h"; sourceTree = SOURCE_ROOT; }; + FFFD32835bb07fc332835bb0 /* PxFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFiltering.h"; path = "../../../Include/PxFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFD32835c187fc332835c18 /* PxForceMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxForceMode.h"; path = "../../../Include/PxForceMode.h"; sourceTree = SOURCE_ROOT; }; + FFFD32835c807fc332835c80 /* PxImmediateMode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxImmediateMode.h"; path = "../../../Include/PxImmediateMode.h"; sourceTree = SOURCE_ROOT; }; + FFFD32835ce87fc332835ce8 /* PxLockedData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxLockedData.h"; path = "../../../Include/PxLockedData.h"; sourceTree = SOURCE_ROOT; }; + FFFD32835d507fc332835d50 /* PxMaterial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMaterial.h"; path = "../../../Include/PxMaterial.h"; sourceTree = SOURCE_ROOT; }; + FFFD32835db87fc332835db8 /* PxPhysXConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysXConfig.h"; path = "../../../Include/PxPhysXConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD32835e207fc332835e20 /* PxPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysics.h"; path = "../../../Include/PxPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD32835e887fc332835e88 /* PxPhysicsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsAPI.h"; path = "../../../Include/PxPhysicsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD32835ef07fc332835ef0 /* PxPhysicsSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsSerialization.h"; path = "../../../Include/PxPhysicsSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD32835f587fc332835f58 /* PxPhysicsVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPhysicsVersion.h"; path = "../../../Include/PxPhysicsVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFD32835fc07fc332835fc0 /* PxPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPruningStructure.h"; path = "../../../Include/PxPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFD328360287fc332836028 /* PxQueryFiltering.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryFiltering.h"; path = "../../../Include/PxQueryFiltering.h"; sourceTree = SOURCE_ROOT; }; + FFFD328360907fc332836090 /* PxQueryReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQueryReport.h"; path = "../../../Include/PxQueryReport.h"; sourceTree = SOURCE_ROOT; }; + FFFD328360f87fc3328360f8 /* PxRigidActor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActor.h"; path = "../../../Include/PxRigidActor.h"; sourceTree = SOURCE_ROOT; }; + FFFD328361607fc332836160 /* PxRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBody.h"; path = "../../../Include/PxRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD328361c87fc3328361c8 /* PxRigidDynamic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidDynamic.h"; path = "../../../Include/PxRigidDynamic.h"; sourceTree = SOURCE_ROOT; }; + FFFD328362307fc332836230 /* PxRigidStatic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidStatic.h"; path = "../../../Include/PxRigidStatic.h"; sourceTree = SOURCE_ROOT; }; + FFFD328362987fc332836298 /* PxScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxScene.h"; path = "../../../Include/PxScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD328363007fc332836300 /* PxSceneDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneDesc.h"; path = "../../../Include/PxSceneDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD328363687fc332836368 /* PxSceneLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneLock.h"; path = "../../../Include/PxSceneLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD328363d07fc3328363d0 /* PxShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShape.h"; path = "../../../Include/PxShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD328364387fc332836438 /* PxSimulationEventCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationEventCallback.h"; path = "../../../Include/PxSimulationEventCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD328364a07fc3328364a0 /* PxSimulationStatistics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimulationStatistics.h"; path = "../../../Include/PxSimulationStatistics.h"; sourceTree = SOURCE_ROOT; }; + FFFD328365087fc332836508 /* PxSpatialIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSpatialIndex.h"; path = "../../../Include/PxSpatialIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD328365707fc332836570 /* PxVisualizationParameter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVisualizationParameter.h"; path = "../../../Include/PxVisualizationParameter.h"; sourceTree = SOURCE_ROOT; }; + FFFD328365d87fc3328365d8 /* PxVolumeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVolumeCache.h"; path = "../../../Include/PxVolumeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD328366407fc332836640 /* particles/PxParticleBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBase.h"; path = "../../../Include/particles/PxParticleBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD328366a87fc3328366a8 /* particles/PxParticleBaseFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleBaseFlag.h"; path = "../../../Include/particles/PxParticleBaseFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD328367107fc332836710 /* particles/PxParticleCreationData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleCreationData.h"; path = "../../../Include/particles/PxParticleCreationData.h"; sourceTree = SOURCE_ROOT; }; + FFFD328367787fc332836778 /* particles/PxParticleFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFlag.h"; path = "../../../Include/particles/PxParticleFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD328367e07fc3328367e0 /* particles/PxParticleFluid.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluid.h"; path = "../../../Include/particles/PxParticleFluid.h"; sourceTree = SOURCE_ROOT; }; + FFFD328368487fc332836848 /* particles/PxParticleFluidReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleFluidReadData.h"; path = "../../../Include/particles/PxParticleFluidReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD328368b07fc3328368b0 /* particles/PxParticleReadData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleReadData.h"; path = "../../../Include/particles/PxParticleReadData.h"; sourceTree = SOURCE_ROOT; }; + FFFD328369187fc332836918 /* particles/PxParticleSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/PxParticleSystem.h"; path = "../../../Include/particles/PxParticleSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD328369807fc332836980 /* pvd/PxPvdSceneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pvd/PxPvdSceneClient.h"; path = "../../../Include/pvd/PxPvdSceneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD328369e87fc3328369e8 /* cloth/PxCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxCloth.h"; path = "../../../Include/cloth/PxCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD32836a507fc332836a50 /* cloth/PxClothCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothCollisionData.h"; path = "../../../Include/cloth/PxClothCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFD32836ab87fc332836ab8 /* cloth/PxClothFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothFabric.h"; path = "../../../Include/cloth/PxClothFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD32836b207fc332836b20 /* cloth/PxClothParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothParticleData.h"; path = "../../../Include/cloth/PxClothParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD32836b887fc332836b88 /* cloth/PxClothTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/PxClothTypes.h"; path = "../../../Include/cloth/PxClothTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3282d8007fc33282d800 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD3282d8687fc33282d868 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD3282d8d07fc33282d8d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD3282d9387fc33282d938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD3282d9a07fc33282d9a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD3282da087fc33282da08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFD3282da707fc33282da70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFD3282dad87fc33282dad8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD3282db407fc33282db40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD3282dba87fc33282dba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "core/src/PxAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/core/src/PxAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3282dc107fc33282dc10 /* 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 */ - FFF22d9e31707f922d9e3170 /* Resources */ = { + FFF23152d5407fc33152d540 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -233,7 +233,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2d9e31707f922d9e3170 /* Frameworks */ = { + FFFC3152d5407fc33152d540 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -243,52 +243,52 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82d9e31707f922d9e3170 /* Sources */ = { + FFF83152d5407fc33152d540 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c8616387f922c861638, - FFFF2c8616a07f922c8616a0, - FFFF2c8617087f922c861708, - FFFF2c8617707f922c861770, - FFFF2c8617d87f922c8617d8, - FFFF2c8618407f922c861840, - FFFF2c8618a87f922c8618a8, - FFFF2c8619107f922c861910, - FFFF2c8619787f922c861978, - FFFF2c8619e07f922c8619e0, - FFFF2c861a487f922c861a48, - FFFF2c861ab07f922c861ab0, - FFFF2c861b187f922c861b18, - FFFF2c861b807f922c861b80, - FFFF2c861be87f922c861be8, - FFFF2c861c507f922c861c50, - FFFF2c861cb87f922c861cb8, - FFFF2c861d207f922c861d20, - FFFF2c861d887f922c861d88, - FFFF2c861df07f922c861df0, - FFFF2c861e587f922c861e58, - FFFF2c861ec07f922c861ec0, - FFFF2c861f287f922c861f28, - FFFF2c861f907f922c861f90, - FFFF2c861ff87f922c861ff8, - FFFF2c8622007f922c862200, - FFFF2c8622687f922c862268, - FFFF2c862a207f922c862a20, - FFFF2c862a887f922c862a88, - FFFF2c862af07f922c862af0, - FFFF2c862b587f922c862b58, - FFFF2c862bc07f922c862bc0, - FFFF2c862c287f922c862c28, - FFFF2c862c907f922c862c90, - FFFF2c862cf87f922c862cf8, - FFFF2c862d607f922c862d60, - FFFF2c862f007f922c862f00, - FFFF2c862f687f922c862f68, - FFFF2c862fd07f922c862fd0, - FFFF2c8630387f922c863038, - FFFF2c8635a87f922c8635a8, - FFFF2c8636107f922c863610, + FFFF32833a387fc332833a38, + FFFF32833aa07fc332833aa0, + FFFF32833b087fc332833b08, + FFFF32833b707fc332833b70, + FFFF32833bd87fc332833bd8, + FFFF32833c407fc332833c40, + FFFF32833ca87fc332833ca8, + FFFF32833d107fc332833d10, + FFFF32833d787fc332833d78, + FFFF32833de07fc332833de0, + FFFF32833e487fc332833e48, + FFFF32833eb07fc332833eb0, + FFFF32833f187fc332833f18, + FFFF32833f807fc332833f80, + FFFF32833fe87fc332833fe8, + FFFF328340507fc332834050, + FFFF328340b87fc3328340b8, + FFFF328341207fc332834120, + FFFF328341887fc332834188, + FFFF328341f07fc3328341f0, + FFFF328342587fc332834258, + FFFF328342c07fc3328342c0, + FFFF328343287fc332834328, + FFFF328343907fc332834390, + FFFF328343f87fc3328343f8, + FFFF328346007fc332834600, + FFFF328346687fc332834668, + FFFF32834e207fc332834e20, + FFFF32834e887fc332834e88, + FFFF32834ef07fc332834ef0, + FFFF32834f587fc332834f58, + FFFF32834fc07fc332834fc0, + FFFF328350287fc332835028, + FFFF328350907fc332835090, + FFFF328350f87fc3328350f8, + FFFF328351607fc332835160, + FFFF328353007fc332835300, + FFFF328353687fc332835368, + FFFF328353d07fc3328353d0, + FFFF328354387fc332835438, + FFFF3282dba87fc33282dba8, + FFFF3282dc107fc33282dc10, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -297,112 +297,112 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF42d9f08f07f922d9f08f0 /* PBXTargetDependency */ = { + FFF431533b507fc331533b50 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2c12cc907f922c12cc90 /* LowLevel */; - targetProxy = FFF52c12cc907f922c12cc90 /* PBXContainerItemProxy */; + target = FFFA3300a7207fc33300a720 /* LowLevel */; + targetProxy = FFF53300a7207fc33300a720 /* PBXContainerItemProxy */; }; - FFF42d9e90a07f922d9e90a0 /* PBXTargetDependency */ = { + FFF431530f907fc331530f90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2c60e6807f922c60e680 /* LowLevelAABB */; - targetProxy = FFF52c60e6807f922c60e680 /* PBXContainerItemProxy */; + target = FFFA317bb4a07fc3317bb4a0 /* LowLevelAABB */; + targetProxy = FFF5317bb4a07fc3317bb4a0 /* PBXContainerItemProxy */; }; - FFF42d9eff807f922d9eff80 /* PBXTargetDependency */ = { + FFF4315314607fc331531460 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2c62b3607f922c62b360 /* LowLevelCloth */; - targetProxy = FFF52c62b3607f922c62b360 /* PBXContainerItemProxy */; + target = FFFA310c7ab07fc3310c7ab0 /* LowLevelCloth */; + targetProxy = FFF5310c7ab07fc3310c7ab0 /* PBXContainerItemProxy */; }; - FFF42d9eff207f922d9eff20 /* PBXTargetDependency */ = { + FFF431530ff07fc331530ff0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2c0b4e307f922c0b4e30 /* LowLevelDynamics */; - targetProxy = FFF52c0b4e307f922c0b4e30 /* PBXContainerItemProxy */; + target = FFFA33032f907fc333032f90 /* LowLevelDynamics */; + targetProxy = FFF533032f907fc333032f90 /* PBXContainerItemProxy */; }; - FFF42d9ed0007f922d9ed000 /* PBXTargetDependency */ = { + FFF4315314c07fc3315314c0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2c07d5207f922c07d520 /* LowLevelParticles */; - targetProxy = FFF52c07d5207f922c07d520 /* PBXContainerItemProxy */; + target = FFFA330590907fc333059090 /* LowLevelParticles */; + targetProxy = FFF5330590907fc333059090 /* PBXContainerItemProxy */; }; - FFF42d9f08907f922d9f0890 /* PBXTargetDependency */ = { + FFF431533af07fc331533af0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2c13c0507f922c13c050 /* PhysXCommon */; - targetProxy = FFF52c13c0507f922c13c050 /* PBXContainerItemProxy */; + target = FFFA315178207fc331517820 /* PhysXCommon */; + targetProxy = FFF5315178207fc331517820 /* PBXContainerItemProxy */; }; - FFF42d9e34607f922d9e3460 /* PBXTargetDependency */ = { + FFF4315229e07fc3315229e0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2c1587607f922c158760 /* PxFoundation */; - targetProxy = FFF52c1587607f922c158760 /* PBXContainerItemProxy */; + target = FFFA315044907fc331504490 /* PxFoundation */; + targetProxy = FFF5315044907fc331504490 /* PBXContainerItemProxy */; }; - FFF42d9e31107f922d9e3110 /* PBXTargetDependency */ = { + FFF4315226c07fc3315226c0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2c0bd6207f922c0bd620 /* PxPvdSDK */; - targetProxy = FFF52c0bd6207f922c0bd620 /* PBXContainerItemProxy */; + target = FFFA31142a807fc331142a80 /* PxPvdSDK */; + targetProxy = FFF531142a807fc331142a80 /* PBXContainerItemProxy */; }; - FFF42d9f03c07f922d9f03c0 /* PBXTargetDependency */ = { + FFF4315310507fc331531050 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2c659bf07f922c659bf0 /* PxTask */; - targetProxy = FFF52c659bf07f922c659bf0 /* PBXContainerItemProxy */; + target = FFFA3308d5d07fc33308d5d0 /* PxTask */; + targetProxy = FFF53308d5d07fc33308d5d0 /* PBXContainerItemProxy */; }; - FFF42d9ed0607f922d9ed060 /* PBXTargetDependency */ = { + FFF431534ac07fc331534ac0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2dc145807f922dc14580 /* SceneQuery */; - targetProxy = FFF52dc145807f922dc14580 /* PBXContainerItemProxy */; + target = FFFA315548707fc331554870 /* SceneQuery */; + targetProxy = FFF5315548707fc331554870 /* PBXContainerItemProxy */; }; - FFF42d9f03907f922d9f0390 /* PBXTargetDependency */ = { + FFF431534b207fc331534b20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2dc18c707f922dc18c70 /* SimulationController */; - targetProxy = FFF52dc18c707f922dc18c70 /* PBXContainerItemProxy */; + target = FFFA31558f607fc331558f60 /* SimulationController */; + targetProxy = FFF531558f607fc331558f60 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCharacterKinematic */ - FFFF2d9edd207f922d9edd20 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD2dc036207f922dc03620 /* PhysXExtensions */; }; - FFFF2c85e8787f922c85e878 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c85e8787f922c85e878 /* CctBoxController.cpp */; }; - FFFF2c85e8e07f922c85e8e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c85e8e07f922c85e8e0 /* CctCapsuleController.cpp */; }; - FFFF2c85e9487f922c85e948 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c85e9487f922c85e948 /* CctCharacterController.cpp */; }; - FFFF2c85e9b07f922c85e9b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c85e9b07f922c85e9b0 /* CctCharacterControllerCallbacks.cpp */; }; - FFFF2c85ea187f922c85ea18 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c85ea187f922c85ea18 /* CctCharacterControllerManager.cpp */; }; - FFFF2c85ea807f922c85ea80 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c85ea807f922c85ea80 /* CctController.cpp */; }; - FFFF2c85eae87f922c85eae8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c85eae87f922c85eae8 /* CctObstacleContext.cpp */; }; - FFFF2c85eb507f922c85eb50 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c85eb507f922c85eb50 /* CctSweptBox.cpp */; }; - FFFF2c85ebb87f922c85ebb8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c85ebb87f922c85ebb8 /* CctSweptCapsule.cpp */; }; - FFFF2c85ec207f922c85ec20 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c85ec207f922c85ec20 /* CctSweptVolume.cpp */; }; + FFFF315322507fc331532250 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD31541f407fc331541f40 /* PhysXExtensions */; }; + FFFF328370787fc332837078 /* CctBoxController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328370787fc332837078 /* CctBoxController.cpp */; }; + FFFF328370e07fc3328370e0 /* CctCapsuleController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328370e07fc3328370e0 /* CctCapsuleController.cpp */; }; + FFFF328371487fc332837148 /* CctCharacterController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328371487fc332837148 /* CctCharacterController.cpp */; }; + FFFF328371b07fc3328371b0 /* CctCharacterControllerCallbacks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328371b07fc3328371b0 /* CctCharacterControllerCallbacks.cpp */; }; + FFFF328372187fc332837218 /* CctCharacterControllerManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328372187fc332837218 /* CctCharacterControllerManager.cpp */; }; + FFFF328372807fc332837280 /* CctController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328372807fc332837280 /* CctController.cpp */; }; + FFFF328372e87fc3328372e8 /* CctObstacleContext.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328372e87fc3328372e8 /* CctObstacleContext.cpp */; }; + FFFF328373507fc332837350 /* CctSweptBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328373507fc332837350 /* CctSweptBox.cpp */; }; + FFFF328373b87fc3328373b8 /* CctSweptCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328373b87fc3328373b8 /* CctSweptCapsule.cpp */; }; + FFFF328374207fc332837420 /* CctSweptVolume.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328374207fc332837420 /* CctSweptVolume.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2d9ecca07f922d9ecca0 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2d9f3ca07f922d9f3ca0 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d9f3d087f922d9f3d08 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d9f3d707f922d9f3d70 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d9f3dd87f922d9f3dd8 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d9f3e407f922d9f3e40 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d9f3ea87f922d9f3ea8 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d9f3f107f922d9f3f10 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d9f3f787f922d9f3f78 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c85e4007f922c85e400 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c85e4687f922c85e468 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c85e4d07f922c85e4d0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c85e5387f922c85e538 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c85e5a07f922c85e5a0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c85e6087f922c85e608 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c85e6707f922c85e670 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c85e6d87f922c85e6d8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c85e7407f922c85e740 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c85e7a87f922c85e7a8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c85e8107f922c85e810 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c85e8787f922c85e878 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c85e8e07f922c85e8e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c85e9487f922c85e948 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c85e9b07f922c85e9b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c85ea187f922c85ea18 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c85ea807f922c85ea80 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c85eae87f922c85eae8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c85eb507f922c85eb50 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c85ebb87f922c85ebb8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c85ec207f922c85ec20 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD315310607fc331531060 /* PhysXCharacterKinematic */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCharacterKinematic"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD31537f307fc331537f30 /* PxBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBoxController.h"; path = "../../../Include/characterkinematic/PxBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD31537f987fc331537f98 /* PxCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCapsuleController.h"; path = "../../../Include/characterkinematic/PxCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFD315380007fc331538000 /* PxCharacter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCharacter.h"; path = "../../../Include/characterkinematic/PxCharacter.h"; sourceTree = SOURCE_ROOT; }; + FFFD315380687fc331538068 /* PxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxController.h"; path = "../../../Include/characterkinematic/PxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD315380d07fc3315380d0 /* PxControllerBehavior.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerBehavior.h"; path = "../../../Include/characterkinematic/PxControllerBehavior.h"; sourceTree = SOURCE_ROOT; }; + FFFD315381387fc331538138 /* PxControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerManager.h"; path = "../../../Include/characterkinematic/PxControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD315381a07fc3315381a0 /* PxControllerObstacles.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxControllerObstacles.h"; path = "../../../Include/characterkinematic/PxControllerObstacles.h"; sourceTree = SOURCE_ROOT; }; + FFFD315382087fc331538208 /* PxExtended.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtended.h"; path = "../../../Include/characterkinematic/PxExtended.h"; sourceTree = SOURCE_ROOT; }; + FFFD32836c007fc332836c00 /* CctBoxController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.h"; path = "../../PhysXCharacterKinematic/src/CctBoxController.h"; sourceTree = SOURCE_ROOT; }; + FFFD32836c687fc332836c68 /* CctCapsuleController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.h"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.h"; sourceTree = SOURCE_ROOT; }; + FFFD32836cd07fc332836cd0 /* CctCharacterController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.h"; sourceTree = SOURCE_ROOT; }; + FFFD32836d387fc332836d38 /* CctCharacterControllerManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.h"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD32836da07fc332836da0 /* CctController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.h"; path = "../../PhysXCharacterKinematic/src/CctController.h"; sourceTree = SOURCE_ROOT; }; + FFFD32836e087fc332836e08 /* CctInternalStructs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctInternalStructs.h"; path = "../../PhysXCharacterKinematic/src/CctInternalStructs.h"; sourceTree = SOURCE_ROOT; }; + FFFD32836e707fc332836e70 /* CctObstacleContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.h"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD32836ed87fc332836ed8 /* CctSweptBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.h"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD32836f407fc332836f40 /* CctSweptCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.h"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD32836fa87fc332836fa8 /* CctSweptVolume.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.h"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.h"; sourceTree = SOURCE_ROOT; }; + FFFD328370107fc332837010 /* CctUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CctUtils.h"; path = "../../PhysXCharacterKinematic/src/CctUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD328370787fc332837078 /* CctBoxController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctBoxController.cpp"; path = "../../PhysXCharacterKinematic/src/CctBoxController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328370e07fc3328370e0 /* CctCapsuleController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCapsuleController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCapsuleController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328371487fc332837148 /* CctCharacterController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterController.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328371b07fc3328371b0 /* CctCharacterControllerCallbacks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerCallbacks.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerCallbacks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328372187fc332837218 /* CctCharacterControllerManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctCharacterControllerManager.cpp"; path = "../../PhysXCharacterKinematic/src/CctCharacterControllerManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328372807fc332837280 /* CctController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctController.cpp"; path = "../../PhysXCharacterKinematic/src/CctController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328372e87fc3328372e8 /* CctObstacleContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctObstacleContext.cpp"; path = "../../PhysXCharacterKinematic/src/CctObstacleContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328373507fc332837350 /* CctSweptBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptBox.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328373b87fc3328373b8 /* CctSweptCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptCapsule.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328374207fc332837420 /* CctSweptVolume.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CctSweptVolume.cpp"; path = "../../PhysXCharacterKinematic/src/CctSweptVolume.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF22d9ecca07f922d9ecca0 /* Resources */ = { + FFF2315310607fc331531060 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -412,7 +412,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2d9ecca07f922d9ecca0 /* Frameworks */ = { + FFFC315310607fc331531060 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -422,20 +422,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82d9ecca07f922d9ecca0 /* Sources */ = { + FFF8315310607fc331531060 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c85e8787f922c85e878, - FFFF2c85e8e07f922c85e8e0, - FFFF2c85e9487f922c85e948, - FFFF2c85e9b07f922c85e9b0, - FFFF2c85ea187f922c85ea18, - FFFF2c85ea807f922c85ea80, - FFFF2c85eae87f922c85eae8, - FFFF2c85eb507f922c85eb50, - FFFF2c85ebb87f922c85ebb8, - FFFF2c85ec207f922c85ec20, + FFFF328370787fc332837078, + FFFF328370e07fc3328370e0, + FFFF328371487fc332837148, + FFFF328371b07fc3328371b0, + FFFF328372187fc332837218, + FFFF328372807fc332837280, + FFFF328372e87fc3328372e8, + FFFF328373507fc332837350, + FFFF328373b87fc3328373b8, + FFFF328374207fc332837420, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -444,91 +444,91 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF42d9f3c407f922d9f3c40 /* PBXTargetDependency */ = { + FFF431537d007fc331537d00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2c13c0507f922c13c050 /* PhysXCommon */; - targetProxy = FFF52c13c0507f922c13c050 /* PBXContainerItemProxy */; + target = FFFA315178207fc331517820 /* PhysXCommon */; + targetProxy = FFF5315178207fc331517820 /* PBXContainerItemProxy */; }; - FFF42d9edd207f922d9edd20 /* PBXTargetDependency */ = { + FFF4315322507fc331532250 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2dc036207f922dc03620 /* PhysXExtensions */; - targetProxy = FFF52dc036207f922dc03620 /* PBXContainerItemProxy */; + target = FFFA31541f407fc331541f40 /* PhysXExtensions */; + targetProxy = FFF531541f407fc331541f40 /* PBXContainerItemProxy */; }; - FFF42d9ee8d07f922d9ee8d0 /* PBXTargetDependency */ = { + FFF431537b307fc331537b30 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2c1587607f922c158760 /* PxFoundation */; - targetProxy = FFF52c1587607f922c158760 /* PBXContainerItemProxy */; + target = FFFA315044907fc331504490 /* PxFoundation */; + targetProxy = FFF5315044907fc331504490 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXVehicle */ - FFFF2c8694087f922c869408 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8694087f922c869408 /* PxVehicleComponents.cpp */; }; - FFFF2c8694707f922c869470 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8694707f922c869470 /* PxVehicleDrive.cpp */; }; - FFFF2c8694d87f922c8694d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8694d87f922c8694d8 /* PxVehicleDrive4W.cpp */; }; - FFFF2c8695407f922c869540 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8695407f922c869540 /* PxVehicleDriveNW.cpp */; }; - FFFF2c8695a87f922c8695a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8695a87f922c8695a8 /* PxVehicleDriveTank.cpp */; }; - FFFF2c8696107f922c869610 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8696107f922c869610 /* PxVehicleMetaData.cpp */; }; - FFFF2c8696787f922c869678 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8696787f922c869678 /* PxVehicleNoDrive.cpp */; }; - FFFF2c8696e07f922c8696e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8696e07f922c8696e0 /* PxVehicleSDK.cpp */; }; - FFFF2c8697487f922c869748 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8697487f922c869748 /* PxVehicleSerialization.cpp */; }; - FFFF2c8697b07f922c8697b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8697b07f922c8697b0 /* PxVehicleSuspWheelTire4.cpp */; }; - FFFF2c8698187f922c869818 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8698187f922c869818 /* PxVehicleTireFriction.cpp */; }; - FFFF2c8698807f922c869880 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8698807f922c869880 /* PxVehicleUpdate.cpp */; }; - FFFF2c8698e87f922c8698e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8698e87f922c8698e8 /* PxVehicleWheels.cpp */; }; - FFFF2c8699507f922c869950 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8699507f922c869950 /* VehicleUtilControl.cpp */; }; - FFFF2c8699b87f922c8699b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8699b87f922c8699b8 /* VehicleUtilSetup.cpp */; }; - FFFF2c869a207f922c869a20 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c869a207f922c869a20 /* VehicleUtilTelemetry.cpp */; }; - FFFF2dc03af87f922dc03af8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD2dc03af87f922dc03af8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; - FFFF2dc03b607f922dc03b60 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD2dc03b607f922dc03b60 /* src/PxVehicleMetaDataObjects.cpp */; }; + FFFF3283b2087fc33283b208 /* PxVehicleComponents.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b2087fc33283b208 /* PxVehicleComponents.cpp */; }; + FFFF3283b2707fc33283b270 /* PxVehicleDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b2707fc33283b270 /* PxVehicleDrive.cpp */; }; + FFFF3283b2d87fc33283b2d8 /* PxVehicleDrive4W.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b2d87fc33283b2d8 /* PxVehicleDrive4W.cpp */; }; + FFFF3283b3407fc33283b340 /* PxVehicleDriveNW.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b3407fc33283b340 /* PxVehicleDriveNW.cpp */; }; + FFFF3283b3a87fc33283b3a8 /* PxVehicleDriveTank.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b3a87fc33283b3a8 /* PxVehicleDriveTank.cpp */; }; + FFFF3283b4107fc33283b410 /* PxVehicleMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b4107fc33283b410 /* PxVehicleMetaData.cpp */; }; + FFFF3283b4787fc33283b478 /* PxVehicleNoDrive.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b4787fc33283b478 /* PxVehicleNoDrive.cpp */; }; + FFFF3283b4e07fc33283b4e0 /* PxVehicleSDK.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b4e07fc33283b4e0 /* PxVehicleSDK.cpp */; }; + FFFF3283b5487fc33283b548 /* PxVehicleSerialization.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b5487fc33283b548 /* PxVehicleSerialization.cpp */; }; + FFFF3283b5b07fc33283b5b0 /* PxVehicleSuspWheelTire4.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b5b07fc33283b5b0 /* PxVehicleSuspWheelTire4.cpp */; }; + FFFF3283b6187fc33283b618 /* PxVehicleTireFriction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b6187fc33283b618 /* PxVehicleTireFriction.cpp */; }; + FFFF3283b6807fc33283b680 /* PxVehicleUpdate.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b6807fc33283b680 /* PxVehicleUpdate.cpp */; }; + FFFF3283b6e87fc33283b6e8 /* PxVehicleWheels.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b6e87fc33283b6e8 /* PxVehicleWheels.cpp */; }; + FFFF3283b7507fc33283b750 /* VehicleUtilControl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b7507fc33283b750 /* VehicleUtilControl.cpp */; }; + FFFF3283b7b87fc33283b7b8 /* VehicleUtilSetup.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b7b87fc33283b7b8 /* VehicleUtilSetup.cpp */; }; + FFFF3283b8207fc33283b820 /* VehicleUtilTelemetry.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283b8207fc33283b820 /* VehicleUtilTelemetry.cpp */; }; + FFFF31543e187fc331543e18 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD31543e187fc331543e18 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */; }; + FFFF31543e807fc331543e80 /* src/PxVehicleMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD31543e807fc331543e80 /* src/PxVehicleMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2d9ee0607f922d9ee060 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c8674007f922c867400 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8674687f922c867468 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8674d07f922c8674d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8675387f922c867538 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8675a07f922c8675a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8676087f922c867608 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8676707f922c867670 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8676d87f922c8676d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8677407f922c867740 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8677a87f922c8677a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8678107f922c867810 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8678787f922c867878 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8678e07f922c8678e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8679487f922c867948 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8679b07f922c8679b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8692007f922c869200 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8692687f922c869268 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8692d07f922c8692d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8693387f922c869338 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8693a07f922c8693a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8694087f922c869408 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8694707f922c869470 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8694d87f922c8694d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8695407f922c869540 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8695a87f922c8695a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8696107f922c869610 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8696787f922c869678 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8696e07f922c8696e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8697487f922c869748 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8697b07f922c8697b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8698187f922c869818 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8698807f922c869880 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8698e87f922c8698e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8699507f922c869950 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8699b87f922c8699b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c869a207f922c869a20 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2dc039c07f922dc039c0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD2dc03a287f922dc03a28 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2dc03a907f922dc03a90 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2dc03af87f922dc03af8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2dc03b607f922dc03b60 /* src/PxVehicleMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD315326507fc331532650 /* PhysXVehicle */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXVehicle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD328392007fc332839200 /* PxVehicleComponents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.h"; path = "../../../Include/vehicle/PxVehicleComponents.h"; sourceTree = SOURCE_ROOT; }; + FFFD328392687fc332839268 /* PxVehicleDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.h"; path = "../../../Include/vehicle/PxVehicleDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFD328392d07fc3328392d0 /* PxVehicleDrive4W.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.h"; path = "../../../Include/vehicle/PxVehicleDrive4W.h"; sourceTree = SOURCE_ROOT; }; + FFFD328393387fc332839338 /* PxVehicleDriveNW.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.h"; path = "../../../Include/vehicle/PxVehicleDriveNW.h"; sourceTree = SOURCE_ROOT; }; + FFFD328393a07fc3328393a0 /* PxVehicleDriveTank.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.h"; path = "../../../Include/vehicle/PxVehicleDriveTank.h"; sourceTree = SOURCE_ROOT; }; + FFFD328394087fc332839408 /* PxVehicleNoDrive.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.h"; path = "../../../Include/vehicle/PxVehicleNoDrive.h"; sourceTree = SOURCE_ROOT; }; + FFFD328394707fc332839470 /* PxVehicleSDK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.h"; path = "../../../Include/vehicle/PxVehicleSDK.h"; sourceTree = SOURCE_ROOT; }; + FFFD328394d87fc3328394d8 /* PxVehicleShaders.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleShaders.h"; path = "../../../Include/vehicle/PxVehicleShaders.h"; sourceTree = SOURCE_ROOT; }; + FFFD328395407fc332839540 /* PxVehicleTireFriction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.h"; path = "../../../Include/vehicle/PxVehicleTireFriction.h"; sourceTree = SOURCE_ROOT; }; + FFFD328395a87fc3328395a8 /* PxVehicleUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.h"; path = "../../../Include/vehicle/PxVehicleUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFD328396107fc332839610 /* PxVehicleUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtil.h"; path = "../../../Include/vehicle/PxVehicleUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD328396787fc332839678 /* PxVehicleUtilControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilControl.h"; path = "../../../Include/vehicle/PxVehicleUtilControl.h"; sourceTree = SOURCE_ROOT; }; + FFFD328396e07fc3328396e0 /* PxVehicleUtilSetup.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilSetup.h"; path = "../../../Include/vehicle/PxVehicleUtilSetup.h"; sourceTree = SOURCE_ROOT; }; + FFFD328397487fc332839748 /* PxVehicleUtilTelemetry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUtilTelemetry.h"; path = "../../../Include/vehicle/PxVehicleUtilTelemetry.h"; sourceTree = SOURCE_ROOT; }; + FFFD328397b07fc3328397b0 /* PxVehicleWheels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.h"; path = "../../../Include/vehicle/PxVehicleWheels.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283b0007fc33283b000 /* PxVehicleDefaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDefaults.h"; path = "../../PhysXVehicle/src/PxVehicleDefaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283b0687fc33283b068 /* PxVehicleLinearMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleLinearMath.h"; path = "../../PhysXVehicle/src/PxVehicleLinearMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283b0d07fc33283b0d0 /* PxVehicleSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.h"; path = "../../PhysXVehicle/src/PxVehicleSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283b1387fc33283b138 /* PxVehicleSuspLimitConstraintShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspLimitConstraintShader.h"; path = "../../PhysXVehicle/src/PxVehicleSuspLimitConstraintShader.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283b1a07fc33283b1a0 /* PxVehicleSuspWheelTire4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.h"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283b2087fc33283b208 /* PxVehicleComponents.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleComponents.cpp"; path = "../../PhysXVehicle/src/PxVehicleComponents.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283b2707fc33283b270 /* PxVehicleDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283b2d87fc33283b2d8 /* PxVehicleDrive4W.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDrive4W.cpp"; path = "../../PhysXVehicle/src/PxVehicleDrive4W.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283b3407fc33283b340 /* PxVehicleDriveNW.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveNW.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveNW.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283b3a87fc33283b3a8 /* PxVehicleDriveTank.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleDriveTank.cpp"; path = "../../PhysXVehicle/src/PxVehicleDriveTank.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283b4107fc33283b410 /* PxVehicleMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleMetaData.cpp"; path = "../../PhysXVehicle/src/PxVehicleMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283b4787fc33283b478 /* PxVehicleNoDrive.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleNoDrive.cpp"; path = "../../PhysXVehicle/src/PxVehicleNoDrive.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283b4e07fc33283b4e0 /* PxVehicleSDK.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSDK.cpp"; path = "../../PhysXVehicle/src/PxVehicleSDK.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283b5487fc33283b548 /* PxVehicleSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSerialization.cpp"; path = "../../PhysXVehicle/src/PxVehicleSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283b5b07fc33283b5b0 /* PxVehicleSuspWheelTire4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleSuspWheelTire4.cpp"; path = "../../PhysXVehicle/src/PxVehicleSuspWheelTire4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283b6187fc33283b618 /* PxVehicleTireFriction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleTireFriction.cpp"; path = "../../PhysXVehicle/src/PxVehicleTireFriction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283b6807fc33283b680 /* PxVehicleUpdate.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleUpdate.cpp"; path = "../../PhysXVehicle/src/PxVehicleUpdate.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283b6e87fc33283b6e8 /* PxVehicleWheels.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVehicleWheels.cpp"; path = "../../PhysXVehicle/src/PxVehicleWheels.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283b7507fc33283b750 /* VehicleUtilControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilControl.cpp"; path = "../../PhysXVehicle/src/VehicleUtilControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283b7b87fc33283b7b8 /* VehicleUtilSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilSetup.cpp"; path = "../../PhysXVehicle/src/VehicleUtilSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283b8207fc33283b820 /* VehicleUtilTelemetry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "VehicleUtilTelemetry.cpp"; path = "../../PhysXVehicle/src/VehicleUtilTelemetry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD31543ce07fc331543ce0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD31543d487fc331543d48 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleAutoGeneratedMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD31543db07fc331543db0 /* include/PxVehicleMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxVehicleMetaDataObjects.h"; path = "../../PhysXVehicle/src/PhysXMetaData/include/PxVehicleMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD31543e187fc331543e18 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXVehicle/src/PhysXMetaData/src/PxVehicleAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD31543e807fc331543e80 /* 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 */ - FFF22d9ee0607f922d9ee060 /* Resources */ = { + FFF2315326507fc331532650 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -538,7 +538,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2d9ee0607f922d9ee060 /* Frameworks */ = { + FFFC315326507fc331532650 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -548,28 +548,28 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82d9ee0607f922d9ee060 /* Sources */ = { + FFF8315326507fc331532650 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c8694087f922c869408, - FFFF2c8694707f922c869470, - FFFF2c8694d87f922c8694d8, - FFFF2c8695407f922c869540, - FFFF2c8695a87f922c8695a8, - FFFF2c8696107f922c869610, - FFFF2c8696787f922c869678, - FFFF2c8696e07f922c8696e0, - FFFF2c8697487f922c869748, - FFFF2c8697b07f922c8697b0, - FFFF2c8698187f922c869818, - FFFF2c8698807f922c869880, - FFFF2c8698e87f922c8698e8, - FFFF2c8699507f922c869950, - FFFF2c8699b87f922c8699b8, - FFFF2c869a207f922c869a20, - FFFF2dc03af87f922dc03af8, - FFFF2dc03b607f922dc03b60, + FFFF3283b2087fc33283b208, + FFFF3283b2707fc33283b270, + FFFF3283b2d87fc33283b2d8, + FFFF3283b3407fc33283b340, + FFFF3283b3a87fc33283b3a8, + FFFF3283b4107fc33283b410, + FFFF3283b4787fc33283b478, + FFFF3283b4e07fc33283b4e0, + FFFF3283b5487fc33283b548, + FFFF3283b5b07fc33283b5b0, + FFFF3283b6187fc33283b618, + FFFF3283b6807fc33283b680, + FFFF3283b6e87fc33283b6e8, + FFFF3283b7507fc33283b750, + FFFF3283b7b87fc33283b7b8, + FFFF3283b8207fc33283b820, + FFFF31543e187fc331543e18, + FFFF31543e807fc331543e80, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -581,220 +581,220 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXExtensions */ - FFFF2c86bae87f922c86bae8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86bae87f922c86bae8 /* ExtBroadPhase.cpp */; }; - FFFF2c86bb507f922c86bb50 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86bb507f922c86bb50 /* ExtClothFabricCooker.cpp */; }; - FFFF2c86bbb87f922c86bbb8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86bbb87f922c86bbb8 /* ExtClothGeodesicTetherCooker.cpp */; }; - FFFF2c86bc207f922c86bc20 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86bc207f922c86bc20 /* ExtClothMeshQuadifier.cpp */; }; - FFFF2c86bc887f922c86bc88 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86bc887f922c86bc88 /* ExtClothSimpleTetherCooker.cpp */; }; - FFFF2c86bcf07f922c86bcf0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86bcf07f922c86bcf0 /* ExtCollection.cpp */; }; - FFFF2c86bd587f922c86bd58 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86bd587f922c86bd58 /* ExtConvexMeshExt.cpp */; }; - FFFF2c86bdc07f922c86bdc0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86bdc07f922c86bdc0 /* ExtCpuWorkerThread.cpp */; }; - FFFF2c86be287f922c86be28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86be287f922c86be28 /* ExtD6Joint.cpp */; }; - FFFF2c86be907f922c86be90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86be907f922c86be90 /* ExtD6JointSolverPrep.cpp */; }; - FFFF2c86bef87f922c86bef8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86bef87f922c86bef8 /* ExtDefaultCpuDispatcher.cpp */; }; - FFFF2c86bf607f922c86bf60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86bf607f922c86bf60 /* ExtDefaultErrorCallback.cpp */; }; - FFFF2c86bfc87f922c86bfc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86bfc87f922c86bfc8 /* ExtDefaultSimulationFilterShader.cpp */; }; - FFFF2c86c0307f922c86c030 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c0307f922c86c030 /* ExtDefaultStreams.cpp */; }; - FFFF2c86c0987f922c86c098 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c0987f922c86c098 /* ExtDistanceJoint.cpp */; }; - FFFF2c86c1007f922c86c100 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c1007f922c86c100 /* ExtDistanceJointSolverPrep.cpp */; }; - FFFF2c86c1687f922c86c168 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c1687f922c86c168 /* ExtExtensions.cpp */; }; - FFFF2c86c1d07f922c86c1d0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c1d07f922c86c1d0 /* ExtFixedJoint.cpp */; }; - FFFF2c86c2387f922c86c238 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c2387f922c86c238 /* ExtFixedJointSolverPrep.cpp */; }; - FFFF2c86c2a07f922c86c2a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c2a07f922c86c2a0 /* ExtJoint.cpp */; }; - FFFF2c86c3087f922c86c308 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c3087f922c86c308 /* ExtMetaData.cpp */; }; - FFFF2c86c3707f922c86c370 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c3707f922c86c370 /* ExtParticleExt.cpp */; }; - FFFF2c86c3d87f922c86c3d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c3d87f922c86c3d8 /* ExtPrismaticJoint.cpp */; }; - FFFF2c86c4407f922c86c440 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c4407f922c86c440 /* ExtPrismaticJointSolverPrep.cpp */; }; - FFFF2c86c4a87f922c86c4a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c4a87f922c86c4a8 /* ExtPvd.cpp */; }; - FFFF2c86c5107f922c86c510 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c5107f922c86c510 /* ExtPxStringTable.cpp */; }; - FFFF2c86c5787f922c86c578 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c5787f922c86c578 /* ExtRaycastCCD.cpp */; }; - FFFF2c86c5e07f922c86c5e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c5e07f922c86c5e0 /* ExtRevoluteJoint.cpp */; }; - FFFF2c86c6487f922c86c648 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c6487f922c86c648 /* ExtRevoluteJointSolverPrep.cpp */; }; - FFFF2c86c6b07f922c86c6b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c6b07f922c86c6b0 /* ExtRigidBodyExt.cpp */; }; - FFFF2c86c7187f922c86c718 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c7187f922c86c718 /* ExtSceneQueryExt.cpp */; }; - FFFF2c86c7807f922c86c780 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c7807f922c86c780 /* ExtSimpleFactory.cpp */; }; - FFFF2c86c7e87f922c86c7e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c7e87f922c86c7e8 /* ExtSmoothNormals.cpp */; }; - FFFF2c86c8507f922c86c850 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c8507f922c86c850 /* ExtSphericalJoint.cpp */; }; - FFFF2c86c8b87f922c86c8b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c8b87f922c86c8b8 /* ExtSphericalJointSolverPrep.cpp */; }; - FFFF2c86c9207f922c86c920 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c86c9207f922c86c920 /* ExtTriangleMeshExt.cpp */; }; - FFFF2c86fed07f922c86fed0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c86fed07f922c86fed0 /* SnSerialUtils.cpp */; }; - FFFF2c86ff387f922c86ff38 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c86ff387f922c86ff38 /* SnSerialization.cpp */; }; - FFFF2c86ffa07f922c86ffa0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c86ffa07f922c86ffa0 /* SnSerializationRegistry.cpp */; }; - FFFF2c8702e07f922c8702e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8702e07f922c8702e0 /* Binary/SnBinaryDeserialization.cpp */; }; - FFFF2c8703487f922c870348 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8703487f922c870348 /* Binary/SnBinarySerialization.cpp */; }; - FFFF2c8703b07f922c8703b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8703b07f922c8703b0 /* Binary/SnConvX.cpp */; }; - FFFF2c8704187f922c870418 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8704187f922c870418 /* Binary/SnConvX_Align.cpp */; }; - FFFF2c8704807f922c870480 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8704807f922c870480 /* Binary/SnConvX_Convert.cpp */; }; - FFFF2c8704e87f922c8704e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8704e87f922c8704e8 /* Binary/SnConvX_Error.cpp */; }; - FFFF2c8705507f922c870550 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8705507f922c870550 /* Binary/SnConvX_MetaData.cpp */; }; - FFFF2c8705b87f922c8705b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8705b87f922c8705b8 /* Binary/SnConvX_Output.cpp */; }; - FFFF2c8706207f922c870620 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8706207f922c870620 /* Binary/SnConvX_Union.cpp */; }; - FFFF2c8706887f922c870688 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8706887f922c870688 /* Binary/SnSerializationContext.cpp */; }; - FFFF2c870fe07f922c870fe0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c870fe07f922c870fe0 /* Xml/SnJointRepXSerializer.cpp */; }; - FFFF2c8710487f922c871048 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8710487f922c871048 /* Xml/SnRepXCoreSerializer.cpp */; }; - FFFF2c8710b07f922c8710b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8710b07f922c8710b0 /* Xml/SnRepXUpgrader.cpp */; }; - FFFF2c8711187f922c871118 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD2c8711187f922c871118 /* Xml/SnXmlSerialization.cpp */; }; - FFFF2c86dee07f922c86dee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD2c86dee07f922c86dee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; + FFFF3283d8e87fc33283d8e8 /* ExtBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283d8e87fc33283d8e8 /* ExtBroadPhase.cpp */; }; + FFFF3283d9507fc33283d950 /* ExtClothFabricCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283d9507fc33283d950 /* ExtClothFabricCooker.cpp */; }; + FFFF3283d9b87fc33283d9b8 /* ExtClothGeodesicTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283d9b87fc33283d9b8 /* ExtClothGeodesicTetherCooker.cpp */; }; + FFFF3283da207fc33283da20 /* ExtClothMeshQuadifier.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283da207fc33283da20 /* ExtClothMeshQuadifier.cpp */; }; + FFFF3283da887fc33283da88 /* ExtClothSimpleTetherCooker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283da887fc33283da88 /* ExtClothSimpleTetherCooker.cpp */; }; + FFFF3283daf07fc33283daf0 /* ExtCollection.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283daf07fc33283daf0 /* ExtCollection.cpp */; }; + FFFF3283db587fc33283db58 /* ExtConvexMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283db587fc33283db58 /* ExtConvexMeshExt.cpp */; }; + FFFF3283dbc07fc33283dbc0 /* ExtCpuWorkerThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283dbc07fc33283dbc0 /* ExtCpuWorkerThread.cpp */; }; + FFFF3283dc287fc33283dc28 /* ExtD6Joint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283dc287fc33283dc28 /* ExtD6Joint.cpp */; }; + FFFF3283dc907fc33283dc90 /* ExtD6JointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283dc907fc33283dc90 /* ExtD6JointSolverPrep.cpp */; }; + FFFF3283dcf87fc33283dcf8 /* ExtDefaultCpuDispatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283dcf87fc33283dcf8 /* ExtDefaultCpuDispatcher.cpp */; }; + FFFF3283dd607fc33283dd60 /* ExtDefaultErrorCallback.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283dd607fc33283dd60 /* ExtDefaultErrorCallback.cpp */; }; + FFFF3283ddc87fc33283ddc8 /* ExtDefaultSimulationFilterShader.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283ddc87fc33283ddc8 /* ExtDefaultSimulationFilterShader.cpp */; }; + FFFF3283de307fc33283de30 /* ExtDefaultStreams.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283de307fc33283de30 /* ExtDefaultStreams.cpp */; }; + FFFF3283de987fc33283de98 /* ExtDistanceJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283de987fc33283de98 /* ExtDistanceJoint.cpp */; }; + FFFF3283df007fc33283df00 /* ExtDistanceJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283df007fc33283df00 /* ExtDistanceJointSolverPrep.cpp */; }; + FFFF3283df687fc33283df68 /* ExtExtensions.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283df687fc33283df68 /* ExtExtensions.cpp */; }; + FFFF3283dfd07fc33283dfd0 /* ExtFixedJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283dfd07fc33283dfd0 /* ExtFixedJoint.cpp */; }; + FFFF3283e0387fc33283e038 /* ExtFixedJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e0387fc33283e038 /* ExtFixedJointSolverPrep.cpp */; }; + FFFF3283e0a07fc33283e0a0 /* ExtJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e0a07fc33283e0a0 /* ExtJoint.cpp */; }; + FFFF3283e1087fc33283e108 /* ExtMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e1087fc33283e108 /* ExtMetaData.cpp */; }; + FFFF3283e1707fc33283e170 /* ExtParticleExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e1707fc33283e170 /* ExtParticleExt.cpp */; }; + FFFF3283e1d87fc33283e1d8 /* ExtPrismaticJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e1d87fc33283e1d8 /* ExtPrismaticJoint.cpp */; }; + FFFF3283e2407fc33283e240 /* ExtPrismaticJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e2407fc33283e240 /* ExtPrismaticJointSolverPrep.cpp */; }; + FFFF3283e2a87fc33283e2a8 /* ExtPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e2a87fc33283e2a8 /* ExtPvd.cpp */; }; + FFFF3283e3107fc33283e310 /* ExtPxStringTable.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e3107fc33283e310 /* ExtPxStringTable.cpp */; }; + FFFF3283e3787fc33283e378 /* ExtRaycastCCD.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e3787fc33283e378 /* ExtRaycastCCD.cpp */; }; + FFFF3283e3e07fc33283e3e0 /* ExtRevoluteJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e3e07fc33283e3e0 /* ExtRevoluteJoint.cpp */; }; + FFFF3283e4487fc33283e448 /* ExtRevoluteJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e4487fc33283e448 /* ExtRevoluteJointSolverPrep.cpp */; }; + FFFF3283e4b07fc33283e4b0 /* ExtRigidBodyExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e4b07fc33283e4b0 /* ExtRigidBodyExt.cpp */; }; + FFFF3283e5187fc33283e518 /* ExtSceneQueryExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e5187fc33283e518 /* ExtSceneQueryExt.cpp */; }; + FFFF3283e5807fc33283e580 /* ExtSimpleFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e5807fc33283e580 /* ExtSimpleFactory.cpp */; }; + FFFF3283e5e87fc33283e5e8 /* ExtSmoothNormals.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e5e87fc33283e5e8 /* ExtSmoothNormals.cpp */; }; + FFFF3283e6507fc33283e650 /* ExtSphericalJoint.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e6507fc33283e650 /* ExtSphericalJoint.cpp */; }; + FFFF3283e6b87fc33283e6b8 /* ExtSphericalJointSolverPrep.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e6b87fc33283e6b8 /* ExtSphericalJointSolverPrep.cpp */; }; + FFFF3283e7207fc33283e720 /* ExtTriangleMeshExt.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3283e7207fc33283e720 /* ExtTriangleMeshExt.cpp */; }; + FFFF32840ed07fc332840ed0 /* SnSerialUtils.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD32840ed07fc332840ed0 /* SnSerialUtils.cpp */; }; + FFFF32840f387fc332840f38 /* SnSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD32840f387fc332840f38 /* SnSerialization.cpp */; }; + FFFF32840fa07fc332840fa0 /* SnSerializationRegistry.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD32840fa07fc332840fa0 /* SnSerializationRegistry.cpp */; }; + FFFF328412e07fc3328412e0 /* Binary/SnBinaryDeserialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD328412e07fc3328412e0 /* Binary/SnBinaryDeserialization.cpp */; }; + FFFF328413487fc332841348 /* Binary/SnBinarySerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD328413487fc332841348 /* Binary/SnBinarySerialization.cpp */; }; + FFFF328413b07fc3328413b0 /* Binary/SnConvX.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD328413b07fc3328413b0 /* Binary/SnConvX.cpp */; }; + FFFF328414187fc332841418 /* Binary/SnConvX_Align.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD328414187fc332841418 /* Binary/SnConvX_Align.cpp */; }; + FFFF328414807fc332841480 /* Binary/SnConvX_Convert.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD328414807fc332841480 /* Binary/SnConvX_Convert.cpp */; }; + FFFF328414e87fc3328414e8 /* Binary/SnConvX_Error.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD328414e87fc3328414e8 /* Binary/SnConvX_Error.cpp */; }; + FFFF328415507fc332841550 /* Binary/SnConvX_MetaData.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD328415507fc332841550 /* Binary/SnConvX_MetaData.cpp */; }; + FFFF328415b87fc3328415b8 /* Binary/SnConvX_Output.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD328415b87fc3328415b8 /* Binary/SnConvX_Output.cpp */; }; + FFFF328416207fc332841620 /* Binary/SnConvX_Union.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD328416207fc332841620 /* Binary/SnConvX_Union.cpp */; }; + FFFF328416887fc332841688 /* Binary/SnSerializationContext.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD328416887fc332841688 /* Binary/SnSerializationContext.cpp */; }; + FFFF32841fe07fc332841fe0 /* Xml/SnJointRepXSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD32841fe07fc332841fe0 /* Xml/SnJointRepXSerializer.cpp */; }; + FFFF328420487fc332842048 /* Xml/SnRepXCoreSerializer.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD328420487fc332842048 /* Xml/SnRepXCoreSerializer.cpp */; }; + FFFF328420b07fc3328420b0 /* Xml/SnRepXUpgrader.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD328420b07fc3328420b0 /* Xml/SnRepXUpgrader.cpp */; }; + FFFF328421187fc332842118 /* Xml/SnXmlSerialization.cpp in serialization */= { isa = PBXBuildFile; fileRef = FFFD328421187fc332842118 /* Xml/SnXmlSerialization.cpp */; }; + FFFF3283fce07fc33283fce0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp in metadata */= { isa = PBXBuildFile; fileRef = FFFD3283fce07fc33283fce0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2dc036207f922dc03620 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c86ca007f922c86ca00 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86ca687f922c86ca68 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86cad07f922c86cad0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86cb387f922c86cb38 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86cba07f922c86cba0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86cc087f922c86cc08 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86cc707f922c86cc70 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86ccd87f922c86ccd8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86cd407f922c86cd40 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86cda87f922c86cda8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86ce107f922c86ce10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86ce787f922c86ce78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86cee07f922c86cee0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86cf487f922c86cf48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86cfb07f922c86cfb0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d0187f922c86d018 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d0807f922c86d080 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d0e87f922c86d0e8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d1507f922c86d150 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d1b87f922c86d1b8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d2207f922c86d220 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d2887f922c86d288 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d2f07f922c86d2f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d3587f922c86d358 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d3c07f922c86d3c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d4287f922c86d428 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d4907f922c86d490 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d4f87f922c86d4f8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d5607f922c86d560 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d5c87f922c86d5c8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d6307f922c86d630 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d6987f922c86d698 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d7007f922c86d700 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d7687f922c86d768 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d7d07f922c86d7d0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d8387f922c86d838 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86d8a07f922c86d8a0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86b4007f922c86b400 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86b4687f922c86b468 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86b4d07f922c86b4d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86b5387f922c86b538 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86b5a07f922c86b5a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86b6087f922c86b608 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86b6707f922c86b670 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86b6d87f922c86b6d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86b7407f922c86b740 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86b7a87f922c86b7a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86b8107f922c86b810 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86b8787f922c86b878 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86b8e07f922c86b8e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86b9487f922c86b948 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86b9b07f922c86b9b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86ba187f922c86ba18 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86ba807f922c86ba80 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86bae87f922c86bae8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86bb507f922c86bb50 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86bbb87f922c86bbb8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86bc207f922c86bc20 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86bc887f922c86bc88 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86bcf07f922c86bcf0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86bd587f922c86bd58 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86bdc07f922c86bdc0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86be287f922c86be28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86be907f922c86be90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86bef87f922c86bef8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86bf607f922c86bf60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86bfc87f922c86bfc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c0307f922c86c030 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c0987f922c86c098 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c1007f922c86c100 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c1687f922c86c168 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c1d07f922c86c1d0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c2387f922c86c238 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c2a07f922c86c2a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c3087f922c86c308 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c3707f922c86c370 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c3d87f922c86c3d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c4407f922c86c440 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c4a87f922c86c4a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c5107f922c86c510 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c5787f922c86c578 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c5e07f922c86c5e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c6487f922c86c648 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c6b07f922c86c6b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c7187f922c86c718 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c7807f922c86c780 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c7e87f922c86c7e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c8507f922c86c850 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c8b87f922c86c8b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86c9207f922c86c920 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86fe007f922c86fe00 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86fe687f922c86fe68 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86fed07f922c86fed0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86ff387f922c86ff38 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c86ffa07f922c86ffa0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8700087f922c870008 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8700707f922c870070 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8700d87f922c8700d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8701407f922c870140 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8701a87f922c8701a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8702107f922c870210 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8702787f922c870278 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8702e07f922c8702e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8703487f922c870348 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8703b07f922c8703b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8704187f922c870418 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8704807f922c870480 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8704e87f922c8704e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8705507f922c870550 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8705b87f922c8705b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8706207f922c870620 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8706887f922c870688 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8706f07f922c8706f0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8707587f922c870758 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8707c07f922c8707c0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8708287f922c870828 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8708907f922c870890 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8708f87f922c8708f8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8709607f922c870960 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8709c87f922c8709c8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c870a307f922c870a30 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c870a987f922c870a98 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c870b007f922c870b00 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c870b687f922c870b68 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c870bd07f922c870bd0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c870c387f922c870c38 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c870ca07f922c870ca0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c870d087f922c870d08 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c870d707f922c870d70 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c870dd87f922c870dd8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c870e407f922c870e40 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c870ea87f922c870ea8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c870f107f922c870f10 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c870f787f922c870f78 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c870fe07f922c870fe0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8710487f922c871048 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8710b07f922c8710b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8711187f922c871118 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8711807f922c871180 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86da007f922c86da00 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86da687f922c86da68 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86dad07f922c86dad0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86db387f922c86db38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86dba07f922c86dba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86dc087f922c86dc08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86dc707f922c86dc70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86dcd87f922c86dcd8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86dd407f922c86dd40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86dda87f922c86dda8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86de107f922c86de10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86de787f922c86de78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c86dee07f922c86dee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; path = "../../PhysXMetaData/extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD31541f407fc331541f40 /* PhysXExtensions */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXExtensions"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3283e8007fc33283e800 /* PxBinaryConverter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBinaryConverter.h"; path = "../../../Include/extensions/PxBinaryConverter.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283e8687fc33283e868 /* PxBroadPhaseExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBroadPhaseExt.h"; path = "../../../Include/extensions/PxBroadPhaseExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283e8d07fc33283e8d0 /* PxClothFabricCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothFabricCooker.h"; path = "../../../Include/extensions/PxClothFabricCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283e9387fc33283e938 /* PxClothMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshDesc.h"; path = "../../../Include/extensions/PxClothMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283e9a07fc33283e9a0 /* PxClothMeshQuadifier.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothMeshQuadifier.h"; path = "../../../Include/extensions/PxClothMeshQuadifier.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283ea087fc33283ea08 /* PxClothTetherCooker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxClothTetherCooker.h"; path = "../../../Include/extensions/PxClothTetherCooker.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283ea707fc33283ea70 /* PxCollectionExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCollectionExt.h"; path = "../../../Include/extensions/PxCollectionExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283ead87fc33283ead8 /* PxConstraintExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConstraintExt.h"; path = "../../../Include/extensions/PxConstraintExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283eb407fc33283eb40 /* PxConvexMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshExt.h"; path = "../../../Include/extensions/PxConvexMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283eba87fc33283eba8 /* PxD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxD6Joint.h"; path = "../../../Include/extensions/PxD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283ec107fc33283ec10 /* PxDefaultAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultAllocator.h"; path = "../../../Include/extensions/PxDefaultAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283ec787fc33283ec78 /* PxDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultCpuDispatcher.h"; path = "../../../Include/extensions/PxDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283ece07fc33283ece0 /* PxDefaultErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultErrorCallback.h"; path = "../../../Include/extensions/PxDefaultErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283ed487fc33283ed48 /* PxDefaultSimulationFilterShader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultSimulationFilterShader.h"; path = "../../../Include/extensions/PxDefaultSimulationFilterShader.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283edb07fc33283edb0 /* PxDefaultStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDefaultStreams.h"; path = "../../../Include/extensions/PxDefaultStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283ee187fc33283ee18 /* PxDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxDistanceJoint.h"; path = "../../../Include/extensions/PxDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283ee807fc33283ee80 /* PxExtensionsAPI.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxExtensionsAPI.h"; path = "../../../Include/extensions/PxExtensionsAPI.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283eee87fc33283eee8 /* PxFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFixedJoint.h"; path = "../../../Include/extensions/PxFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283ef507fc33283ef50 /* PxJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJoint.h"; path = "../../../Include/extensions/PxJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283efb87fc33283efb8 /* PxJointLimit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxJointLimit.h"; path = "../../../Include/extensions/PxJointLimit.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f0207fc33283f020 /* PxMassProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMassProperties.h"; path = "../../../Include/extensions/PxMassProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f0887fc33283f088 /* PxParticleExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxParticleExt.h"; path = "../../../Include/extensions/PxParticleExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f0f07fc33283f0f0 /* PxPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPrismaticJoint.h"; path = "../../../Include/extensions/PxPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f1587fc33283f158 /* PxRaycastCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRaycastCCD.h"; path = "../../../Include/extensions/PxRaycastCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f1c07fc33283f1c0 /* PxRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSerializer.h"; path = "../../../Include/extensions/PxRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f2287fc33283f228 /* PxRepXSimpleType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRepXSimpleType.h"; path = "../../../Include/extensions/PxRepXSimpleType.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f2907fc33283f290 /* PxRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRevoluteJoint.h"; path = "../../../Include/extensions/PxRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f2f87fc33283f2f8 /* PxRigidActorExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidActorExt.h"; path = "../../../Include/extensions/PxRigidActorExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f3607fc33283f360 /* PxRigidBodyExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxRigidBodyExt.h"; path = "../../../Include/extensions/PxRigidBodyExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f3c87fc33283f3c8 /* PxSceneQueryExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSceneQueryExt.h"; path = "../../../Include/extensions/PxSceneQueryExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f4307fc33283f430 /* PxSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSerialization.h"; path = "../../../Include/extensions/PxSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f4987fc33283f498 /* PxShapeExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxShapeExt.h"; path = "../../../Include/extensions/PxShapeExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f5007fc33283f500 /* PxSimpleFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleFactory.h"; path = "../../../Include/extensions/PxSimpleFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f5687fc33283f568 /* PxSmoothNormals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSmoothNormals.h"; path = "../../../Include/extensions/PxSmoothNormals.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f5d07fc33283f5d0 /* PxSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSphericalJoint.h"; path = "../../../Include/extensions/PxSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f6387fc33283f638 /* PxStringTableExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStringTableExt.h"; path = "../../../Include/extensions/PxStringTableExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f6a07fc33283f6a0 /* PxTriangleMeshExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshExt.h"; path = "../../../Include/extensions/PxTriangleMeshExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d2007fc33283d200 /* ExtConstraintHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConstraintHelper.h"; path = "../../PhysXExtensions/src/ExtConstraintHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d2687fc33283d268 /* ExtCpuWorkerThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.h"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d2d07fc33283d2d0 /* ExtD6Joint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.h"; path = "../../PhysXExtensions/src/ExtD6Joint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d3387fc33283d338 /* ExtDefaultCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.h"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d3a07fc33283d3a0 /* ExtDistanceJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.h"; path = "../../PhysXExtensions/src/ExtDistanceJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d4087fc33283d408 /* ExtFixedJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.h"; path = "../../PhysXExtensions/src/ExtFixedJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d4707fc33283d470 /* ExtInertiaTensor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtInertiaTensor.h"; path = "../../PhysXExtensions/src/ExtInertiaTensor.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d4d87fc33283d4d8 /* ExtJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.h"; path = "../../PhysXExtensions/src/ExtJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d5407fc33283d540 /* ExtJointMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJointMetaDataExtensions.h"; path = "../../PhysXExtensions/src/ExtJointMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d5a87fc33283d5a8 /* ExtPlatform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPlatform.h"; path = "../../PhysXExtensions/src/ExtPlatform.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d6107fc33283d610 /* ExtPrismaticJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.h"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d6787fc33283d678 /* ExtPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.h"; path = "../../PhysXExtensions/src/ExtPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d6e07fc33283d6e0 /* ExtRevoluteJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.h"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d7487fc33283d748 /* ExtSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSerialization.h"; path = "../../PhysXExtensions/src/ExtSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d7b07fc33283d7b0 /* ExtSharedQueueEntryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSharedQueueEntryPool.h"; path = "../../PhysXExtensions/src/ExtSharedQueueEntryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d8187fc33283d818 /* ExtSphericalJoint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.h"; path = "../../PhysXExtensions/src/ExtSphericalJoint.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d8807fc33283d880 /* ExtTaskQueueHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTaskQueueHelper.h"; path = "../../PhysXExtensions/src/ExtTaskQueueHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283d8e87fc33283d8e8 /* ExtBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtBroadPhase.cpp"; path = "../../PhysXExtensions/src/ExtBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283d9507fc33283d950 /* ExtClothFabricCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothFabricCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothFabricCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283d9b87fc33283d9b8 /* ExtClothGeodesicTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothGeodesicTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothGeodesicTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283da207fc33283da20 /* ExtClothMeshQuadifier.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothMeshQuadifier.cpp"; path = "../../PhysXExtensions/src/ExtClothMeshQuadifier.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283da887fc33283da88 /* ExtClothSimpleTetherCooker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtClothSimpleTetherCooker.cpp"; path = "../../PhysXExtensions/src/ExtClothSimpleTetherCooker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283daf07fc33283daf0 /* ExtCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCollection.cpp"; path = "../../PhysXExtensions/src/ExtCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283db587fc33283db58 /* ExtConvexMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtConvexMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtConvexMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283dbc07fc33283dbc0 /* ExtCpuWorkerThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtCpuWorkerThread.cpp"; path = "../../PhysXExtensions/src/ExtCpuWorkerThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283dc287fc33283dc28 /* ExtD6Joint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6Joint.cpp"; path = "../../PhysXExtensions/src/ExtD6Joint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283dc907fc33283dc90 /* ExtD6JointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtD6JointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtD6JointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283dcf87fc33283dcf8 /* ExtDefaultCpuDispatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultCpuDispatcher.cpp"; path = "../../PhysXExtensions/src/ExtDefaultCpuDispatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283dd607fc33283dd60 /* ExtDefaultErrorCallback.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultErrorCallback.cpp"; path = "../../PhysXExtensions/src/ExtDefaultErrorCallback.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283ddc87fc33283ddc8 /* ExtDefaultSimulationFilterShader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultSimulationFilterShader.cpp"; path = "../../PhysXExtensions/src/ExtDefaultSimulationFilterShader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283de307fc33283de30 /* ExtDefaultStreams.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDefaultStreams.cpp"; path = "../../PhysXExtensions/src/ExtDefaultStreams.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283de987fc33283de98 /* ExtDistanceJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJoint.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283df007fc33283df00 /* ExtDistanceJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtDistanceJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtDistanceJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283df687fc33283df68 /* ExtExtensions.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtExtensions.cpp"; path = "../../PhysXExtensions/src/ExtExtensions.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283dfd07fc33283dfd0 /* ExtFixedJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJoint.cpp"; path = "../../PhysXExtensions/src/ExtFixedJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e0387fc33283e038 /* ExtFixedJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtFixedJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtFixedJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e0a07fc33283e0a0 /* ExtJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtJoint.cpp"; path = "../../PhysXExtensions/src/ExtJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e1087fc33283e108 /* ExtMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtMetaData.cpp"; path = "../../PhysXExtensions/src/ExtMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e1707fc33283e170 /* ExtParticleExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtParticleExt.cpp"; path = "../../PhysXExtensions/src/ExtParticleExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e1d87fc33283e1d8 /* ExtPrismaticJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJoint.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e2407fc33283e240 /* ExtPrismaticJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPrismaticJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtPrismaticJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e2a87fc33283e2a8 /* ExtPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPvd.cpp"; path = "../../PhysXExtensions/src/ExtPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e3107fc33283e310 /* ExtPxStringTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtPxStringTable.cpp"; path = "../../PhysXExtensions/src/ExtPxStringTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e3787fc33283e378 /* ExtRaycastCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRaycastCCD.cpp"; path = "../../PhysXExtensions/src/ExtRaycastCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e3e07fc33283e3e0 /* ExtRevoluteJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJoint.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e4487fc33283e448 /* ExtRevoluteJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRevoluteJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtRevoluteJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e4b07fc33283e4b0 /* ExtRigidBodyExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtRigidBodyExt.cpp"; path = "../../PhysXExtensions/src/ExtRigidBodyExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e5187fc33283e518 /* ExtSceneQueryExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSceneQueryExt.cpp"; path = "../../PhysXExtensions/src/ExtSceneQueryExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e5807fc33283e580 /* ExtSimpleFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSimpleFactory.cpp"; path = "../../PhysXExtensions/src/ExtSimpleFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e5e87fc33283e5e8 /* ExtSmoothNormals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSmoothNormals.cpp"; path = "../../PhysXExtensions/src/ExtSmoothNormals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e6507fc33283e650 /* ExtSphericalJoint.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJoint.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJoint.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e6b87fc33283e6b8 /* ExtSphericalJointSolverPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtSphericalJointSolverPrep.cpp"; path = "../../PhysXExtensions/src/ExtSphericalJointSolverPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3283e7207fc33283e720 /* ExtTriangleMeshExt.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ExtTriangleMeshExt.cpp"; path = "../../PhysXExtensions/src/ExtTriangleMeshExt.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32840e007fc332840e00 /* SnSerialUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.h"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD32840e687fc332840e68 /* SnSerializationRegistry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.h"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.h"; sourceTree = SOURCE_ROOT; }; + FFFD32840ed07fc332840ed0 /* SnSerialUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialUtils.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32840f387fc332840f38 /* SnSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32840fa07fc332840fa0 /* SnSerializationRegistry.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SnSerializationRegistry.cpp"; path = "../../PhysXExtensions/src/serialization/SnSerializationRegistry.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328410087fc332841008 /* Binary/SnConvX.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.h"; sourceTree = SOURCE_ROOT; }; + FFFD328410707fc332841070 /* Binary/SnConvX_Align.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.h"; sourceTree = SOURCE_ROOT; }; + FFFD328410d87fc3328410d8 /* Binary/SnConvX_Common.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Common.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Common.h"; sourceTree = SOURCE_ROOT; }; + FFFD328411407fc332841140 /* Binary/SnConvX_MetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD328411a87fc3328411a8 /* Binary/SnConvX_Output.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.h"; sourceTree = SOURCE_ROOT; }; + FFFD328412107fc332841210 /* Binary/SnConvX_Union.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.h"; sourceTree = SOURCE_ROOT; }; + FFFD328412787fc332841278 /* Binary/SnSerializationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.h"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD328412e07fc3328412e0 /* Binary/SnBinaryDeserialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinaryDeserialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinaryDeserialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328413487fc332841348 /* Binary/SnBinarySerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnBinarySerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnBinarySerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328413b07fc3328413b0 /* Binary/SnConvX.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328414187fc332841418 /* Binary/SnConvX_Align.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Align.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Align.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328414807fc332841480 /* Binary/SnConvX_Convert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Convert.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Convert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328414e87fc3328414e8 /* Binary/SnConvX_Error.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Error.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Error.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328415507fc332841550 /* Binary/SnConvX_MetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_MetaData.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_MetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328415b87fc3328415b8 /* Binary/SnConvX_Output.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Output.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Output.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328416207fc332841620 /* Binary/SnConvX_Union.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnConvX_Union.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnConvX_Union.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328416887fc332841688 /* Binary/SnSerializationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Binary/SnSerializationContext.cpp"; path = "../../PhysXExtensions/src/serialization/Binary/SnSerializationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328416f07fc3328416f0 /* Xml/SnJointRepXSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD328417587fc332841758 /* Xml/SnPxStreamOperators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnPxStreamOperators.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnPxStreamOperators.h"; sourceTree = SOURCE_ROOT; }; + FFFD328417c07fc3328417c0 /* Xml/SnRepX1_0Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX1_0Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX1_0Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD328418287fc332841828 /* Xml/SnRepX3_1Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_1Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_1Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD328418907fc332841890 /* Xml/SnRepX3_2Defaults.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepX3_2Defaults.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepX3_2Defaults.h"; sourceTree = SOURCE_ROOT; }; + FFFD328418f87fc3328418f8 /* Xml/SnRepXCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCollection.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD328419607fc332841960 /* Xml/SnRepXCoreSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD328419c87fc3328419c8 /* Xml/SnRepXSerializerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXSerializerImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXSerializerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD32841a307fc332841a30 /* Xml/SnRepXUpgrader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.h"; sourceTree = SOURCE_ROOT; }; + FFFD32841a987fc332841a98 /* Xml/SnSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD32841b007fc332841b00 /* Xml/SnXmlDeserializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlDeserializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlDeserializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD32841b687fc332841b68 /* Xml/SnXmlImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlImpl.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD32841bd07fc332841bd0 /* Xml/SnXmlMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryAllocator.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD32841c387fc332841c38 /* Xml/SnXmlMemoryPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPool.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD32841ca07fc332841ca0 /* Xml/SnXmlMemoryPoolStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlMemoryPoolStreams.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlMemoryPoolStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD32841d087fc332841d08 /* Xml/SnXmlReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlReader.h"; sourceTree = SOURCE_ROOT; }; + FFFD32841d707fc332841d70 /* Xml/SnXmlSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerializer.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD32841dd87fc332841dd8 /* Xml/SnXmlSimpleXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSimpleXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSimpleXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD32841e407fc332841e40 /* Xml/SnXmlStringToType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlStringToType.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlStringToType.h"; sourceTree = SOURCE_ROOT; }; + FFFD32841ea87fc332841ea8 /* Xml/SnXmlVisitorReader.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorReader.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorReader.h"; sourceTree = SOURCE_ROOT; }; + FFFD32841f107fc332841f10 /* Xml/SnXmlVisitorWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlVisitorWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlVisitorWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD32841f787fc332841f78 /* Xml/SnXmlWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlWriter.h"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD32841fe07fc332841fe0 /* Xml/SnJointRepXSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnJointRepXSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnJointRepXSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328420487fc332842048 /* Xml/SnRepXCoreSerializer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXCoreSerializer.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXCoreSerializer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328420b07fc3328420b0 /* Xml/SnRepXUpgrader.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnRepXUpgrader.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnRepXUpgrader.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328421187fc332842118 /* Xml/SnXmlSerialization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Xml/SnXmlSerialization.cpp"; path = "../../PhysXExtensions/src/serialization/Xml/SnXmlSerialization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328421807fc332842180 /* File/SnFile.h */= { isa = PBXFileReference; fileEncoding = 4; name = "File/SnFile.h"; path = "../../PhysXExtensions/src/serialization/File/SnFile.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f8007fc33283f800 /* core/include/PvdMetaDataDefineProperties.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataDefineProperties.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataDefineProperties.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f8687fc33283f868 /* core/include/PvdMetaDataExtensions.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataExtensions.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataExtensions.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f8d07fc33283f8d0 /* core/include/PvdMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PvdMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/PvdMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f9387fc33283f938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283f9a07fc33283f9a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283fa087fc33283fa08 /* core/include/PxMetaDataCompare.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCompare.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCompare.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283fa707fc33283fa70 /* core/include/PxMetaDataCppPrefix.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataCppPrefix.h"; path = "../../PhysXMetaData/core/include/PxMetaDataCppPrefix.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283fad87fc33283fad8 /* core/include/PxMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/PxMetaDataObjects.h"; path = "../../PhysXMetaData/core/include/PxMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283fb407fc33283fb40 /* core/include/RepXMetaDataPropertyVisitor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "core/include/RepXMetaDataPropertyVisitor.h"; path = "../../PhysXMetaData/core/include/RepXMetaDataPropertyVisitor.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283fba87fc33283fba8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283fc107fc33283fc10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283fc787fc33283fc78 /* extensions/include/PxExtensionMetaDataObjects.h */= { isa = PBXFileReference; fileEncoding = 4; name = "extensions/include/PxExtensionMetaDataObjects.h"; path = "../../PhysXMetaData/extensions/include/PxExtensionMetaDataObjects.h"; sourceTree = SOURCE_ROOT; }; + FFFD3283fce07fc33283fce0 /* 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 */ - FFF22dc036207f922dc03620 /* Resources */ = { + FFF231541f407fc331541f40 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -804,7 +804,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2dc036207f922dc03620 /* Frameworks */ = { + FFFC31541f407fc331541f40 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -814,64 +814,64 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82dc036207f922dc03620 /* Sources */ = { + FFF831541f407fc331541f40 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c86bae87f922c86bae8, - FFFF2c86bb507f922c86bb50, - FFFF2c86bbb87f922c86bbb8, - FFFF2c86bc207f922c86bc20, - FFFF2c86bc887f922c86bc88, - FFFF2c86bcf07f922c86bcf0, - FFFF2c86bd587f922c86bd58, - FFFF2c86bdc07f922c86bdc0, - FFFF2c86be287f922c86be28, - FFFF2c86be907f922c86be90, - FFFF2c86bef87f922c86bef8, - FFFF2c86bf607f922c86bf60, - FFFF2c86bfc87f922c86bfc8, - FFFF2c86c0307f922c86c030, - FFFF2c86c0987f922c86c098, - FFFF2c86c1007f922c86c100, - FFFF2c86c1687f922c86c168, - FFFF2c86c1d07f922c86c1d0, - FFFF2c86c2387f922c86c238, - FFFF2c86c2a07f922c86c2a0, - FFFF2c86c3087f922c86c308, - FFFF2c86c3707f922c86c370, - FFFF2c86c3d87f922c86c3d8, - FFFF2c86c4407f922c86c440, - FFFF2c86c4a87f922c86c4a8, - FFFF2c86c5107f922c86c510, - FFFF2c86c5787f922c86c578, - FFFF2c86c5e07f922c86c5e0, - FFFF2c86c6487f922c86c648, - FFFF2c86c6b07f922c86c6b0, - FFFF2c86c7187f922c86c718, - FFFF2c86c7807f922c86c780, - FFFF2c86c7e87f922c86c7e8, - FFFF2c86c8507f922c86c850, - FFFF2c86c8b87f922c86c8b8, - FFFF2c86c9207f922c86c920, - FFFF2c86fed07f922c86fed0, - FFFF2c86ff387f922c86ff38, - FFFF2c86ffa07f922c86ffa0, - FFFF2c8702e07f922c8702e0, - FFFF2c8703487f922c870348, - FFFF2c8703b07f922c8703b0, - FFFF2c8704187f922c870418, - FFFF2c8704807f922c870480, - FFFF2c8704e87f922c8704e8, - FFFF2c8705507f922c870550, - FFFF2c8705b87f922c8705b8, - FFFF2c8706207f922c870620, - FFFF2c8706887f922c870688, - FFFF2c870fe07f922c870fe0, - FFFF2c8710487f922c871048, - FFFF2c8710b07f922c8710b0, - FFFF2c8711187f922c871118, - FFFF2c86dee07f922c86dee0, + FFFF3283d8e87fc33283d8e8, + FFFF3283d9507fc33283d950, + FFFF3283d9b87fc33283d9b8, + FFFF3283da207fc33283da20, + FFFF3283da887fc33283da88, + FFFF3283daf07fc33283daf0, + FFFF3283db587fc33283db58, + FFFF3283dbc07fc33283dbc0, + FFFF3283dc287fc33283dc28, + FFFF3283dc907fc33283dc90, + FFFF3283dcf87fc33283dcf8, + FFFF3283dd607fc33283dd60, + FFFF3283ddc87fc33283ddc8, + FFFF3283de307fc33283de30, + FFFF3283de987fc33283de98, + FFFF3283df007fc33283df00, + FFFF3283df687fc33283df68, + FFFF3283dfd07fc33283dfd0, + FFFF3283e0387fc33283e038, + FFFF3283e0a07fc33283e0a0, + FFFF3283e1087fc33283e108, + FFFF3283e1707fc33283e170, + FFFF3283e1d87fc33283e1d8, + FFFF3283e2407fc33283e240, + FFFF3283e2a87fc33283e2a8, + FFFF3283e3107fc33283e310, + FFFF3283e3787fc33283e378, + FFFF3283e3e07fc33283e3e0, + FFFF3283e4487fc33283e448, + FFFF3283e4b07fc33283e4b0, + FFFF3283e5187fc33283e518, + FFFF3283e5807fc33283e580, + FFFF3283e5e87fc33283e5e8, + FFFF3283e6507fc33283e650, + FFFF3283e6b87fc33283e6b8, + FFFF3283e7207fc33283e720, + FFFF32840ed07fc332840ed0, + FFFF32840f387fc332840f38, + FFFF32840fa07fc332840fa0, + FFFF328412e07fc3328412e0, + FFFF328413487fc332841348, + FFFF328413b07fc3328413b0, + FFFF328414187fc332841418, + FFFF328414807fc332841480, + FFFF328414e87fc3328414e8, + FFFF328415507fc332841550, + FFFF328415b87fc3328415b8, + FFFF328416207fc332841620, + FFFF328416887fc332841688, + FFFF32841fe07fc332841fe0, + FFFF328420487fc332842048, + FFFF328420b07fc3328420b0, + FFFF328421187fc332842118, + FFFF3283fce07fc33283fce0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -880,56 +880,56 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF42dc004907f922dc00490 /* PBXTargetDependency */ = { + FFF4315423c07fc3315423c0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2d9e21807f922d9e2180 /* PsFastXml */; - targetProxy = FFF52d9e21807f922d9e2180 /* PBXContainerItemProxy */; + target = FFFA3152c5407fc33152c540 /* PsFastXml */; + targetProxy = FFF53152c5407fc33152c540 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SceneQuery */ - FFFF2c873e007f922c873e00 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c873e007f922c873e00 /* SqAABBPruner.cpp */; }; - FFFF2c873e687f922c873e68 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c873e687f922c873e68 /* SqAABBTree.cpp */; }; - FFFF2c873ed07f922c873ed0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c873ed07f922c873ed0 /* SqAABBTreeUpdateMap.cpp */; }; - FFFF2c873f387f922c873f38 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c873f387f922c873f38 /* SqBounds.cpp */; }; - FFFF2c873fa07f922c873fa0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c873fa07f922c873fa0 /* SqBucketPruner.cpp */; }; - FFFF2c8740087f922c874008 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8740087f922c874008 /* SqExtendedBucketPruner.cpp */; }; - FFFF2c8740707f922c874070 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8740707f922c874070 /* SqMetaData.cpp */; }; - FFFF2c8740d87f922c8740d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8740d87f922c8740d8 /* SqPruningPool.cpp */; }; - FFFF2c8741407f922c874140 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8741407f922c874140 /* SqPruningStructure.cpp */; }; - FFFF2c8741a87f922c8741a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8741a87f922c8741a8 /* SqSceneQueryManager.cpp */; }; + FFFF32845e007fc332845e00 /* SqAABBPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32845e007fc332845e00 /* SqAABBPruner.cpp */; }; + FFFF32845e687fc332845e68 /* SqAABBTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32845e687fc332845e68 /* SqAABBTree.cpp */; }; + FFFF32845ed07fc332845ed0 /* SqAABBTreeUpdateMap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32845ed07fc332845ed0 /* SqAABBTreeUpdateMap.cpp */; }; + FFFF32845f387fc332845f38 /* SqBounds.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32845f387fc332845f38 /* SqBounds.cpp */; }; + FFFF32845fa07fc332845fa0 /* SqBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD32845fa07fc332845fa0 /* SqBucketPruner.cpp */; }; + FFFF328460087fc332846008 /* SqExtendedBucketPruner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328460087fc332846008 /* SqExtendedBucketPruner.cpp */; }; + FFFF328460707fc332846070 /* SqMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328460707fc332846070 /* SqMetaData.cpp */; }; + FFFF328460d87fc3328460d8 /* SqPruningPool.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328460d87fc3328460d8 /* SqPruningPool.cpp */; }; + FFFF328461407fc332846140 /* SqPruningStructure.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328461407fc332846140 /* SqPruningStructure.cpp */; }; + FFFF328461a87fc3328461a8 /* SqSceneQueryManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328461a87fc3328461a8 /* SqSceneQueryManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2dc145807f922dc14580 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c873e007f922c873e00 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c873e687f922c873e68 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c873ed07f922c873ed0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c873f387f922c873f38 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c873fa07f922c873fa0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8740087f922c874008 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8740707f922c874070 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8740d87f922c8740d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8741407f922c874140 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8741a87f922c8741a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8742107f922c874210 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8742787f922c874278 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8742e07f922c8742e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8743487f922c874348 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8743b07f922c8743b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8744187f922c874418 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8744807f922c874480 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8744e87f922c8744e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8745507f922c874550 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8745b87f922c8745b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; - FFFD2dc189b07f922dc189b0 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; - FFFD2dc18a187f922dc18a18 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2dc18a807f922dc18a80 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; - FFFD2dc18ae87f922dc18ae8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD315548707fc331554870 /* SceneQuery */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SceneQuery"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD32845e007fc332845e00 /* SqAABBPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.cpp"; path = "../../SceneQuery/src/SqAABBPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32845e687fc332845e68 /* SqAABBTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.cpp"; path = "../../SceneQuery/src/SqAABBTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32845ed07fc332845ed0 /* SqAABBTreeUpdateMap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.cpp"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32845f387fc332845f38 /* SqBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.cpp"; path = "../../SceneQuery/src/SqBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32845fa07fc332845fa0 /* SqBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.cpp"; path = "../../SceneQuery/src/SqBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328460087fc332846008 /* SqExtendedBucketPruner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.cpp"; path = "../../SceneQuery/src/SqExtendedBucketPruner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328460707fc332846070 /* SqMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqMetaData.cpp"; path = "../../SceneQuery/src/SqMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328460d87fc3328460d8 /* SqPruningPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.cpp"; path = "../../SceneQuery/src/SqPruningPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328461407fc332846140 /* SqPruningStructure.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.cpp"; path = "../../SceneQuery/src/SqPruningStructure.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328461a87fc3328461a8 /* SqSceneQueryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.cpp"; path = "../../SceneQuery/src/SqSceneQueryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328462107fc332846210 /* SqAABBPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBPruner.h"; path = "../../SceneQuery/src/SqAABBPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD328462787fc332846278 /* SqAABBTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTree.h"; path = "../../SceneQuery/src/SqAABBTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD328462e07fc3328462e0 /* SqAABBTreeQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeQuery.h"; path = "../../SceneQuery/src/SqAABBTreeQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD328463487fc332846348 /* SqAABBTreeUpdateMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqAABBTreeUpdateMap.h"; path = "../../SceneQuery/src/SqAABBTreeUpdateMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD328463b07fc3328463b0 /* SqBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBounds.h"; path = "../../SceneQuery/src/SqBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFD328464187fc332846418 /* SqBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqBucketPruner.h"; path = "../../SceneQuery/src/SqBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD328464807fc332846480 /* SqExtendedBucketPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqExtendedBucketPruner.h"; path = "../../SceneQuery/src/SqExtendedBucketPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD328464e87fc3328464e8 /* SqPrunerTestsSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerTestsSIMD.h"; path = "../../SceneQuery/src/SqPrunerTestsSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD328465507fc332846550 /* SqPruningPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningPool.h"; path = "../../SceneQuery/src/SqPruningPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD328465b87fc3328465b8 /* SqTypedef.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqTypedef.h"; path = "../../SceneQuery/src/SqTypedef.h"; sourceTree = SOURCE_ROOT; }; + FFFD31558ca07fc331558ca0 /* SqPruner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruner.h"; path = "../../SceneQuery/include/SqPruner.h"; sourceTree = SOURCE_ROOT; }; + FFFD31558d087fc331558d08 /* SqPrunerMergeData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPrunerMergeData.h"; path = "../../SceneQuery/include/SqPrunerMergeData.h"; sourceTree = SOURCE_ROOT; }; + FFFD31558d707fc331558d70 /* SqPruningStructure.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqPruningStructure.h"; path = "../../SceneQuery/include/SqPruningStructure.h"; sourceTree = SOURCE_ROOT; }; + FFFD31558dd87fc331558dd8 /* SqSceneQueryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SqSceneQueryManager.h"; path = "../../SceneQuery/include/SqSceneQueryManager.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF22dc145807f922dc14580 /* Resources */ = { + FFF2315548707fc331554870 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -939,7 +939,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2dc145807f922dc14580 /* Frameworks */ = { + FFFC315548707fc331554870 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -949,20 +949,20 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82dc145807f922dc14580 /* Sources */ = { + FFF8315548707fc331554870 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c873e007f922c873e00, - FFFF2c873e687f922c873e68, - FFFF2c873ed07f922c873ed0, - FFFF2c873f387f922c873f38, - FFFF2c873fa07f922c873fa0, - FFFF2c8740087f922c874008, - FFFF2c8740707f922c874070, - FFFF2c8740d87f922c8740d8, - FFFF2c8741407f922c874140, - FFFF2c8741a87f922c8741a8, + FFFF32845e007fc332845e00, + FFFF32845e687fc332845e68, + FFFF32845ed07fc332845ed0, + FFFF32845f387fc332845f38, + FFFF32845fa07fc332845fa0, + FFFF328460087fc332846008, + FFFF328460707fc332846070, + FFFF328460d87fc3328460d8, + FFFF328461407fc332846140, + FFFF328461a87fc3328461a8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -974,154 +974,154 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of SimulationController */ - FFFF2e000dd07f922e000dd0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e000dd07f922e000dd0 /* ScActorCore.cpp */; }; - FFFF2e000e387f922e000e38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e000e387f922e000e38 /* ScActorSim.cpp */; }; - FFFF2e000ea07f922e000ea0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e000ea07f922e000ea0 /* ScArticulationCore.cpp */; }; - FFFF2e000f087f922e000f08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e000f087f922e000f08 /* ScArticulationJointCore.cpp */; }; - FFFF2e000f707f922e000f70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e000f707f922e000f70 /* ScArticulationJointSim.cpp */; }; - FFFF2e000fd87f922e000fd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e000fd87f922e000fd8 /* ScArticulationSim.cpp */; }; - FFFF2e0010407f922e001040 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0010407f922e001040 /* ScBodyCore.cpp */; }; - FFFF2e0010a87f922e0010a8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0010a87f922e0010a8 /* ScBodyCoreKinematic.cpp */; }; - FFFF2e0011107f922e001110 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0011107f922e001110 /* ScBodySim.cpp */; }; - FFFF2e0011787f922e001178 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0011787f922e001178 /* ScConstraintCore.cpp */; }; - FFFF2e0011e07f922e0011e0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0011e07f922e0011e0 /* ScConstraintGroupNode.cpp */; }; - FFFF2e0012487f922e001248 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0012487f922e001248 /* ScConstraintInteraction.cpp */; }; - FFFF2e0012b07f922e0012b0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0012b07f922e0012b0 /* ScConstraintProjectionManager.cpp */; }; - FFFF2e0013187f922e001318 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0013187f922e001318 /* ScConstraintProjectionTree.cpp */; }; - FFFF2e0013807f922e001380 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0013807f922e001380 /* ScConstraintSim.cpp */; }; - FFFF2e0013e87f922e0013e8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0013e87f922e0013e8 /* ScElementInteractionMarker.cpp */; }; - FFFF2e0014507f922e001450 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0014507f922e001450 /* ScElementSim.cpp */; }; - FFFF2e0014b87f922e0014b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0014b87f922e0014b8 /* ScInteraction.cpp */; }; - FFFF2e0015207f922e001520 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0015207f922e001520 /* ScIterators.cpp */; }; - FFFF2e0015887f922e001588 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0015887f922e001588 /* ScMaterialCore.cpp */; }; - FFFF2e0015f07f922e0015f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0015f07f922e0015f0 /* ScMetaData.cpp */; }; - FFFF2e0016587f922e001658 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0016587f922e001658 /* ScNPhaseCore.cpp */; }; - FFFF2e0016c07f922e0016c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0016c07f922e0016c0 /* ScPhysics.cpp */; }; - FFFF2e0017287f922e001728 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0017287f922e001728 /* ScRigidCore.cpp */; }; - FFFF2e0017907f922e001790 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0017907f922e001790 /* ScRigidSim.cpp */; }; - FFFF2e0017f87f922e0017f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0017f87f922e0017f8 /* ScScene.cpp */; }; - FFFF2e0018607f922e001860 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0018607f922e001860 /* ScShapeCore.cpp */; }; - FFFF2e0018c87f922e0018c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0018c87f922e0018c8 /* ScShapeInteraction.cpp */; }; - FFFF2e0019307f922e001930 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0019307f922e001930 /* ScShapeSim.cpp */; }; - FFFF2e0019987f922e001998 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0019987f922e001998 /* ScSimStats.cpp */; }; - FFFF2e001a007f922e001a00 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e001a007f922e001a00 /* ScSimulationController.cpp */; }; - FFFF2e001a687f922e001a68 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e001a687f922e001a68 /* ScSqBoundsManager.cpp */; }; - FFFF2e001ad07f922e001ad0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e001ad07f922e001ad0 /* ScStaticCore.cpp */; }; - FFFF2e001b387f922e001b38 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e001b387f922e001b38 /* ScStaticSim.cpp */; }; - FFFF2e001ba07f922e001ba0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e001ba07f922e001ba0 /* ScTriggerInteraction.cpp */; }; - FFFF2e001d407f922e001d40 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e001d407f922e001d40 /* particles/ScParticleBodyInteraction.cpp */; }; - FFFF2e001da87f922e001da8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e001da87f922e001da8 /* particles/ScParticlePacketShape.cpp */; }; - FFFF2e001e107f922e001e10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e001e107f922e001e10 /* particles/ScParticleSystemCore.cpp */; }; - FFFF2e001e787f922e001e78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e001e787f922e001e78 /* particles/ScParticleSystemSim.cpp */; }; - FFFF2e001fb07f922e001fb0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e001fb07f922e001fb0 /* cloth/ScClothCore.cpp */; }; - FFFF2e0020187f922e002018 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0020187f922e002018 /* cloth/ScClothFabricCore.cpp */; }; - FFFF2e0020807f922e002080 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0020807f922e002080 /* cloth/ScClothShape.cpp */; }; - FFFF2e0020e87f922e0020e8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0020e87f922e0020e8 /* cloth/ScClothSim.cpp */; }; + FFFF3284c9d07fc33284c9d0 /* ScActorCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284c9d07fc33284c9d0 /* ScActorCore.cpp */; }; + FFFF3284ca387fc33284ca38 /* ScActorSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284ca387fc33284ca38 /* ScActorSim.cpp */; }; + FFFF3284caa07fc33284caa0 /* ScArticulationCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284caa07fc33284caa0 /* ScArticulationCore.cpp */; }; + FFFF3284cb087fc33284cb08 /* ScArticulationJointCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284cb087fc33284cb08 /* ScArticulationJointCore.cpp */; }; + FFFF3284cb707fc33284cb70 /* ScArticulationJointSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284cb707fc33284cb70 /* ScArticulationJointSim.cpp */; }; + FFFF3284cbd87fc33284cbd8 /* ScArticulationSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284cbd87fc33284cbd8 /* ScArticulationSim.cpp */; }; + FFFF3284cc407fc33284cc40 /* ScBodyCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284cc407fc33284cc40 /* ScBodyCore.cpp */; }; + FFFF3284cca87fc33284cca8 /* ScBodyCoreKinematic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284cca87fc33284cca8 /* ScBodyCoreKinematic.cpp */; }; + FFFF3284cd107fc33284cd10 /* ScBodySim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284cd107fc33284cd10 /* ScBodySim.cpp */; }; + FFFF3284cd787fc33284cd78 /* ScConstraintCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284cd787fc33284cd78 /* ScConstraintCore.cpp */; }; + FFFF3284cde07fc33284cde0 /* ScConstraintGroupNode.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284cde07fc33284cde0 /* ScConstraintGroupNode.cpp */; }; + FFFF3284ce487fc33284ce48 /* ScConstraintInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284ce487fc33284ce48 /* ScConstraintInteraction.cpp */; }; + FFFF3284ceb07fc33284ceb0 /* ScConstraintProjectionManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284ceb07fc33284ceb0 /* ScConstraintProjectionManager.cpp */; }; + FFFF3284cf187fc33284cf18 /* ScConstraintProjectionTree.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284cf187fc33284cf18 /* ScConstraintProjectionTree.cpp */; }; + FFFF3284cf807fc33284cf80 /* ScConstraintSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284cf807fc33284cf80 /* ScConstraintSim.cpp */; }; + FFFF3284cfe87fc33284cfe8 /* ScElementInteractionMarker.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284cfe87fc33284cfe8 /* ScElementInteractionMarker.cpp */; }; + FFFF3284d0507fc33284d050 /* ScElementSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d0507fc33284d050 /* ScElementSim.cpp */; }; + FFFF3284d0b87fc33284d0b8 /* ScInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d0b87fc33284d0b8 /* ScInteraction.cpp */; }; + FFFF3284d1207fc33284d120 /* ScIterators.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d1207fc33284d120 /* ScIterators.cpp */; }; + FFFF3284d1887fc33284d188 /* ScMaterialCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d1887fc33284d188 /* ScMaterialCore.cpp */; }; + FFFF3284d1f07fc33284d1f0 /* ScMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d1f07fc33284d1f0 /* ScMetaData.cpp */; }; + FFFF3284d2587fc33284d258 /* ScNPhaseCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d2587fc33284d258 /* ScNPhaseCore.cpp */; }; + FFFF3284d2c07fc33284d2c0 /* ScPhysics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d2c07fc33284d2c0 /* ScPhysics.cpp */; }; + FFFF3284d3287fc33284d328 /* ScRigidCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d3287fc33284d328 /* ScRigidCore.cpp */; }; + FFFF3284d3907fc33284d390 /* ScRigidSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d3907fc33284d390 /* ScRigidSim.cpp */; }; + FFFF3284d3f87fc33284d3f8 /* ScScene.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d3f87fc33284d3f8 /* ScScene.cpp */; }; + FFFF3284d4607fc33284d460 /* ScShapeCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d4607fc33284d460 /* ScShapeCore.cpp */; }; + FFFF3284d4c87fc33284d4c8 /* ScShapeInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d4c87fc33284d4c8 /* ScShapeInteraction.cpp */; }; + FFFF3284d5307fc33284d530 /* ScShapeSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d5307fc33284d530 /* ScShapeSim.cpp */; }; + FFFF3284d5987fc33284d598 /* ScSimStats.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d5987fc33284d598 /* ScSimStats.cpp */; }; + FFFF3284d6007fc33284d600 /* ScSimulationController.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d6007fc33284d600 /* ScSimulationController.cpp */; }; + FFFF3284d6687fc33284d668 /* ScSqBoundsManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d6687fc33284d668 /* ScSqBoundsManager.cpp */; }; + FFFF3284d6d07fc33284d6d0 /* ScStaticCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d6d07fc33284d6d0 /* ScStaticCore.cpp */; }; + FFFF3284d7387fc33284d738 /* ScStaticSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d7387fc33284d738 /* ScStaticSim.cpp */; }; + FFFF3284d7a07fc33284d7a0 /* ScTriggerInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d7a07fc33284d7a0 /* ScTriggerInteraction.cpp */; }; + FFFF3284d9407fc33284d940 /* particles/ScParticleBodyInteraction.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d9407fc33284d940 /* particles/ScParticleBodyInteraction.cpp */; }; + FFFF3284d9a87fc33284d9a8 /* particles/ScParticlePacketShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284d9a87fc33284d9a8 /* particles/ScParticlePacketShape.cpp */; }; + FFFF3284da107fc33284da10 /* particles/ScParticleSystemCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284da107fc33284da10 /* particles/ScParticleSystemCore.cpp */; }; + FFFF3284da787fc33284da78 /* particles/ScParticleSystemSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284da787fc33284da78 /* particles/ScParticleSystemSim.cpp */; }; + FFFF3284dbb07fc33284dbb0 /* cloth/ScClothCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284dbb07fc33284dbb0 /* cloth/ScClothCore.cpp */; }; + FFFF3284dc187fc33284dc18 /* cloth/ScClothFabricCore.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284dc187fc33284dc18 /* cloth/ScClothFabricCore.cpp */; }; + FFFF3284dc807fc33284dc80 /* cloth/ScClothShape.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284dc807fc33284dc80 /* cloth/ScClothShape.cpp */; }; + FFFF3284dce87fc33284dce8 /* cloth/ScClothSim.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284dce87fc33284dce8 /* cloth/ScClothSim.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2dc18c707f922dc18c70 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c8768007f922c876800 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8768687f922c876868 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8768d07f922c8768d0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8769387f922c876938 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8769a07f922c8769a0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c876a087f922c876a08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c876a707f922c876a70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c876ad87f922c876ad8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c876b407f922c876b40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c876ba87f922c876ba8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c876c107f922c876c10 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c876c787f922c876c78 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c876ce07f922c876ce0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c876d487f922c876d48 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c876db07f922c876db0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0000007f922e000000 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0000687f922e000068 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0000d07f922e0000d0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0001387f922e000138 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0001a07f922e0001a0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0002087f922e000208 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0002707f922e000270 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0002d87f922e0002d8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0003407f922e000340 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0003a87f922e0003a8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0004107f922e000410 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0004787f922e000478 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0004e07f922e0004e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0005487f922e000548 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0005b07f922e0005b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0006187f922e000618 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0006807f922e000680 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0006e87f922e0006e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0007507f922e000750 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0007b87f922e0007b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0008207f922e000820 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0008887f922e000888 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0008f07f922e0008f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0009587f922e000958 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0009c07f922e0009c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e000a287f922e000a28 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e000a907f922e000a90 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e000af87f922e000af8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e000b607f922e000b60 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e000bc87f922e000bc8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e000c307f922e000c30 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e000c987f922e000c98 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e000d007f922e000d00 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e000d687f922e000d68 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e000dd07f922e000dd0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e000e387f922e000e38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e000ea07f922e000ea0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e000f087f922e000f08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e000f707f922e000f70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e000fd87f922e000fd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0010407f922e001040 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0010a87f922e0010a8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0011107f922e001110 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0011787f922e001178 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0011e07f922e0011e0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0012487f922e001248 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0012b07f922e0012b0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0013187f922e001318 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0013807f922e001380 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0013e87f922e0013e8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0014507f922e001450 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0014b87f922e0014b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0015207f922e001520 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0015887f922e001588 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0015f07f922e0015f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0016587f922e001658 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0016c07f922e0016c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0017287f922e001728 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0017907f922e001790 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0017f87f922e0017f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0018607f922e001860 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0018c87f922e0018c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0019307f922e001930 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0019987f922e001998 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e001a007f922e001a00 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e001a687f922e001a68 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e001ad07f922e001ad0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e001b387f922e001b38 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e001ba07f922e001ba0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e001c087f922e001c08 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e001c707f922e001c70 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e001cd87f922e001cd8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e001d407f922e001d40 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e001da87f922e001da8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e001e107f922e001e10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e001e787f922e001e78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e001ee07f922e001ee0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e001f487f922e001f48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e001fb07f922e001fb0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0020187f922e002018 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0020807f922e002080 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0020e87f922e0020e8 /* cloth/ScClothSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.cpp"; path = "../../SimulationController/src/cloth/ScClothSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD31558f607fc331558f60 /* SimulationController */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "SimulationController"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD32848a007fc332848a00 /* ScActorCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.h"; path = "../../SimulationController/include/ScActorCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD32848a687fc332848a68 /* ScArticulationCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.h"; path = "../../SimulationController/include/ScArticulationCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD32848ad07fc332848ad0 /* ScArticulationJointCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.h"; path = "../../SimulationController/include/ScArticulationJointCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD32848b387fc332848b38 /* ScBodyCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.h"; path = "../../SimulationController/include/ScBodyCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD32848ba07fc332848ba0 /* ScClothCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothCore.h"; path = "../../SimulationController/include/ScClothCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD32848c087fc332848c08 /* ScClothFabricCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClothFabricCore.h"; path = "../../SimulationController/include/ScClothFabricCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD32848c707fc332848c70 /* ScConstraintCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.h"; path = "../../SimulationController/include/ScConstraintCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD32848cd87fc332848cd8 /* ScIterators.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.h"; path = "../../SimulationController/include/ScIterators.h"; sourceTree = SOURCE_ROOT; }; + FFFD32848d407fc332848d40 /* ScMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.h"; path = "../../SimulationController/include/ScMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD32848da87fc332848da8 /* ScParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScParticleSystemCore.h"; path = "../../SimulationController/include/ScParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD32848e107fc332848e10 /* ScPhysics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.h"; path = "../../SimulationController/include/ScPhysics.h"; sourceTree = SOURCE_ROOT; }; + FFFD32848e787fc332848e78 /* ScRigidCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.h"; path = "../../SimulationController/include/ScRigidCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD32848ee07fc332848ee0 /* ScScene.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.h"; path = "../../SimulationController/include/ScScene.h"; sourceTree = SOURCE_ROOT; }; + FFFD32848f487fc332848f48 /* ScShapeCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.h"; path = "../../SimulationController/include/ScShapeCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD32848fb07fc332848fb0 /* ScStaticCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.h"; path = "../../SimulationController/include/ScStaticCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284bc007fc33284bc00 /* ScActorElementPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorElementPair.h"; path = "../../SimulationController/src/ScActorElementPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284bc687fc33284bc68 /* ScActorInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorInteraction.h"; path = "../../SimulationController/src/ScActorInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284bcd07fc33284bcd0 /* ScActorPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorPair.h"; path = "../../SimulationController/src/ScActorPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284bd387fc33284bd38 /* ScActorSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.h"; path = "../../SimulationController/src/ScActorSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284bda07fc33284bda0 /* ScArticulationJointSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.h"; path = "../../SimulationController/src/ScArticulationJointSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284be087fc33284be08 /* ScArticulationSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.h"; path = "../../SimulationController/src/ScArticulationSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284be707fc33284be70 /* ScBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.h"; path = "../../SimulationController/src/ScBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284bed87fc33284bed8 /* ScClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScClient.h"; path = "../../SimulationController/src/ScClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284bf407fc33284bf40 /* ScConstraintGroupNode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.h"; path = "../../SimulationController/src/ScConstraintGroupNode.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284bfa87fc33284bfa8 /* ScConstraintInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.h"; path = "../../SimulationController/src/ScConstraintInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c0107fc33284c010 /* ScConstraintProjectionManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.h"; path = "../../SimulationController/src/ScConstraintProjectionManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c0787fc33284c078 /* ScConstraintProjectionTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.h"; path = "../../SimulationController/src/ScConstraintProjectionTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c0e07fc33284c0e0 /* ScConstraintSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.h"; path = "../../SimulationController/src/ScConstraintSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c1487fc33284c148 /* ScContactReportBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactReportBuffer.h"; path = "../../SimulationController/src/ScContactReportBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c1b07fc33284c1b0 /* ScContactStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScContactStream.h"; path = "../../SimulationController/src/ScContactStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c2187fc33284c218 /* ScElementInteractionMarker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.h"; path = "../../SimulationController/src/ScElementInteractionMarker.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c2807fc33284c280 /* ScElementSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.h"; path = "../../SimulationController/src/ScElementSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c2e87fc33284c2e8 /* ScElementSimInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSimInteraction.h"; path = "../../SimulationController/src/ScElementSimInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c3507fc33284c350 /* ScInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.h"; path = "../../SimulationController/src/ScInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c3b87fc33284c3b8 /* ScInteractionFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteractionFlags.h"; path = "../../SimulationController/src/ScInteractionFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c4207fc33284c420 /* ScNPhaseCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.h"; path = "../../SimulationController/src/ScNPhaseCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c4887fc33284c488 /* ScObjectIDTracker.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScObjectIDTracker.h"; path = "../../SimulationController/src/ScObjectIDTracker.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c4f07fc33284c4f0 /* ScRbElementInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRbElementInteraction.h"; path = "../../SimulationController/src/ScRbElementInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c5587fc33284c558 /* ScRigidSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.h"; path = "../../SimulationController/src/ScRigidSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c5c07fc33284c5c0 /* ScShapeInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.h"; path = "../../SimulationController/src/ScShapeInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c6287fc33284c628 /* ScShapeIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeIterator.h"; path = "../../SimulationController/src/ScShapeIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c6907fc33284c690 /* ScShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.h"; path = "../../SimulationController/src/ScShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c6f87fc33284c6f8 /* ScSimStateData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStateData.h"; path = "../../SimulationController/src/ScSimStateData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c7607fc33284c760 /* ScSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.h"; path = "../../SimulationController/src/ScSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c7c87fc33284c7c8 /* ScSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.h"; path = "../../SimulationController/src/ScSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c8307fc33284c830 /* ScSqBoundsManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.h"; path = "../../SimulationController/src/ScSqBoundsManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c8987fc33284c898 /* ScStaticSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.h"; path = "../../SimulationController/src/ScStaticSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c9007fc33284c900 /* ScTriggerInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.h"; path = "../../SimulationController/src/ScTriggerInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c9687fc33284c968 /* ScTriggerPairs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerPairs.h"; path = "../../SimulationController/src/ScTriggerPairs.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284c9d07fc33284c9d0 /* ScActorCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorCore.cpp"; path = "../../SimulationController/src/ScActorCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284ca387fc33284ca38 /* ScActorSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScActorSim.cpp"; path = "../../SimulationController/src/ScActorSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284caa07fc33284caa0 /* ScArticulationCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationCore.cpp"; path = "../../SimulationController/src/ScArticulationCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284cb087fc33284cb08 /* ScArticulationJointCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointCore.cpp"; path = "../../SimulationController/src/ScArticulationJointCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284cb707fc33284cb70 /* ScArticulationJointSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationJointSim.cpp"; path = "../../SimulationController/src/ScArticulationJointSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284cbd87fc33284cbd8 /* ScArticulationSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScArticulationSim.cpp"; path = "../../SimulationController/src/ScArticulationSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284cc407fc33284cc40 /* ScBodyCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCore.cpp"; path = "../../SimulationController/src/ScBodyCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284cca87fc33284cca8 /* ScBodyCoreKinematic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodyCoreKinematic.cpp"; path = "../../SimulationController/src/ScBodyCoreKinematic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284cd107fc33284cd10 /* ScBodySim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScBodySim.cpp"; path = "../../SimulationController/src/ScBodySim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284cd787fc33284cd78 /* ScConstraintCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintCore.cpp"; path = "../../SimulationController/src/ScConstraintCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284cde07fc33284cde0 /* ScConstraintGroupNode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintGroupNode.cpp"; path = "../../SimulationController/src/ScConstraintGroupNode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284ce487fc33284ce48 /* ScConstraintInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintInteraction.cpp"; path = "../../SimulationController/src/ScConstraintInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284ceb07fc33284ceb0 /* ScConstraintProjectionManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionManager.cpp"; path = "../../SimulationController/src/ScConstraintProjectionManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284cf187fc33284cf18 /* ScConstraintProjectionTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintProjectionTree.cpp"; path = "../../SimulationController/src/ScConstraintProjectionTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284cf807fc33284cf80 /* ScConstraintSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScConstraintSim.cpp"; path = "../../SimulationController/src/ScConstraintSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284cfe87fc33284cfe8 /* ScElementInteractionMarker.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementInteractionMarker.cpp"; path = "../../SimulationController/src/ScElementInteractionMarker.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d0507fc33284d050 /* ScElementSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScElementSim.cpp"; path = "../../SimulationController/src/ScElementSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d0b87fc33284d0b8 /* ScInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScInteraction.cpp"; path = "../../SimulationController/src/ScInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d1207fc33284d120 /* ScIterators.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScIterators.cpp"; path = "../../SimulationController/src/ScIterators.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d1887fc33284d188 /* ScMaterialCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMaterialCore.cpp"; path = "../../SimulationController/src/ScMaterialCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d1f07fc33284d1f0 /* ScMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScMetaData.cpp"; path = "../../SimulationController/src/ScMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d2587fc33284d258 /* ScNPhaseCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScNPhaseCore.cpp"; path = "../../SimulationController/src/ScNPhaseCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d2c07fc33284d2c0 /* ScPhysics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScPhysics.cpp"; path = "../../SimulationController/src/ScPhysics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d3287fc33284d328 /* ScRigidCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidCore.cpp"; path = "../../SimulationController/src/ScRigidCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d3907fc33284d390 /* ScRigidSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScRigidSim.cpp"; path = "../../SimulationController/src/ScRigidSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d3f87fc33284d3f8 /* ScScene.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScScene.cpp"; path = "../../SimulationController/src/ScScene.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d4607fc33284d460 /* ScShapeCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeCore.cpp"; path = "../../SimulationController/src/ScShapeCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d4c87fc33284d4c8 /* ScShapeInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeInteraction.cpp"; path = "../../SimulationController/src/ScShapeInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d5307fc33284d530 /* ScShapeSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScShapeSim.cpp"; path = "../../SimulationController/src/ScShapeSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d5987fc33284d598 /* ScSimStats.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimStats.cpp"; path = "../../SimulationController/src/ScSimStats.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d6007fc33284d600 /* ScSimulationController.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSimulationController.cpp"; path = "../../SimulationController/src/ScSimulationController.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d6687fc33284d668 /* ScSqBoundsManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScSqBoundsManager.cpp"; path = "../../SimulationController/src/ScSqBoundsManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d6d07fc33284d6d0 /* ScStaticCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticCore.cpp"; path = "../../SimulationController/src/ScStaticCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d7387fc33284d738 /* ScStaticSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScStaticSim.cpp"; path = "../../SimulationController/src/ScStaticSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d7a07fc33284d7a0 /* ScTriggerInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "ScTriggerInteraction.cpp"; path = "../../SimulationController/src/ScTriggerInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d8087fc33284d808 /* particles/ScParticleBodyInteraction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.h"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284d8707fc33284d870 /* particles/ScParticlePacketShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.h"; path = "../../SimulationController/src/particles/ScParticlePacketShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284d8d87fc33284d8d8 /* particles/ScParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.h"; path = "../../SimulationController/src/particles/ScParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284d9407fc33284d940 /* particles/ScParticleBodyInteraction.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleBodyInteraction.cpp"; path = "../../SimulationController/src/particles/ScParticleBodyInteraction.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284d9a87fc33284d9a8 /* particles/ScParticlePacketShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticlePacketShape.cpp"; path = "../../SimulationController/src/particles/ScParticlePacketShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284da107fc33284da10 /* particles/ScParticleSystemCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemCore.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284da787fc33284da78 /* particles/ScParticleSystemSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "particles/ScParticleSystemSim.cpp"; path = "../../SimulationController/src/particles/ScParticleSystemSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284dae07fc33284dae0 /* cloth/ScClothShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.h"; path = "../../SimulationController/src/cloth/ScClothShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284db487fc33284db48 /* cloth/ScClothSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothSim.h"; path = "../../SimulationController/src/cloth/ScClothSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284dbb07fc33284dbb0 /* cloth/ScClothCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothCore.cpp"; path = "../../SimulationController/src/cloth/ScClothCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284dc187fc33284dc18 /* cloth/ScClothFabricCore.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothFabricCore.cpp"; path = "../../SimulationController/src/cloth/ScClothFabricCore.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284dc807fc33284dc80 /* cloth/ScClothShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "cloth/ScClothShape.cpp"; path = "../../SimulationController/src/cloth/ScClothShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284dce87fc33284dce8 /* 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 */ - FFF22dc18c707f922dc18c70 /* Resources */ = { + FFF231558f607fc331558f60 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1131,7 +1131,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2dc18c707f922dc18c70 /* Frameworks */ = { + FFFC31558f607fc331558f60 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1141,53 +1141,53 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82dc18c707f922dc18c70 /* Sources */ = { + FFF831558f607fc331558f60 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2e000dd07f922e000dd0, - FFFF2e000e387f922e000e38, - FFFF2e000ea07f922e000ea0, - FFFF2e000f087f922e000f08, - FFFF2e000f707f922e000f70, - FFFF2e000fd87f922e000fd8, - FFFF2e0010407f922e001040, - FFFF2e0010a87f922e0010a8, - FFFF2e0011107f922e001110, - FFFF2e0011787f922e001178, - FFFF2e0011e07f922e0011e0, - FFFF2e0012487f922e001248, - FFFF2e0012b07f922e0012b0, - FFFF2e0013187f922e001318, - FFFF2e0013807f922e001380, - FFFF2e0013e87f922e0013e8, - FFFF2e0014507f922e001450, - FFFF2e0014b87f922e0014b8, - FFFF2e0015207f922e001520, - FFFF2e0015887f922e001588, - FFFF2e0015f07f922e0015f0, - FFFF2e0016587f922e001658, - FFFF2e0016c07f922e0016c0, - FFFF2e0017287f922e001728, - FFFF2e0017907f922e001790, - FFFF2e0017f87f922e0017f8, - FFFF2e0018607f922e001860, - FFFF2e0018c87f922e0018c8, - FFFF2e0019307f922e001930, - FFFF2e0019987f922e001998, - FFFF2e001a007f922e001a00, - FFFF2e001a687f922e001a68, - FFFF2e001ad07f922e001ad0, - FFFF2e001b387f922e001b38, - FFFF2e001ba07f922e001ba0, - FFFF2e001d407f922e001d40, - FFFF2e001da87f922e001da8, - FFFF2e001e107f922e001e10, - FFFF2e001e787f922e001e78, - FFFF2e001fb07f922e001fb0, - FFFF2e0020187f922e002018, - FFFF2e0020807f922e002080, - FFFF2e0020e87f922e0020e8, + FFFF3284c9d07fc33284c9d0, + FFFF3284ca387fc33284ca38, + FFFF3284caa07fc33284caa0, + FFFF3284cb087fc33284cb08, + FFFF3284cb707fc33284cb70, + FFFF3284cbd87fc33284cbd8, + FFFF3284cc407fc33284cc40, + FFFF3284cca87fc33284cca8, + FFFF3284cd107fc33284cd10, + FFFF3284cd787fc33284cd78, + FFFF3284cde07fc33284cde0, + FFFF3284ce487fc33284ce48, + FFFF3284ceb07fc33284ceb0, + FFFF3284cf187fc33284cf18, + FFFF3284cf807fc33284cf80, + FFFF3284cfe87fc33284cfe8, + FFFF3284d0507fc33284d050, + FFFF3284d0b87fc33284d0b8, + FFFF3284d1207fc33284d120, + FFFF3284d1887fc33284d188, + FFFF3284d1f07fc33284d1f0, + FFFF3284d2587fc33284d258, + FFFF3284d2c07fc33284d2c0, + FFFF3284d3287fc33284d328, + FFFF3284d3907fc33284d390, + FFFF3284d3f87fc33284d3f8, + FFFF3284d4607fc33284d460, + FFFF3284d4c87fc33284d4c8, + FFFF3284d5307fc33284d530, + FFFF3284d5987fc33284d598, + FFFF3284d6007fc33284d600, + FFFF3284d6687fc33284d668, + FFFF3284d6d07fc33284d6d0, + FFFF3284d7387fc33284d738, + FFFF3284d7a07fc33284d7a0, + FFFF3284d9407fc33284d940, + FFFF3284d9a87fc33284d9a8, + FFFF3284da107fc33284da10, + FFFF3284da787fc33284da78, + FFFF3284dbb07fc33284dbb0, + FFFF3284dc187fc33284dc18, + FFFF3284dc807fc33284dc80, + FFFF3284dce87fc33284dce8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1199,80 +1199,80 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCooking */ - FFFF2dd085907f922dd08590 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD2dc036207f922dc03620 /* PhysXExtensions */; }; - FFFF2e0082007f922e008200 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0082007f922e008200 /* Adjacencies.cpp */; }; - FFFF2e0082687f922e008268 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0082687f922e008268 /* Cooking.cpp */; }; - FFFF2e0082d07f922e0082d0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0082d07f922e0082d0 /* CookingUtils.cpp */; }; - FFFF2e0083387f922e008338 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0083387f922e008338 /* EdgeList.cpp */; }; - FFFF2e0083a07f922e0083a0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0083a07f922e0083a0 /* MeshCleaner.cpp */; }; - FFFF2e0084087f922e008408 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0084087f922e008408 /* Quantizer.cpp */; }; - FFFF2e0086e07f922e0086e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0086e07f922e0086e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; - FFFF2e0087487f922e008748 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0087487f922e008748 /* mesh/HeightFieldCooking.cpp */; }; - FFFF2e0087b07f922e0087b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0087b07f922e0087b0 /* mesh/RTreeCooking.cpp */; }; - FFFF2e0088187f922e008818 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e0088187f922e008818 /* mesh/TriangleMeshBuilder.cpp */; }; - FFFF2e008a887f922e008a88 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e008a887f922e008a88 /* convex/BigConvexDataBuilder.cpp */; }; - FFFF2e008af07f922e008af0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e008af07f922e008af0 /* convex/ConvexHullBuilder.cpp */; }; - FFFF2e008b587f922e008b58 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e008b587f922e008b58 /* convex/ConvexHullLib.cpp */; }; - FFFF2e008bc07f922e008bc0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e008bc07f922e008bc0 /* convex/ConvexHullUtils.cpp */; }; - FFFF2e008c287f922e008c28 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e008c287f922e008c28 /* convex/ConvexMeshBuilder.cpp */; }; - FFFF2e008c907f922e008c90 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e008c907f922e008c90 /* convex/ConvexPolygonsBuilder.cpp */; }; - FFFF2e008cf87f922e008cf8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e008cf87f922e008cf8 /* convex/InflationConvexHullLib.cpp */; }; - FFFF2e008d607f922e008d60 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e008d607f922e008d60 /* convex/QuickHullConvexHullLib.cpp */; }; - FFFF2e008dc87f922e008dc8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2e008dc87f922e008dc8 /* convex/VolumeIntegration.cpp */; }; + FFFF31566e807fc331566e80 /* PhysXExtensions in Frameworks */= { isa = PBXBuildFile; fileRef = FFFD31541f407fc331541f40 /* PhysXExtensions */; }; + FFFF3284fe007fc33284fe00 /* Adjacencies.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284fe007fc33284fe00 /* Adjacencies.cpp */; }; + FFFF3284fe687fc33284fe68 /* Cooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284fe687fc33284fe68 /* Cooking.cpp */; }; + FFFF3284fed07fc33284fed0 /* CookingUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284fed07fc33284fed0 /* CookingUtils.cpp */; }; + FFFF3284ff387fc33284ff38 /* EdgeList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284ff387fc33284ff38 /* EdgeList.cpp */; }; + FFFF3284ffa07fc33284ffa0 /* MeshCleaner.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3284ffa07fc33284ffa0 /* MeshCleaner.cpp */; }; + FFFF328500087fc332850008 /* Quantizer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328500087fc332850008 /* Quantizer.cpp */; }; + FFFF328502e07fc3328502e0 /* mesh/GrbTriangleMeshCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328502e07fc3328502e0 /* mesh/GrbTriangleMeshCooking.cpp */; }; + FFFF328503487fc332850348 /* mesh/HeightFieldCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328503487fc332850348 /* mesh/HeightFieldCooking.cpp */; }; + FFFF328503b07fc3328503b0 /* mesh/RTreeCooking.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328503b07fc3328503b0 /* mesh/RTreeCooking.cpp */; }; + FFFF328504187fc332850418 /* mesh/TriangleMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328504187fc332850418 /* mesh/TriangleMeshBuilder.cpp */; }; + FFFF328506887fc332850688 /* convex/BigConvexDataBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328506887fc332850688 /* convex/BigConvexDataBuilder.cpp */; }; + FFFF328506f07fc3328506f0 /* convex/ConvexHullBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328506f07fc3328506f0 /* convex/ConvexHullBuilder.cpp */; }; + FFFF328507587fc332850758 /* convex/ConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328507587fc332850758 /* convex/ConvexHullLib.cpp */; }; + FFFF328507c07fc3328507c0 /* convex/ConvexHullUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328507c07fc3328507c0 /* convex/ConvexHullUtils.cpp */; }; + FFFF328508287fc332850828 /* convex/ConvexMeshBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328508287fc332850828 /* convex/ConvexMeshBuilder.cpp */; }; + FFFF328508907fc332850890 /* convex/ConvexPolygonsBuilder.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328508907fc332850890 /* convex/ConvexPolygonsBuilder.cpp */; }; + FFFF328508f87fc3328508f8 /* convex/InflationConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328508f87fc3328508f8 /* convex/InflationConvexHullLib.cpp */; }; + FFFF328509607fc332850960 /* convex/QuickHullConvexHullLib.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328509607fc332850960 /* convex/QuickHullConvexHullLib.cpp */; }; + FFFF328509c87fc3328509c8 /* convex/VolumeIntegration.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD328509c87fc3328509c8 /* convex/VolumeIntegration.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2dd04ea07f922dd04ea0 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2dd07d007f922dd07d00 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2dd07d687f922dd07d68 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2dd07dd07f922dd07dd0 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2dd07e387f922dd07e38 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD2dd07ea07f922dd07ea0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2dd07f087f922dd07f08 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2dd07f707f922dd07f70 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0082007f922e008200 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0082687f922e008268 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0082d07f922e0082d0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0083387f922e008338 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0083a07f922e0083a0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0084087f922e008408 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0084707f922e008470 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0084d87f922e0084d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0085407f922e008540 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0085a87f922e0085a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0086107f922e008610 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0086787f922e008678 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0086e07f922e0086e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0087487f922e008748 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0087b07f922e0087b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0088187f922e008818 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e0088807f922e008880 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0088e87f922e0088e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0089507f922e008950 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0089b87f922e0089b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e008a207f922e008a20 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e008a887f922e008a88 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e008af07f922e008af0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e008b587f922e008b58 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e008bc07f922e008bc0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e008c287f922e008c28 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e008c907f922e008c90 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e008cf87f922e008cf8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e008d607f922e008d60 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e008dc87f922e008dc8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2e008e307f922e008e30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e008e987f922e008e98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e008f007f922e008f00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e008f687f922e008f68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e008fd07f922e008fd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0090387f922e009038 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0090a07f922e0090a0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0091087f922e009108 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; - FFFD2e0091707f922e009170 /* convex/VolumeIntegration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.h"; path = "../../PhysXCooking/src/convex/VolumeIntegration.h"; sourceTree = SOURCE_ROOT; }; + FFFD3155d7107fc33155d710 /* PhysXCooking */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCooking"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD315678107fc331567810 /* PxBVH33MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH33MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH33MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD315678787fc331567878 /* PxBVH34MidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBVH34MidphaseDesc.h"; path = "../../../Include/cooking/PxBVH34MidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD315678e07fc3315678e0 /* PxConvexMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxConvexMeshDesc.h"; path = "../../../Include/cooking/PxConvexMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD315679487fc331567948 /* PxCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCooking.h"; path = "../../../Include/cooking/PxCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD315679b07fc3315679b0 /* PxMidphaseDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMidphaseDesc.h"; path = "../../../Include/cooking/PxMidphaseDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD31567a187fc331567a18 /* PxTriangleMeshDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTriangleMeshDesc.h"; path = "../../../Include/cooking/PxTriangleMeshDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD31567a807fc331567a80 /* Pxc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Pxc.h"; path = "../../../Include/cooking/Pxc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3284fe007fc33284fe00 /* Adjacencies.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.cpp"; path = "../../PhysXCooking/src/Adjacencies.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284fe687fc33284fe68 /* Cooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.cpp"; path = "../../PhysXCooking/src/Cooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284fed07fc33284fed0 /* CookingUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.cpp"; path = "../../PhysXCooking/src/CookingUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284ff387fc33284ff38 /* EdgeList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.cpp"; path = "../../PhysXCooking/src/EdgeList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3284ffa07fc33284ffa0 /* MeshCleaner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.cpp"; path = "../../PhysXCooking/src/MeshCleaner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328500087fc332850008 /* Quantizer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.cpp"; path = "../../PhysXCooking/src/Quantizer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328500707fc332850070 /* Adjacencies.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Adjacencies.h"; path = "../../PhysXCooking/src/Adjacencies.h"; sourceTree = SOURCE_ROOT; }; + FFFD328500d87fc3328500d8 /* Cooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cooking.h"; path = "../../PhysXCooking/src/Cooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD328501407fc332850140 /* CookingUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "CookingUtils.h"; path = "../../PhysXCooking/src/CookingUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD328501a87fc3328501a8 /* EdgeList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "EdgeList.h"; path = "../../PhysXCooking/src/EdgeList.h"; sourceTree = SOURCE_ROOT; }; + FFFD328502107fc332850210 /* MeshCleaner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MeshCleaner.h"; path = "../../PhysXCooking/src/MeshCleaner.h"; sourceTree = SOURCE_ROOT; }; + FFFD328502787fc332850278 /* Quantizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Quantizer.h"; path = "../../PhysXCooking/src/Quantizer.h"; sourceTree = SOURCE_ROOT; }; + FFFD328502e07fc3328502e0 /* mesh/GrbTriangleMeshCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.cpp"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328503487fc332850348 /* mesh/HeightFieldCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.cpp"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328503b07fc3328503b0 /* mesh/RTreeCooking.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.cpp"; path = "../../PhysXCooking/src/mesh/RTreeCooking.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328504187fc332850418 /* mesh/TriangleMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.cpp"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328504807fc332850480 /* mesh/GrbTriangleMeshCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/GrbTriangleMeshCooking.h"; path = "../../PhysXCooking/src/mesh/GrbTriangleMeshCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD328504e87fc3328504e8 /* mesh/HeightFieldCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/HeightFieldCooking.h"; path = "../../PhysXCooking/src/mesh/HeightFieldCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD328505507fc332850550 /* mesh/QuickSelect.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/QuickSelect.h"; path = "../../PhysXCooking/src/mesh/QuickSelect.h"; sourceTree = SOURCE_ROOT; }; + FFFD328505b87fc3328505b8 /* mesh/RTreeCooking.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/RTreeCooking.h"; path = "../../PhysXCooking/src/mesh/RTreeCooking.h"; sourceTree = SOURCE_ROOT; }; + FFFD328506207fc332850620 /* mesh/TriangleMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "mesh/TriangleMeshBuilder.h"; path = "../../PhysXCooking/src/mesh/TriangleMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD328506887fc332850688 /* convex/BigConvexDataBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.cpp"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328506f07fc3328506f0 /* convex/ConvexHullBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328507587fc332850758 /* convex/ConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328507c07fc3328507c0 /* convex/ConvexHullUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.cpp"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328508287fc332850828 /* convex/ConvexMeshBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328508907fc332850890 /* convex/ConvexPolygonsBuilder.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.cpp"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328508f87fc3328508f8 /* convex/InflationConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328509607fc332850960 /* convex/QuickHullConvexHullLib.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.cpp"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD328509c87fc3328509c8 /* convex/VolumeIntegration.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/VolumeIntegration.cpp"; path = "../../PhysXCooking/src/convex/VolumeIntegration.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD32850a307fc332850a30 /* convex/BigConvexDataBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/BigConvexDataBuilder.h"; path = "../../PhysXCooking/src/convex/BigConvexDataBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD32850a987fc332850a98 /* convex/ConvexHullBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexHullBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD32850b007fc332850b00 /* convex/ConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullLib.h"; path = "../../PhysXCooking/src/convex/ConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD32850b687fc332850b68 /* convex/ConvexHullUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexHullUtils.h"; path = "../../PhysXCooking/src/convex/ConvexHullUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD32850bd07fc332850bd0 /* convex/ConvexMeshBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexMeshBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexMeshBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD32850c387fc332850c38 /* convex/ConvexPolygonsBuilder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/ConvexPolygonsBuilder.h"; path = "../../PhysXCooking/src/convex/ConvexPolygonsBuilder.h"; sourceTree = SOURCE_ROOT; }; + FFFD32850ca07fc332850ca0 /* convex/InflationConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/InflationConvexHullLib.h"; path = "../../PhysXCooking/src/convex/InflationConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD32850d087fc332850d08 /* convex/QuickHullConvexHullLib.h */= { isa = PBXFileReference; fileEncoding = 4; name = "convex/QuickHullConvexHullLib.h"; path = "../../PhysXCooking/src/convex/QuickHullConvexHullLib.h"; sourceTree = SOURCE_ROOT; }; + FFFD32850d707fc332850d70 /* 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 */ - FFF22dd04ea07f922dd04ea0 /* Resources */ = { + FFF23155d7107fc33155d710 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -1282,7 +1282,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2dd04ea07f922dd04ea0 /* Frameworks */ = { + FFFC3155d7107fc33155d710 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1292,29 +1292,29 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82dd04ea07f922dd04ea0 /* Sources */ = { + FFF83155d7107fc33155d710 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2e0082007f922e008200, - FFFF2e0082687f922e008268, - FFFF2e0082d07f922e0082d0, - FFFF2e0083387f922e008338, - FFFF2e0083a07f922e0083a0, - FFFF2e0084087f922e008408, - FFFF2e0086e07f922e0086e0, - FFFF2e0087487f922e008748, - FFFF2e0087b07f922e0087b0, - FFFF2e0088187f922e008818, - FFFF2e008a887f922e008a88, - FFFF2e008af07f922e008af0, - FFFF2e008b587f922e008b58, - FFFF2e008bc07f922e008bc0, - FFFF2e008c287f922e008c28, - FFFF2e008c907f922e008c90, - FFFF2e008cf87f922e008cf8, - FFFF2e008d607f922e008d60, - FFFF2e008dc87f922e008dc8, + FFFF3284fe007fc33284fe00, + FFFF3284fe687fc33284fe68, + FFFF3284fed07fc33284fed0, + FFFF3284ff387fc33284ff38, + FFFF3284ffa07fc33284ffa0, + FFFF328500087fc332850008, + FFFF328502e07fc3328502e0, + FFFF328503487fc332850348, + FFFF328503b07fc3328503b0, + FFFF328504187fc332850418, + FFFF328506887fc332850688, + FFFF328506f07fc3328506f0, + FFFF328507587fc332850758, + FFFF328507c07fc3328507c0, + FFFF328508287fc332850828, + FFFF328508907fc332850890, + FFFF328508f87fc3328508f8, + FFFF328509607fc332850960, + FFFF328509c87fc3328509c8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1323,515 +1323,515 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF42dd055a07f922dd055a0 /* PBXTargetDependency */ = { + FFF431566f607fc331566f60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2c13c0507f922c13c050 /* PhysXCommon */; - targetProxy = FFF52c13c0507f922c13c050 /* PBXContainerItemProxy */; + target = FFFA315178207fc331517820 /* PhysXCommon */; + targetProxy = FFF5315178207fc331517820 /* PBXContainerItemProxy */; }; - FFF42dd085907f922dd08590 /* PBXTargetDependency */ = { + FFF431566e807fc331566e80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2dc036207f922dc03620 /* PhysXExtensions */; - targetProxy = FFF52dc036207f922dc03620 /* PBXContainerItemProxy */; + target = FFFA31541f407fc331541f40 /* PhysXExtensions */; + targetProxy = FFF531541f407fc331541f40 /* PBXContainerItemProxy */; }; - FFF42dd037507f922dd03750 /* PBXTargetDependency */ = { + FFF4315626907fc331562690 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2c1587607f922c158760 /* PxFoundation */; - targetProxy = FFF52c1587607f922c158760 /* PBXContainerItemProxy */; + target = FFFA315044907fc331504490 /* PxFoundation */; + targetProxy = FFF5315044907fc331504490 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PhysXCommon */ - FFFF2b9a6a007f922b9a6a00 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2b9a6a007f922b9a6a00 /* src/CmBoxPruning.cpp */; }; - FFFF2b9a6a687f922b9a6a68 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2b9a6a687f922b9a6a68 /* src/CmCollection.cpp */; }; - FFFF2b9a6ad07f922b9a6ad0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2b9a6ad07f922b9a6ad0 /* src/CmMathUtils.cpp */; }; - FFFF2b9a6b387f922b9a6b38 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2b9a6b387f922b9a6b38 /* src/CmPtrTable.cpp */; }; - FFFF2b9a6ba07f922b9a6ba0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2b9a6ba07f922b9a6ba0 /* src/CmRadixSort.cpp */; }; - FFFF2b9a6c087f922b9a6c08 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2b9a6c087f922b9a6c08 /* src/CmRadixSortBuffered.cpp */; }; - FFFF2b9a6c707f922b9a6c70 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2b9a6c707f922b9a6c70 /* src/CmRenderOutput.cpp */; }; - FFFF2b9a6cd87f922b9a6cd8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD2b9a6cd87f922b9a6cd8 /* src/CmVisualization.cpp */; }; - FFFF2c8013a87f922c8013a8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8013a87f922c8013a8 /* ../../Include/GeomUtils */; }; - FFFF2c8048e07f922c8048e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8048e07f922c8048e0 /* src/GuBounds.cpp */; }; - FFFF2c8049487f922c804948 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8049487f922c804948 /* src/GuBox.cpp */; }; - FFFF2c8049b07f922c8049b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8049b07f922c8049b0 /* src/GuCCTSweepTests.cpp */; }; - FFFF2c804a187f922c804a18 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c804a187f922c804a18 /* src/GuCapsule.cpp */; }; - FFFF2c804a807f922c804a80 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c804a807f922c804a80 /* src/GuGeometryQuery.cpp */; }; - FFFF2c804ae87f922c804ae8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c804ae87f922c804ae8 /* src/GuGeometryUnion.cpp */; }; - FFFF2c804b507f922c804b50 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c804b507f922c804b50 /* src/GuInternal.cpp */; }; - FFFF2c804bb87f922c804bb8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c804bb87f922c804bb8 /* src/GuMTD.cpp */; }; - FFFF2c804c207f922c804c20 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c804c207f922c804c20 /* src/GuMeshFactory.cpp */; }; - FFFF2c804c887f922c804c88 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c804c887f922c804c88 /* src/GuMetaData.cpp */; }; - FFFF2c804cf07f922c804cf0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c804cf07f922c804cf0 /* src/GuOverlapTests.cpp */; }; - FFFF2c804d587f922c804d58 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c804d587f922c804d58 /* src/GuRaycastTests.cpp */; }; - FFFF2c804dc07f922c804dc0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c804dc07f922c804dc0 /* src/GuSerialize.cpp */; }; - FFFF2c804e287f922c804e28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c804e287f922c804e28 /* src/GuSweepMTD.cpp */; }; - FFFF2c804e907f922c804e90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c804e907f922c804e90 /* src/GuSweepSharedTests.cpp */; }; - FFFF2c804ef87f922c804ef8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c804ef87f922c804ef8 /* src/GuSweepTests.cpp */; }; - FFFF2c804f607f922c804f60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c804f607f922c804f60 /* src/contact/GuContactBoxBox.cpp */; }; - FFFF2c804fc87f922c804fc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c804fc87f922c804fc8 /* src/contact/GuContactCapsuleBox.cpp */; }; - FFFF2c8050307f922c805030 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8050307f922c805030 /* src/contact/GuContactCapsuleCapsule.cpp */; }; - FFFF2c8050987f922c805098 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8050987f922c805098 /* src/contact/GuContactCapsuleConvex.cpp */; }; - FFFF2c8051007f922c805100 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8051007f922c805100 /* src/contact/GuContactCapsuleMesh.cpp */; }; - FFFF2c8051687f922c805168 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8051687f922c805168 /* src/contact/GuContactConvexConvex.cpp */; }; - FFFF2c8051d07f922c8051d0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8051d07f922c8051d0 /* src/contact/GuContactConvexMesh.cpp */; }; - FFFF2c8052387f922c805238 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8052387f922c805238 /* src/contact/GuContactPlaneBox.cpp */; }; - FFFF2c8052a07f922c8052a0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8052a07f922c8052a0 /* src/contact/GuContactPlaneCapsule.cpp */; }; - FFFF2c8053087f922c805308 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8053087f922c805308 /* src/contact/GuContactPlaneConvex.cpp */; }; - FFFF2c8053707f922c805370 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8053707f922c805370 /* src/contact/GuContactPolygonPolygon.cpp */; }; - FFFF2c8053d87f922c8053d8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8053d87f922c8053d8 /* src/contact/GuContactSphereBox.cpp */; }; - FFFF2c8054407f922c805440 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8054407f922c805440 /* src/contact/GuContactSphereCapsule.cpp */; }; - FFFF2c8054a87f922c8054a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8054a87f922c8054a8 /* src/contact/GuContactSphereMesh.cpp */; }; - FFFF2c8055107f922c805510 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8055107f922c805510 /* src/contact/GuContactSpherePlane.cpp */; }; - FFFF2c8055787f922c805578 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8055787f922c805578 /* src/contact/GuContactSphereSphere.cpp */; }; - FFFF2c8055e07f922c8055e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8055e07f922c8055e0 /* src/contact/GuFeatureCode.cpp */; }; - FFFF2c8056487f922c805648 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8056487f922c805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; - FFFF2c8056b07f922c8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8056b07f922c8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; - FFFF2c8057187f922c805718 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8057187f922c805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; - FFFF2c8057807f922c805780 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8057807f922c805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; - FFFF2c8057e87f922c8057e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8057e87f922c8057e8 /* src/common/GuBarycentricCoordinates.cpp */; }; - FFFF2c8058507f922c805850 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8058507f922c805850 /* src/common/GuSeparatingAxes.cpp */; }; - FFFF2c8058b87f922c8058b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8058b87f922c8058b8 /* src/convex/GuBigConvexData.cpp */; }; - FFFF2c8059207f922c805920 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8059207f922c805920 /* src/convex/GuConvexHelper.cpp */; }; - FFFF2c8059887f922c805988 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8059887f922c805988 /* src/convex/GuConvexMesh.cpp */; }; - FFFF2c8059f07f922c8059f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8059f07f922c8059f0 /* src/convex/GuConvexSupportTable.cpp */; }; - FFFF2c805a587f922c805a58 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c805a587f922c805a58 /* src/convex/GuConvexUtilsInternal.cpp */; }; - FFFF2c805ac07f922c805ac0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c805ac07f922c805ac0 /* src/convex/GuHillClimbing.cpp */; }; - FFFF2c805b287f922c805b28 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c805b287f922c805b28 /* src/convex/GuShapeConvex.cpp */; }; - FFFF2c805b907f922c805b90 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c805b907f922c805b90 /* src/distance/GuDistancePointBox.cpp */; }; - FFFF2c805bf87f922c805bf8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c805bf87f922c805bf8 /* src/distance/GuDistancePointTriangle.cpp */; }; - FFFF2c805c607f922c805c60 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c805c607f922c805c60 /* src/distance/GuDistanceSegmentBox.cpp */; }; - FFFF2c805cc87f922c805cc8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c805cc87f922c805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; - FFFF2c805d307f922c805d30 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c805d307f922c805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; - FFFF2c805d987f922c805d98 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c805d987f922c805d98 /* src/sweep/GuSweepBoxBox.cpp */; }; - FFFF2c805e007f922c805e00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c805e007f922c805e00 /* src/sweep/GuSweepBoxSphere.cpp */; }; - FFFF2c805e687f922c805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c805e687f922c805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; - FFFF2c805ed07f922c805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c805ed07f922c805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; - FFFF2c805f387f922c805f38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c805f387f922c805f38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; - FFFF2c805fa07f922c805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c805fa07f922c805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; - FFFF2c8060087f922c806008 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8060087f922c806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; - FFFF2c8060707f922c806070 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8060707f922c806070 /* src/sweep/GuSweepSphereCapsule.cpp */; }; - FFFF2c8060d87f922c8060d8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8060d87f922c8060d8 /* src/sweep/GuSweepSphereSphere.cpp */; }; - FFFF2c8061407f922c806140 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8061407f922c806140 /* src/sweep/GuSweepSphereTriangle.cpp */; }; - FFFF2c8061a87f922c8061a8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8061a87f922c8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; - FFFF2c8062107f922c806210 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8062107f922c806210 /* src/gjk/GuEPA.cpp */; }; - FFFF2c8062787f922c806278 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8062787f922c806278 /* src/gjk/GuGJKSimplex.cpp */; }; - FFFF2c8062e07f922c8062e0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8062e07f922c8062e0 /* src/gjk/GuGJKTest.cpp */; }; - FFFF2c8063487f922c806348 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8063487f922c806348 /* src/intersection/GuIntersectionBoxBox.cpp */; }; - FFFF2c8063b07f922c8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8063b07f922c8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; - FFFF2c8064187f922c806418 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8064187f922c806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; - FFFF2c8064807f922c806480 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8064807f922c806480 /* src/intersection/GuIntersectionRayBox.cpp */; }; - FFFF2c8064e87f922c8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8064e87f922c8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; - FFFF2c8065507f922c806550 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8065507f922c806550 /* src/intersection/GuIntersectionRaySphere.cpp */; }; - FFFF2c8065b87f922c8065b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8065b87f922c8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; - FFFF2c8066207f922c806620 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8066207f922c806620 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; - FFFF2c8066887f922c806688 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8066887f922c806688 /* src/mesh/GuBV32.cpp */; }; - FFFF2c8066f07f922c8066f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8066f07f922c8066f0 /* src/mesh/GuBV32Build.cpp */; }; - FFFF2c8067587f922c806758 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8067587f922c806758 /* src/mesh/GuBV4.cpp */; }; - FFFF2c8067c07f922c8067c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8067c07f922c8067c0 /* src/mesh/GuBV4Build.cpp */; }; - FFFF2c8068287f922c806828 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8068287f922c806828 /* src/mesh/GuBV4_AABBSweep.cpp */; }; - FFFF2c8068907f922c806890 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8068907f922c806890 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; - FFFF2c8068f87f922c8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8068f87f922c8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; - FFFF2c8069607f922c806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8069607f922c806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; - FFFF2c8069c87f922c8069c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8069c87f922c8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; - FFFF2c806a307f922c806a30 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c806a307f922c806a30 /* src/mesh/GuBV4_Raycast.cpp */; }; - FFFF2c806a987f922c806a98 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c806a987f922c806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; - FFFF2c806b007f922c806b00 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c806b007f922c806b00 /* src/mesh/GuBV4_SphereSweep.cpp */; }; - FFFF2c806b687f922c806b68 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c806b687f922c806b68 /* src/mesh/GuMeshQuery.cpp */; }; - FFFF2c806bd07f922c806bd0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c806bd07f922c806bd0 /* src/mesh/GuMidphaseBV4.cpp */; }; - FFFF2c806c387f922c806c38 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c806c387f922c806c38 /* src/mesh/GuMidphaseRTree.cpp */; }; - FFFF2c806ca07f922c806ca0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c806ca07f922c806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; - FFFF2c806d087f922c806d08 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c806d087f922c806d08 /* src/mesh/GuRTree.cpp */; }; - FFFF2c806d707f922c806d70 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c806d707f922c806d70 /* src/mesh/GuRTreeQueries.cpp */; }; - FFFF2c806dd87f922c806dd8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c806dd87f922c806dd8 /* src/mesh/GuSweepsMesh.cpp */; }; - FFFF2c806e407f922c806e40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c806e407f922c806e40 /* src/mesh/GuTriangleMesh.cpp */; }; - FFFF2c806ea87f922c806ea8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c806ea87f922c806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; - FFFF2c806f107f922c806f10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c806f107f922c806f10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; - FFFF2c806f787f922c806f78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c806f787f922c806f78 /* src/hf/GuHeightField.cpp */; }; - FFFF2c806fe07f922c806fe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c806fe07f922c806fe0 /* src/hf/GuHeightFieldUtil.cpp */; }; - FFFF2c8070487f922c807048 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8070487f922c807048 /* src/hf/GuOverlapTestsHF.cpp */; }; - FFFF2c8070b07f922c8070b0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8070b07f922c8070b0 /* src/hf/GuSweepsHF.cpp */; }; - FFFF2c8071187f922c807118 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8071187f922c807118 /* src/pcm/GuPCMContactBoxBox.cpp */; }; - FFFF2c8071807f922c807180 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8071807f922c807180 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; - FFFF2c8071e87f922c8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8071e87f922c8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; - FFFF2c8072507f922c807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8072507f922c807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; - FFFF2c8072b87f922c8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8072b87f922c8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; - FFFF2c8073207f922c807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8073207f922c807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; - FFFF2c8073887f922c807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8073887f922c807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; - FFFF2c8073f07f922c8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8073f07f922c8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; - FFFF2c8074587f922c807458 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8074587f922c807458 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; - FFFF2c8074c07f922c8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8074c07f922c8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; - FFFF2c8075287f922c807528 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8075287f922c807528 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; - FFFF2c8075907f922c807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8075907f922c807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; - FFFF2c8075f87f922c8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8075f87f922c8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; - FFFF2c8076607f922c807660 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8076607f922c807660 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; - FFFF2c8076c87f922c8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8076c87f922c8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; - FFFF2c8077307f922c807730 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8077307f922c807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; - FFFF2c8077987f922c807798 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8077987f922c807798 /* src/pcm/GuPCMContactSphereBox.cpp */; }; - FFFF2c8078007f922c807800 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8078007f922c807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; - FFFF2c8078687f922c807868 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8078687f922c807868 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; - FFFF2c8078d07f922c8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8078d07f922c8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; - FFFF2c8079387f922c807938 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8079387f922c807938 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; - FFFF2c8079a07f922c8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c8079a07f922c8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; - FFFF2c807a087f922c807a08 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c807a087f922c807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; - FFFF2c807a707f922c807a70 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c807a707f922c807a70 /* src/pcm/GuPCMShapeConvex.cpp */; }; - FFFF2c807ad87f922c807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c807ad87f922c807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; - FFFF2c807b407f922c807b40 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c807b407f922c807b40 /* src/pcm/GuPersistentContactManifold.cpp */; }; - FFFF2c807ba87f922c807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c807ba87f922c807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; - FFFF2c807c107f922c807c10 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD2c807c107f922c807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; + FFFF3281f8007fc33281f800 /* src/CmBoxPruning.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3281f8007fc33281f800 /* src/CmBoxPruning.cpp */; }; + FFFF3281f8687fc33281f868 /* src/CmCollection.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3281f8687fc33281f868 /* src/CmCollection.cpp */; }; + FFFF3281f8d07fc33281f8d0 /* src/CmMathUtils.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3281f8d07fc33281f8d0 /* src/CmMathUtils.cpp */; }; + FFFF3281f9387fc33281f938 /* src/CmPtrTable.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3281f9387fc33281f938 /* src/CmPtrTable.cpp */; }; + FFFF3281f9a07fc33281f9a0 /* src/CmRadixSort.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3281f9a07fc33281f9a0 /* src/CmRadixSort.cpp */; }; + FFFF3281fa087fc33281fa08 /* src/CmRadixSortBuffered.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3281fa087fc33281fa08 /* src/CmRadixSortBuffered.cpp */; }; + FFFF3281fa707fc33281fa70 /* src/CmRenderOutput.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3281fa707fc33281fa70 /* src/CmRenderOutput.cpp */; }; + FFFF3281fad87fc33281fad8 /* src/CmVisualization.cpp in common */= { isa = PBXBuildFile; fileRef = FFFD3281fad87fc33281fad8 /* src/CmVisualization.cpp */; }; + FFFF31806fa87fc331806fa8 /* ../../Include/GeomUtils in geomutils */= { isa = PBXBuildFile; fileRef = FFFD31806fa87fc331806fa8 /* ../../Include/GeomUtils */; }; + FFFF3180a4e07fc33180a4e0 /* src/GuBounds.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180a4e07fc33180a4e0 /* src/GuBounds.cpp */; }; + FFFF3180a5487fc33180a548 /* src/GuBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180a5487fc33180a548 /* src/GuBox.cpp */; }; + FFFF3180a5b07fc33180a5b0 /* src/GuCCTSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180a5b07fc33180a5b0 /* src/GuCCTSweepTests.cpp */; }; + FFFF3180a6187fc33180a618 /* src/GuCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180a6187fc33180a618 /* src/GuCapsule.cpp */; }; + FFFF3180a6807fc33180a680 /* src/GuGeometryQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180a6807fc33180a680 /* src/GuGeometryQuery.cpp */; }; + FFFF3180a6e87fc33180a6e8 /* src/GuGeometryUnion.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180a6e87fc33180a6e8 /* src/GuGeometryUnion.cpp */; }; + FFFF3180a7507fc33180a750 /* src/GuInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180a7507fc33180a750 /* src/GuInternal.cpp */; }; + FFFF3180a7b87fc33180a7b8 /* src/GuMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180a7b87fc33180a7b8 /* src/GuMTD.cpp */; }; + FFFF3180a8207fc33180a820 /* src/GuMeshFactory.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180a8207fc33180a820 /* src/GuMeshFactory.cpp */; }; + FFFF3180a8887fc33180a888 /* src/GuMetaData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180a8887fc33180a888 /* src/GuMetaData.cpp */; }; + FFFF3180a8f07fc33180a8f0 /* src/GuOverlapTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180a8f07fc33180a8f0 /* src/GuOverlapTests.cpp */; }; + FFFF3180a9587fc33180a958 /* src/GuRaycastTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180a9587fc33180a958 /* src/GuRaycastTests.cpp */; }; + FFFF3180a9c07fc33180a9c0 /* src/GuSerialize.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180a9c07fc33180a9c0 /* src/GuSerialize.cpp */; }; + FFFF3180aa287fc33180aa28 /* src/GuSweepMTD.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180aa287fc33180aa28 /* src/GuSweepMTD.cpp */; }; + FFFF3180aa907fc33180aa90 /* src/GuSweepSharedTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180aa907fc33180aa90 /* src/GuSweepSharedTests.cpp */; }; + FFFF3180aaf87fc33180aaf8 /* src/GuSweepTests.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180aaf87fc33180aaf8 /* src/GuSweepTests.cpp */; }; + FFFF3180ab607fc33180ab60 /* src/contact/GuContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180ab607fc33180ab60 /* src/contact/GuContactBoxBox.cpp */; }; + FFFF3180abc87fc33180abc8 /* src/contact/GuContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180abc87fc33180abc8 /* src/contact/GuContactCapsuleBox.cpp */; }; + FFFF3180ac307fc33180ac30 /* src/contact/GuContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180ac307fc33180ac30 /* src/contact/GuContactCapsuleCapsule.cpp */; }; + FFFF3180ac987fc33180ac98 /* src/contact/GuContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180ac987fc33180ac98 /* src/contact/GuContactCapsuleConvex.cpp */; }; + FFFF3180ad007fc33180ad00 /* src/contact/GuContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180ad007fc33180ad00 /* src/contact/GuContactCapsuleMesh.cpp */; }; + FFFF3180ad687fc33180ad68 /* src/contact/GuContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180ad687fc33180ad68 /* src/contact/GuContactConvexConvex.cpp */; }; + FFFF3180add07fc33180add0 /* src/contact/GuContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180add07fc33180add0 /* src/contact/GuContactConvexMesh.cpp */; }; + FFFF3180ae387fc33180ae38 /* src/contact/GuContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180ae387fc33180ae38 /* src/contact/GuContactPlaneBox.cpp */; }; + FFFF3180aea07fc33180aea0 /* src/contact/GuContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180aea07fc33180aea0 /* src/contact/GuContactPlaneCapsule.cpp */; }; + FFFF3180af087fc33180af08 /* src/contact/GuContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180af087fc33180af08 /* src/contact/GuContactPlaneConvex.cpp */; }; + FFFF3180af707fc33180af70 /* src/contact/GuContactPolygonPolygon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180af707fc33180af70 /* src/contact/GuContactPolygonPolygon.cpp */; }; + FFFF3180afd87fc33180afd8 /* src/contact/GuContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180afd87fc33180afd8 /* src/contact/GuContactSphereBox.cpp */; }; + FFFF3180b0407fc33180b040 /* src/contact/GuContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b0407fc33180b040 /* src/contact/GuContactSphereCapsule.cpp */; }; + FFFF3180b0a87fc33180b0a8 /* src/contact/GuContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b0a87fc33180b0a8 /* src/contact/GuContactSphereMesh.cpp */; }; + FFFF3180b1107fc33180b110 /* src/contact/GuContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b1107fc33180b110 /* src/contact/GuContactSpherePlane.cpp */; }; + FFFF3180b1787fc33180b178 /* src/contact/GuContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b1787fc33180b178 /* src/contact/GuContactSphereSphere.cpp */; }; + FFFF3180b1e07fc33180b1e0 /* src/contact/GuFeatureCode.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b1e07fc33180b1e0 /* src/contact/GuFeatureCode.cpp */; }; + FFFF3180b2487fc33180b248 /* src/contact/GuLegacyContactBoxHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b2487fc33180b248 /* src/contact/GuLegacyContactBoxHeightField.cpp */; }; + FFFF3180b2b07fc33180b2b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b2b07fc33180b2b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */; }; + FFFF3180b3187fc33180b318 /* src/contact/GuLegacyContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b3187fc33180b318 /* src/contact/GuLegacyContactConvexHeightField.cpp */; }; + FFFF3180b3807fc33180b380 /* src/contact/GuLegacyContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b3807fc33180b380 /* src/contact/GuLegacyContactSphereHeightField.cpp */; }; + FFFF3180b3e87fc33180b3e8 /* src/common/GuBarycentricCoordinates.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b3e87fc33180b3e8 /* src/common/GuBarycentricCoordinates.cpp */; }; + FFFF3180b4507fc33180b450 /* src/common/GuSeparatingAxes.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b4507fc33180b450 /* src/common/GuSeparatingAxes.cpp */; }; + FFFF3180b4b87fc33180b4b8 /* src/convex/GuBigConvexData.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b4b87fc33180b4b8 /* src/convex/GuBigConvexData.cpp */; }; + FFFF3180b5207fc33180b520 /* src/convex/GuConvexHelper.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b5207fc33180b520 /* src/convex/GuConvexHelper.cpp */; }; + FFFF3180b5887fc33180b588 /* src/convex/GuConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b5887fc33180b588 /* src/convex/GuConvexMesh.cpp */; }; + FFFF3180b5f07fc33180b5f0 /* src/convex/GuConvexSupportTable.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b5f07fc33180b5f0 /* src/convex/GuConvexSupportTable.cpp */; }; + FFFF3180b6587fc33180b658 /* src/convex/GuConvexUtilsInternal.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b6587fc33180b658 /* src/convex/GuConvexUtilsInternal.cpp */; }; + FFFF3180b6c07fc33180b6c0 /* src/convex/GuHillClimbing.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b6c07fc33180b6c0 /* src/convex/GuHillClimbing.cpp */; }; + FFFF3180b7287fc33180b728 /* src/convex/GuShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b7287fc33180b728 /* src/convex/GuShapeConvex.cpp */; }; + FFFF3180b7907fc33180b790 /* src/distance/GuDistancePointBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b7907fc33180b790 /* src/distance/GuDistancePointBox.cpp */; }; + FFFF3180b7f87fc33180b7f8 /* src/distance/GuDistancePointTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b7f87fc33180b7f8 /* src/distance/GuDistancePointTriangle.cpp */; }; + FFFF3180b8607fc33180b860 /* src/distance/GuDistanceSegmentBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b8607fc33180b860 /* src/distance/GuDistanceSegmentBox.cpp */; }; + FFFF3180b8c87fc33180b8c8 /* src/distance/GuDistanceSegmentSegment.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b8c87fc33180b8c8 /* src/distance/GuDistanceSegmentSegment.cpp */; }; + FFFF3180b9307fc33180b930 /* src/distance/GuDistanceSegmentTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b9307fc33180b930 /* src/distance/GuDistanceSegmentTriangle.cpp */; }; + FFFF3180b9987fc33180b998 /* src/sweep/GuSweepBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180b9987fc33180b998 /* src/sweep/GuSweepBoxBox.cpp */; }; + FFFF3180ba007fc33180ba00 /* src/sweep/GuSweepBoxSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180ba007fc33180ba00 /* src/sweep/GuSweepBoxSphere.cpp */; }; + FFFF3180ba687fc33180ba68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180ba687fc33180ba68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */; }; + FFFF3180bad07fc33180bad0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180bad07fc33180bad0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */; }; + FFFF3180bb387fc33180bb38 /* src/sweep/GuSweepCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180bb387fc33180bb38 /* src/sweep/GuSweepCapsuleBox.cpp */; }; + FFFF3180bba07fc33180bba0 /* src/sweep/GuSweepCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180bba07fc33180bba0 /* src/sweep/GuSweepCapsuleCapsule.cpp */; }; + FFFF3180bc087fc33180bc08 /* src/sweep/GuSweepCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180bc087fc33180bc08 /* src/sweep/GuSweepCapsuleTriangle.cpp */; }; + FFFF3180bc707fc33180bc70 /* src/sweep/GuSweepSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180bc707fc33180bc70 /* src/sweep/GuSweepSphereCapsule.cpp */; }; + FFFF3180bcd87fc33180bcd8 /* src/sweep/GuSweepSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180bcd87fc33180bcd8 /* src/sweep/GuSweepSphereSphere.cpp */; }; + FFFF3180bd407fc33180bd40 /* src/sweep/GuSweepSphereTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180bd407fc33180bd40 /* src/sweep/GuSweepSphereTriangle.cpp */; }; + FFFF3180bda87fc33180bda8 /* src/sweep/GuSweepTriangleUtils.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180bda87fc33180bda8 /* src/sweep/GuSweepTriangleUtils.cpp */; }; + FFFF3180be107fc33180be10 /* src/gjk/GuEPA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180be107fc33180be10 /* src/gjk/GuEPA.cpp */; }; + FFFF3180be787fc33180be78 /* src/gjk/GuGJKSimplex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180be787fc33180be78 /* src/gjk/GuGJKSimplex.cpp */; }; + FFFF3180bee07fc33180bee0 /* src/gjk/GuGJKTest.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180bee07fc33180bee0 /* src/gjk/GuGJKTest.cpp */; }; + FFFF3180bf487fc33180bf48 /* src/intersection/GuIntersectionBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180bf487fc33180bf48 /* src/intersection/GuIntersectionBoxBox.cpp */; }; + FFFF3180bfb07fc33180bfb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180bfb07fc33180bfb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */; }; + FFFF3180c0187fc33180c018 /* src/intersection/GuIntersectionEdgeEdge.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c0187fc33180c018 /* src/intersection/GuIntersectionEdgeEdge.cpp */; }; + FFFF3180c0807fc33180c080 /* src/intersection/GuIntersectionRayBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c0807fc33180c080 /* src/intersection/GuIntersectionRayBox.cpp */; }; + FFFF3180c0e87fc33180c0e8 /* src/intersection/GuIntersectionRayCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c0e87fc33180c0e8 /* src/intersection/GuIntersectionRayCapsule.cpp */; }; + FFFF3180c1507fc33180c150 /* src/intersection/GuIntersectionRaySphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c1507fc33180c150 /* src/intersection/GuIntersectionRaySphere.cpp */; }; + FFFF3180c1b87fc33180c1b8 /* src/intersection/GuIntersectionSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c1b87fc33180c1b8 /* src/intersection/GuIntersectionSphereBox.cpp */; }; + FFFF3180c2207fc33180c220 /* src/intersection/GuIntersectionTriangleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c2207fc33180c220 /* src/intersection/GuIntersectionTriangleBox.cpp */; }; + FFFF3180c2887fc33180c288 /* src/mesh/GuBV32.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c2887fc33180c288 /* src/mesh/GuBV32.cpp */; }; + FFFF3180c2f07fc33180c2f0 /* src/mesh/GuBV32Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c2f07fc33180c2f0 /* src/mesh/GuBV32Build.cpp */; }; + FFFF3180c3587fc33180c358 /* src/mesh/GuBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c3587fc33180c358 /* src/mesh/GuBV4.cpp */; }; + FFFF3180c3c07fc33180c3c0 /* src/mesh/GuBV4Build.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c3c07fc33180c3c0 /* src/mesh/GuBV4Build.cpp */; }; + FFFF3180c4287fc33180c428 /* src/mesh/GuBV4_AABBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c4287fc33180c428 /* src/mesh/GuBV4_AABBSweep.cpp */; }; + FFFF3180c4907fc33180c490 /* src/mesh/GuBV4_BoxOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c4907fc33180c490 /* src/mesh/GuBV4_BoxOverlap.cpp */; }; + FFFF3180c4f87fc33180c4f8 /* src/mesh/GuBV4_CapsuleSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c4f87fc33180c4f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */; }; + FFFF3180c5607fc33180c560 /* src/mesh/GuBV4_CapsuleSweepAA.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c5607fc33180c560 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */; }; + FFFF3180c5c87fc33180c5c8 /* src/mesh/GuBV4_OBBSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c5c87fc33180c5c8 /* src/mesh/GuBV4_OBBSweep.cpp */; }; + FFFF3180c6307fc33180c630 /* src/mesh/GuBV4_Raycast.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c6307fc33180c630 /* src/mesh/GuBV4_Raycast.cpp */; }; + FFFF3180c6987fc33180c698 /* src/mesh/GuBV4_SphereOverlap.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c6987fc33180c698 /* src/mesh/GuBV4_SphereOverlap.cpp */; }; + FFFF3180c7007fc33180c700 /* src/mesh/GuBV4_SphereSweep.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c7007fc33180c700 /* src/mesh/GuBV4_SphereSweep.cpp */; }; + FFFF3180c7687fc33180c768 /* src/mesh/GuMeshQuery.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c7687fc33180c768 /* src/mesh/GuMeshQuery.cpp */; }; + FFFF3180c7d07fc33180c7d0 /* src/mesh/GuMidphaseBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c7d07fc33180c7d0 /* src/mesh/GuMidphaseBV4.cpp */; }; + FFFF3180c8387fc33180c838 /* src/mesh/GuMidphaseRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c8387fc33180c838 /* src/mesh/GuMidphaseRTree.cpp */; }; + FFFF3180c8a07fc33180c8a0 /* src/mesh/GuOverlapTestsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c8a07fc33180c8a0 /* src/mesh/GuOverlapTestsMesh.cpp */; }; + FFFF3180c9087fc33180c908 /* src/mesh/GuRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c9087fc33180c908 /* src/mesh/GuRTree.cpp */; }; + FFFF3180c9707fc33180c970 /* src/mesh/GuRTreeQueries.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c9707fc33180c970 /* src/mesh/GuRTreeQueries.cpp */; }; + FFFF3180c9d87fc33180c9d8 /* src/mesh/GuSweepsMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180c9d87fc33180c9d8 /* src/mesh/GuSweepsMesh.cpp */; }; + FFFF3180ca407fc33180ca40 /* src/mesh/GuTriangleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180ca407fc33180ca40 /* src/mesh/GuTriangleMesh.cpp */; }; + FFFF3180caa87fc33180caa8 /* src/mesh/GuTriangleMeshBV4.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180caa87fc33180caa8 /* src/mesh/GuTriangleMeshBV4.cpp */; }; + FFFF3180cb107fc33180cb10 /* src/mesh/GuTriangleMeshRTree.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180cb107fc33180cb10 /* src/mesh/GuTriangleMeshRTree.cpp */; }; + FFFF3180cb787fc33180cb78 /* src/hf/GuHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180cb787fc33180cb78 /* src/hf/GuHeightField.cpp */; }; + FFFF3180cbe07fc33180cbe0 /* src/hf/GuHeightFieldUtil.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180cbe07fc33180cbe0 /* src/hf/GuHeightFieldUtil.cpp */; }; + FFFF3180cc487fc33180cc48 /* src/hf/GuOverlapTestsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180cc487fc33180cc48 /* src/hf/GuOverlapTestsHF.cpp */; }; + FFFF3180ccb07fc33180ccb0 /* src/hf/GuSweepsHF.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180ccb07fc33180ccb0 /* src/hf/GuSweepsHF.cpp */; }; + FFFF3180cd187fc33180cd18 /* src/pcm/GuPCMContactBoxBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180cd187fc33180cd18 /* src/pcm/GuPCMContactBoxBox.cpp */; }; + FFFF3180cd807fc33180cd80 /* src/pcm/GuPCMContactBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180cd807fc33180cd80 /* src/pcm/GuPCMContactBoxConvex.cpp */; }; + FFFF3180cde87fc33180cde8 /* src/pcm/GuPCMContactCapsuleBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180cde87fc33180cde8 /* src/pcm/GuPCMContactCapsuleBox.cpp */; }; + FFFF3180ce507fc33180ce50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180ce507fc33180ce50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */; }; + FFFF3180ceb87fc33180ceb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180ceb87fc33180ceb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */; }; + FFFF3180cf207fc33180cf20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180cf207fc33180cf20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */; }; + FFFF3180cf887fc33180cf88 /* src/pcm/GuPCMContactCapsuleMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180cf887fc33180cf88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */; }; + FFFF3180cff07fc33180cff0 /* src/pcm/GuPCMContactConvexCommon.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180cff07fc33180cff0 /* src/pcm/GuPCMContactConvexCommon.cpp */; }; + FFFF3180d0587fc33180d058 /* src/pcm/GuPCMContactConvexConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d0587fc33180d058 /* src/pcm/GuPCMContactConvexConvex.cpp */; }; + FFFF3180d0c07fc33180d0c0 /* src/pcm/GuPCMContactConvexHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d0c07fc33180d0c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */; }; + FFFF3180d1287fc33180d128 /* src/pcm/GuPCMContactConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d1287fc33180d128 /* src/pcm/GuPCMContactConvexMesh.cpp */; }; + FFFF3180d1907fc33180d190 /* src/pcm/GuPCMContactGenBoxConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d1907fc33180d190 /* src/pcm/GuPCMContactGenBoxConvex.cpp */; }; + FFFF3180d1f87fc33180d1f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d1f87fc33180d1f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */; }; + FFFF3180d2607fc33180d260 /* src/pcm/GuPCMContactPlaneBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d2607fc33180d260 /* src/pcm/GuPCMContactPlaneBox.cpp */; }; + FFFF3180d2c87fc33180d2c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d2c87fc33180d2c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */; }; + FFFF3180d3307fc33180d330 /* src/pcm/GuPCMContactPlaneConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d3307fc33180d330 /* src/pcm/GuPCMContactPlaneConvex.cpp */; }; + FFFF3180d3987fc33180d398 /* src/pcm/GuPCMContactSphereBox.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d3987fc33180d398 /* src/pcm/GuPCMContactSphereBox.cpp */; }; + FFFF3180d4007fc33180d400 /* src/pcm/GuPCMContactSphereCapsule.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d4007fc33180d400 /* src/pcm/GuPCMContactSphereCapsule.cpp */; }; + FFFF3180d4687fc33180d468 /* src/pcm/GuPCMContactSphereConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d4687fc33180d468 /* src/pcm/GuPCMContactSphereConvex.cpp */; }; + FFFF3180d4d07fc33180d4d0 /* src/pcm/GuPCMContactSphereHeightField.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d4d07fc33180d4d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */; }; + FFFF3180d5387fc33180d538 /* src/pcm/GuPCMContactSphereMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d5387fc33180d538 /* src/pcm/GuPCMContactSphereMesh.cpp */; }; + FFFF3180d5a07fc33180d5a0 /* src/pcm/GuPCMContactSpherePlane.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d5a07fc33180d5a0 /* src/pcm/GuPCMContactSpherePlane.cpp */; }; + FFFF3180d6087fc33180d608 /* src/pcm/GuPCMContactSphereSphere.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d6087fc33180d608 /* src/pcm/GuPCMContactSphereSphere.cpp */; }; + FFFF3180d6707fc33180d670 /* src/pcm/GuPCMShapeConvex.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d6707fc33180d670 /* src/pcm/GuPCMShapeConvex.cpp */; }; + FFFF3180d6d87fc33180d6d8 /* src/pcm/GuPCMTriangleContactGen.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d6d87fc33180d6d8 /* src/pcm/GuPCMTriangleContactGen.cpp */; }; + FFFF3180d7407fc33180d740 /* src/pcm/GuPersistentContactManifold.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d7407fc33180d740 /* src/pcm/GuPersistentContactManifold.cpp */; }; + FFFF3180d7a87fc33180d7a8 /* src/ccd/GuCCDSweepConvexMesh.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d7a87fc33180d7a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */; }; + FFFF3180d8107fc33180d810 /* src/ccd/GuCCDSweepPrimitives.cpp in geomutils */= { isa = PBXBuildFile; fileRef = FFFD3180d8107fc33180d810 /* src/ccd/GuCCDSweepPrimitives.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2c13c0507f922c13c050 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c80ec007f922c80ec00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80ec687f922c80ec68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80ecd07f922c80ecd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80ed387f922c80ed38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80eda07f922c80eda0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80ee087f922c80ee08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80ee707f922c80ee70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80eed87f922c80eed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80ef407f922c80ef40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80efa87f922c80efa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f0107f922c80f010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f0787f922c80f078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f0e07f922c80f0e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f1487f922c80f148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f1b07f922c80f1b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f2187f922c80f218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f2807f922c80f280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f2e87f922c80f2e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f3507f922c80f350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f3b87f922c80f3b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f4207f922c80f420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f4887f922c80f488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f4f07f922c80f4f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f5587f922c80f558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f5c07f922c80f5c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f6287f922c80f628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f6907f922c80f690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f6f87f922c80f6f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f7607f922c80f760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f7c87f922c80f7c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f8307f922c80f830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f8987f922c80f898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c80f9007f922c80f900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a6a007f922b9a6a00 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a6a687f922b9a6a68 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a6ad07f922b9a6ad0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a6b387f922b9a6b38 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a6ba07f922b9a6ba0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a6c087f922b9a6c08 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a6c707f922b9a6c70 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a6cd87f922b9a6cd8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a6d407f922b9a6d40 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a6da87f922b9a6da8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a6e107f922b9a6e10 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a6e787f922b9a6e78 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a6ee07f922b9a6ee0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a6f487f922b9a6f48 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a6fb07f922b9a6fb0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a70187f922b9a7018 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a70807f922b9a7080 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a70e87f922b9a70e8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a71507f922b9a7150 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a71b87f922b9a71b8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a72207f922b9a7220 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a72887f922b9a7288 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a72f07f922b9a72f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a73587f922b9a7358 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a73c07f922b9a73c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a74287f922b9a7428 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a74907f922b9a7490 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a74f87f922b9a74f8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a75607f922b9a7560 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a75c87f922b9a75c8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a76307f922b9a7630 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a76987f922b9a7698 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a77007f922b9a7700 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a77687f922b9a7768 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a77d07f922b9a77d0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9a78387f922b9a7838 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8010007f922c801000 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8010687f922c801068 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8010d07f922c8010d0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8011387f922c801138 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8011a07f922c8011a0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8012087f922c801208 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8012707f922c801270 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8012d87f922c8012d8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8013407f922c801340 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8013a87f922c8013a8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; - FFFD2c8014107f922c801410 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8014787f922c801478 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8014e07f922c8014e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8015487f922c801548 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8015b07f922c8015b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8016187f922c801618 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8016807f922c801680 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8016e87f922c8016e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8017507f922c801750 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8017b87f922c8017b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8018207f922c801820 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8018887f922c801888 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8018f07f922c8018f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8019587f922c801958 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8019c07f922c8019c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c801a287f922c801a28 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c801a907f922c801a90 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c801af87f922c801af8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c801b607f922c801b60 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c801bc87f922c801bc8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c801c307f922c801c30 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c801c987f922c801c98 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c801d007f922c801d00 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c801d687f922c801d68 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c801dd07f922c801dd0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c801e387f922c801e38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c801ea07f922c801ea0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c801f087f922c801f08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c801f707f922c801f70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c801fd87f922c801fd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8020407f922c802040 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8020a87f922c8020a8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8021107f922c802110 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8021787f922c802178 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8021e07f922c8021e0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8022487f922c802248 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8022b07f922c8022b0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8023187f922c802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8023807f922c802380 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8023e87f922c8023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8024507f922c802450 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8024b87f922c8024b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8025207f922c802520 /* 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; }; - FFFD2c8025887f922c802588 /* 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; }; - FFFD2c8025f07f922c8025f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8026587f922c802658 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8026c07f922c8026c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8027287f922c802728 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8027907f922c802790 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8027f87f922c8027f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8028607f922c802860 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8028c87f922c8028c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8029307f922c802930 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8029987f922c802998 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c802a007f922c802a00 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c802a687f922c802a68 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c802ad07f922c802ad0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c802b387f922c802b38 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c802ba07f922c802ba0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c802c087f922c802c08 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c802c707f922c802c70 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c802cd87f922c802cd8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c802d407f922c802d40 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c802da87f922c802da8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c802e107f922c802e10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c802e787f922c802e78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c802ee07f922c802ee0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c802f487f922c802f48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c802fb07f922c802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8030187f922c803018 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8030807f922c803080 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8030e87f922c8030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8031507f922c803150 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8031b87f922c8031b8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8032207f922c803220 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8032887f922c803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8032f07f922c8032f0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8033587f922c803358 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8033c07f922c8033c0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8034287f922c803428 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8034907f922c803490 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8034f87f922c8034f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8035607f922c803560 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8035c87f922c8035c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8036307f922c803630 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8036987f922c803698 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8037007f922c803700 /* 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; }; - FFFD2c8037687f922c803768 /* 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; }; - FFFD2c8037d07f922c8037d0 /* 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; }; - FFFD2c8038387f922c803838 /* 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; }; - FFFD2c8038a07f922c8038a0 /* 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; }; - FFFD2c8039087f922c803908 /* 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; }; - FFFD2c8039707f922c803970 /* 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; }; - FFFD2c8039d87f922c8039d8 /* 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; }; - FFFD2c803a407f922c803a40 /* 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; }; - FFFD2c803aa87f922c803aa8 /* 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; }; - FFFD2c803b107f922c803b10 /* 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; }; - FFFD2c803b787f922c803b78 /* 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; }; - FFFD2c803be07f922c803be0 /* 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; }; - FFFD2c803c487f922c803c48 /* 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; }; - FFFD2c803cb07f922c803cb0 /* 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; }; - FFFD2c803d187f922c803d18 /* 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; }; - FFFD2c803d807f922c803d80 /* 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; }; - FFFD2c803de87f922c803de8 /* 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; }; - FFFD2c803e507f922c803e50 /* 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; }; - FFFD2c803eb87f922c803eb8 /* 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; }; - FFFD2c803f207f922c803f20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c803f887f922c803f88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c803ff07f922c803ff0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8040587f922c804058 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8040c07f922c8040c0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8041287f922c804128 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8041907f922c804190 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8041f87f922c8041f8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8042607f922c804260 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8042c87f922c8042c8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8043307f922c804330 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8043987f922c804398 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8044007f922c804400 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8044687f922c804468 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8044d07f922c8044d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8045387f922c804538 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8045a07f922c8045a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8046087f922c804608 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8046707f922c804670 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8046d87f922c8046d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8047407f922c804740 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8047a87f922c8047a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8048107f922c804810 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8048787f922c804878 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8048e07f922c8048e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8049487f922c804948 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8049b07f922c8049b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c804a187f922c804a18 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c804a807f922c804a80 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c804ae87f922c804ae8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c804b507f922c804b50 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c804bb87f922c804bb8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c804c207f922c804c20 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c804c887f922c804c88 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c804cf07f922c804cf0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c804d587f922c804d58 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c804dc07f922c804dc0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c804e287f922c804e28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c804e907f922c804e90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c804ef87f922c804ef8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c804f607f922c804f60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c804fc87f922c804fc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8050307f922c805030 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8050987f922c805098 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8051007f922c805100 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8051687f922c805168 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8051d07f922c8051d0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8052387f922c805238 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8052a07f922c8052a0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8053087f922c805308 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8053707f922c805370 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8053d87f922c8053d8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8054407f922c805440 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8054a87f922c8054a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8055107f922c805510 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8055787f922c805578 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8055e07f922c8055e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8056487f922c805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8056b07f922c8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8057187f922c805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8057807f922c805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8057e87f922c8057e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8058507f922c805850 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8058b87f922c8058b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8059207f922c805920 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8059887f922c805988 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8059f07f922c8059f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c805a587f922c805a58 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c805ac07f922c805ac0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c805b287f922c805b28 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c805b907f922c805b90 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c805bf87f922c805bf8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c805c607f922c805c60 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c805cc87f922c805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c805d307f922c805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c805d987f922c805d98 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c805e007f922c805e00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c805e687f922c805e68 /* 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; }; - FFFD2c805ed07f922c805ed0 /* 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; }; - FFFD2c805f387f922c805f38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c805fa07f922c805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8060087f922c806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8060707f922c806070 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8060d87f922c8060d8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8061407f922c806140 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8061a87f922c8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8062107f922c806210 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8062787f922c806278 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8062e07f922c8062e0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8063487f922c806348 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8063b07f922c8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8064187f922c806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8064807f922c806480 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8064e87f922c8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8065507f922c806550 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8065b87f922c8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8066207f922c806620 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8066887f922c806688 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8066f07f922c8066f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8067587f922c806758 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8067c07f922c8067c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8068287f922c806828 /* 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; }; - FFFD2c8068907f922c806890 /* 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; }; - FFFD2c8068f87f922c8068f8 /* 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; }; - FFFD2c8069607f922c806960 /* 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; }; - FFFD2c8069c87f922c8069c8 /* 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; }; - FFFD2c806a307f922c806a30 /* 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; }; - FFFD2c806a987f922c806a98 /* 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; }; - FFFD2c806b007f922c806b00 /* 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; }; - FFFD2c806b687f922c806b68 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c806bd07f922c806bd0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c806c387f922c806c38 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c806ca07f922c806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c806d087f922c806d08 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c806d707f922c806d70 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c806dd87f922c806dd8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c806e407f922c806e40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c806ea87f922c806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c806f107f922c806f10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c806f787f922c806f78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c806fe07f922c806fe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8070487f922c807048 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8070b07f922c8070b0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8071187f922c807118 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8071807f922c807180 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8071e87f922c8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8072507f922c807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8072b87f922c8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8073207f922c807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8073887f922c807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8073f07f922c8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8074587f922c807458 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8074c07f922c8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8075287f922c807528 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8075907f922c807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8075f87f922c8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8076607f922c807660 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8076c87f922c8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8077307f922c807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8077987f922c807798 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8078007f922c807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8078687f922c807868 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8078d07f922c8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8079387f922c807938 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8079a07f922c8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c807a087f922c807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c807a707f922c807a70 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c807ad87f922c807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c807b407f922c807b40 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c807ba87f922c807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c807c107f922c807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepPrimitives.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepPrimitives.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD315178207fc331517820 /* PhysXCommon */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PhysXCommon"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD31801c007fc331801c00 /* common/PxBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxBase.h"; path = "../../../Include/common/PxBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD31801c687fc331801c68 /* common/PxCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCollection.h"; path = "../../../Include/common/PxCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD31801cd07fc331801cd0 /* common/PxCoreUtilityTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxCoreUtilityTypes.h"; path = "../../../Include/common/PxCoreUtilityTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD31801d387fc331801d38 /* common/PxMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaData.h"; path = "../../../Include/common/PxMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD31801da07fc331801da0 /* common/PxMetaDataFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxMetaDataFlags.h"; path = "../../../Include/common/PxMetaDataFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD31801e087fc331801e08 /* common/PxPhysXCommonConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysXCommonConfig.h"; path = "../../../Include/common/PxPhysXCommonConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD31801e707fc331801e70 /* common/PxPhysicsInsertionCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxPhysicsInsertionCallback.h"; path = "../../../Include/common/PxPhysicsInsertionCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD31801ed87fc331801ed8 /* common/PxRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxRenderBuffer.h"; path = "../../../Include/common/PxRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD31801f407fc331801f40 /* common/PxSerialFramework.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerialFramework.h"; path = "../../../Include/common/PxSerialFramework.h"; sourceTree = SOURCE_ROOT; }; + FFFD31801fa87fc331801fa8 /* common/PxSerializer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxSerializer.h"; path = "../../../Include/common/PxSerializer.h"; sourceTree = SOURCE_ROOT; }; + FFFD318020107fc331802010 /* common/PxStringTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxStringTable.h"; path = "../../../Include/common/PxStringTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD318020787fc331802078 /* common/PxTolerancesScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTolerancesScale.h"; path = "../../../Include/common/PxTolerancesScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD318020e07fc3318020e0 /* common/PxTypeInfo.h */= { isa = PBXFileReference; fileEncoding = 4; name = "common/PxTypeInfo.h"; path = "../../../Include/common/PxTypeInfo.h"; sourceTree = SOURCE_ROOT; }; + FFFD318021487fc331802148 /* geometry/PxBoxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxBoxGeometry.h"; path = "../../../Include/geometry/PxBoxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD318021b07fc3318021b0 /* geometry/PxCapsuleGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxCapsuleGeometry.h"; path = "../../../Include/geometry/PxCapsuleGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD318022187fc331802218 /* geometry/PxConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMesh.h"; path = "../../../Include/geometry/PxConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD318022807fc331802280 /* geometry/PxConvexMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxConvexMeshGeometry.h"; path = "../../../Include/geometry/PxConvexMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD318022e87fc3318022e8 /* geometry/PxGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometry.h"; path = "../../../Include/geometry/PxGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD318023507fc331802350 /* geometry/PxGeometryHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryHelpers.h"; path = "../../../Include/geometry/PxGeometryHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD318023b87fc3318023b8 /* geometry/PxGeometryQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxGeometryQuery.h"; path = "../../../Include/geometry/PxGeometryQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD318024207fc331802420 /* geometry/PxHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightField.h"; path = "../../../Include/geometry/PxHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFD318024887fc331802488 /* geometry/PxHeightFieldDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldDesc.h"; path = "../../../Include/geometry/PxHeightFieldDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD318024f07fc3318024f0 /* geometry/PxHeightFieldFlag.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldFlag.h"; path = "../../../Include/geometry/PxHeightFieldFlag.h"; sourceTree = SOURCE_ROOT; }; + FFFD318025587fc331802558 /* geometry/PxHeightFieldGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldGeometry.h"; path = "../../../Include/geometry/PxHeightFieldGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD318025c07fc3318025c0 /* geometry/PxHeightFieldSample.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxHeightFieldSample.h"; path = "../../../Include/geometry/PxHeightFieldSample.h"; sourceTree = SOURCE_ROOT; }; + FFFD318026287fc331802628 /* geometry/PxMeshQuery.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshQuery.h"; path = "../../../Include/geometry/PxMeshQuery.h"; sourceTree = SOURCE_ROOT; }; + FFFD318026907fc331802690 /* geometry/PxMeshScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxMeshScale.h"; path = "../../../Include/geometry/PxMeshScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD318026f87fc3318026f8 /* geometry/PxPlaneGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxPlaneGeometry.h"; path = "../../../Include/geometry/PxPlaneGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD318027607fc331802760 /* geometry/PxSimpleTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSimpleTriangleMesh.h"; path = "../../../Include/geometry/PxSimpleTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD318027c87fc3318027c8 /* geometry/PxSphereGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxSphereGeometry.h"; path = "../../../Include/geometry/PxSphereGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD318028307fc331802830 /* geometry/PxTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangle.h"; path = "../../../Include/geometry/PxTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD318028987fc331802898 /* geometry/PxTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMesh.h"; path = "../../../Include/geometry/PxTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD318029007fc331802900 /* geometry/PxTriangleMeshGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "geometry/PxTriangleMeshGeometry.h"; path = "../../../Include/geometry/PxTriangleMeshGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281f8007fc33281f800 /* src/CmBoxPruning.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.cpp"; path = "../../Common/src/CmBoxPruning.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281f8687fc33281f868 /* src/CmCollection.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.cpp"; path = "../../Common/src/CmCollection.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281f8d07fc33281f8d0 /* src/CmMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMathUtils.cpp"; path = "../../Common/src/CmMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281f9387fc33281f938 /* src/CmPtrTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.cpp"; path = "../../Common/src/CmPtrTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281f9a07fc33281f9a0 /* src/CmRadixSort.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.cpp"; path = "../../Common/src/CmRadixSort.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281fa087fc33281fa08 /* src/CmRadixSortBuffered.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.cpp"; path = "../../Common/src/CmRadixSortBuffered.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281fa707fc33281fa70 /* src/CmRenderOutput.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.cpp"; path = "../../Common/src/CmRenderOutput.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281fad87fc33281fad8 /* src/CmVisualization.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.cpp"; path = "../../Common/src/CmVisualization.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281fb407fc33281fb40 /* src/CmBitMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBitMap.h"; path = "../../Common/src/CmBitMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281fba87fc33281fba8 /* src/CmBoxPruning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmBoxPruning.h"; path = "../../Common/src/CmBoxPruning.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281fc107fc33281fc10 /* src/CmCollection.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmCollection.h"; path = "../../Common/src/CmCollection.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281fc787fc33281fc78 /* src/CmConeLimitHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmConeLimitHelper.h"; path = "../../Common/src/CmConeLimitHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281fce07fc33281fce0 /* src/CmFlushPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmFlushPool.h"; path = "../../Common/src/CmFlushPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281fd487fc33281fd48 /* src/CmIDPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIDPool.h"; path = "../../Common/src/CmIDPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281fdb07fc33281fdb0 /* src/CmIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmIO.h"; path = "../../Common/src/CmIO.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281fe187fc33281fe18 /* src/CmMatrix34.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmMatrix34.h"; path = "../../Common/src/CmMatrix34.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281fe807fc33281fe80 /* src/CmPhysXCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPhysXCommon.h"; path = "../../Common/src/CmPhysXCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281fee87fc33281fee8 /* src/CmPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPool.h"; path = "../../Common/src/CmPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281ff507fc33281ff50 /* src/CmPreallocatingPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPreallocatingPool.h"; path = "../../Common/src/CmPreallocatingPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281ffb87fc33281ffb8 /* src/CmPriorityQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPriorityQueue.h"; path = "../../Common/src/CmPriorityQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFD328200207fc332820020 /* src/CmPtrTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmPtrTable.h"; path = "../../Common/src/CmPtrTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD328200887fc332820088 /* src/CmQueue.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmQueue.h"; path = "../../Common/src/CmQueue.h"; sourceTree = SOURCE_ROOT; }; + FFFD328200f07fc3328200f0 /* src/CmRadixSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSort.h"; path = "../../Common/src/CmRadixSort.h"; sourceTree = SOURCE_ROOT; }; + FFFD328201587fc332820158 /* src/CmRadixSortBuffered.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRadixSortBuffered.h"; path = "../../Common/src/CmRadixSortBuffered.h"; sourceTree = SOURCE_ROOT; }; + FFFD328201c07fc3328201c0 /* src/CmReaderWriterLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmReaderWriterLock.h"; path = "../../Common/src/CmReaderWriterLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD328202287fc332820228 /* src/CmRefCountable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRefCountable.h"; path = "../../Common/src/CmRefCountable.h"; sourceTree = SOURCE_ROOT; }; + FFFD328202907fc332820290 /* src/CmRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderBuffer.h"; path = "../../Common/src/CmRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD328202f87fc3328202f8 /* src/CmRenderOutput.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmRenderOutput.h"; path = "../../Common/src/CmRenderOutput.h"; sourceTree = SOURCE_ROOT; }; + FFFD328203607fc332820360 /* src/CmScaling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmScaling.h"; path = "../../Common/src/CmScaling.h"; sourceTree = SOURCE_ROOT; }; + FFFD328203c87fc3328203c8 /* src/CmSpatialVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmSpatialVector.h"; path = "../../Common/src/CmSpatialVector.h"; sourceTree = SOURCE_ROOT; }; + FFFD328204307fc332820430 /* src/CmTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTask.h"; path = "../../Common/src/CmTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD328204987fc332820498 /* src/CmTaskPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTaskPool.h"; path = "../../Common/src/CmTaskPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD328205007fc332820500 /* src/CmTmpMem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTmpMem.h"; path = "../../Common/src/CmTmpMem.h"; sourceTree = SOURCE_ROOT; }; + FFFD328205687fc332820568 /* src/CmTransformUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmTransformUtils.h"; path = "../../Common/src/CmTransformUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD328205d07fc3328205d0 /* src/CmUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmUtils.h"; path = "../../Common/src/CmUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD328206387fc332820638 /* src/CmVisualization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/CmVisualization.h"; path = "../../Common/src/CmVisualization.h"; sourceTree = SOURCE_ROOT; }; + FFFD31806c007fc331806c00 /* headers/GuAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuAxes.h"; path = "../../GeomUtils/headers/GuAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFD31806c687fc331806c68 /* headers/GuBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuBox.h"; path = "../../GeomUtils/headers/GuBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD31806cd07fc331806cd0 /* headers/GuDistanceSegmentBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentBox.h"; path = "../../GeomUtils/headers/GuDistanceSegmentBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD31806d387fc331806d38 /* headers/GuDistanceSegmentSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuDistanceSegmentSegment.h"; path = "../../GeomUtils/headers/GuDistanceSegmentSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD31806da07fc331806da0 /* headers/GuIntersectionBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionBoxBox.h"; path = "../../GeomUtils/headers/GuIntersectionBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD31806e087fc331806e08 /* headers/GuIntersectionTriangleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuIntersectionTriangleBox.h"; path = "../../GeomUtils/headers/GuIntersectionTriangleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD31806e707fc331806e70 /* headers/GuRaycastTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuRaycastTests.h"; path = "../../GeomUtils/headers/GuRaycastTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD31806ed87fc331806ed8 /* headers/GuSIMDHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSIMDHelpers.h"; path = "../../GeomUtils/headers/GuSIMDHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD31806f407fc331806f40 /* headers/GuSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "headers/GuSegment.h"; path = "../../GeomUtils/headers/GuSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD31806fa87fc331806fa8 /* ../../Include/GeomUtils */= { isa = PBXFileReference; fileEncoding = 4; name = "../../Include/GeomUtils"; path = "../../../Include/GeomUtils"; sourceTree = SOURCE_ROOT; }; + FFFD318070107fc331807010 /* src/GuBounds.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.h"; path = "../../GeomUtils/src/GuBounds.h"; sourceTree = SOURCE_ROOT; }; + FFFD318070787fc331807078 /* src/GuCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.h"; path = "../../GeomUtils/src/GuCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD318070e07fc3318070e0 /* src/GuCenterExtents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCenterExtents.h"; path = "../../GeomUtils/src/GuCenterExtents.h"; sourceTree = SOURCE_ROOT; }; + FFFD318071487fc331807148 /* src/GuGeometryUnion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.h"; path = "../../GeomUtils/src/GuGeometryUnion.h"; sourceTree = SOURCE_ROOT; }; + FFFD318071b07fc3318071b0 /* src/GuInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.h"; path = "../../GeomUtils/src/GuInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD318072187fc331807218 /* src/GuMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.h"; path = "../../GeomUtils/src/GuMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFD318072807fc331807280 /* src/GuMeshFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.h"; path = "../../GeomUtils/src/GuMeshFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD318072e87fc3318072e8 /* src/GuOverlapTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.h"; path = "../../GeomUtils/src/GuOverlapTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD318073507fc331807350 /* src/GuSerialize.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.h"; path = "../../GeomUtils/src/GuSerialize.h"; sourceTree = SOURCE_ROOT; }; + FFFD318073b87fc3318073b8 /* src/GuSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSphere.h"; path = "../../GeomUtils/src/GuSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD318074207fc331807420 /* src/GuSweepMTD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.h"; path = "../../GeomUtils/src/GuSweepMTD.h"; sourceTree = SOURCE_ROOT; }; + FFFD318074887fc331807488 /* src/GuSweepSharedTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.h"; path = "../../GeomUtils/src/GuSweepSharedTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD318074f07fc3318074f0 /* src/GuSweepTests.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.h"; path = "../../GeomUtils/src/GuSweepTests.h"; sourceTree = SOURCE_ROOT; }; + FFFD318075587fc331807558 /* src/contact/GuContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactMethodImpl.h"; path = "../../GeomUtils/src/contact/GuContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD318075c07fc3318075c0 /* src/contact/GuContactPolygonPolygon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.h"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.h"; sourceTree = SOURCE_ROOT; }; + FFFD318076287fc331807628 /* src/contact/GuFeatureCode.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.h"; path = "../../GeomUtils/src/contact/GuFeatureCode.h"; sourceTree = SOURCE_ROOT; }; + FFFD318076907fc331807690 /* src/contact/GuLegacyTraceLineCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyTraceLineCallback.h"; path = "../../GeomUtils/src/contact/GuLegacyTraceLineCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD318076f87fc3318076f8 /* src/common/GuBarycentricCoordinates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.h"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.h"; sourceTree = SOURCE_ROOT; }; + FFFD318077607fc331807760 /* src/common/GuBoxConversion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBoxConversion.h"; path = "../../GeomUtils/src/common/GuBoxConversion.h"; sourceTree = SOURCE_ROOT; }; + FFFD318077c87fc3318077c8 /* src/common/GuEdgeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeCache.h"; path = "../../GeomUtils/src/common/GuEdgeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD318078307fc331807830 /* src/common/GuEdgeListData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuEdgeListData.h"; path = "../../GeomUtils/src/common/GuEdgeListData.h"; sourceTree = SOURCE_ROOT; }; + FFFD318078987fc331807898 /* src/common/GuSeparatingAxes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.h"; path = "../../GeomUtils/src/common/GuSeparatingAxes.h"; sourceTree = SOURCE_ROOT; }; + FFFD318079007fc331807900 /* src/convex/GuBigConvexData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.h"; path = "../../GeomUtils/src/convex/GuBigConvexData.h"; sourceTree = SOURCE_ROOT; }; + FFFD318079687fc331807968 /* src/convex/GuBigConvexData2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData2.h"; path = "../../GeomUtils/src/convex/GuBigConvexData2.h"; sourceTree = SOURCE_ROOT; }; + FFFD318079d07fc3318079d0 /* src/convex/GuConvexEdgeFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexEdgeFlags.h"; path = "../../GeomUtils/src/convex/GuConvexEdgeFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD31807a387fc331807a38 /* src/convex/GuConvexHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.h"; path = "../../GeomUtils/src/convex/GuConvexHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD31807aa07fc331807aa0 /* src/convex/GuConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.h"; path = "../../GeomUtils/src/convex/GuConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD31807b087fc331807b08 /* src/convex/GuConvexMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMeshData.h"; path = "../../GeomUtils/src/convex/GuConvexMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFD31807b707fc331807b70 /* src/convex/GuConvexSupportTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.h"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD31807bd87fc331807bd8 /* src/convex/GuConvexUtilsInternal.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.h"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.h"; sourceTree = SOURCE_ROOT; }; + FFFD31807c407fc331807c40 /* src/convex/GuCubeIndex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuCubeIndex.h"; path = "../../GeomUtils/src/convex/GuCubeIndex.h"; sourceTree = SOURCE_ROOT; }; + FFFD31807ca87fc331807ca8 /* src/convex/GuHillClimbing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.h"; path = "../../GeomUtils/src/convex/GuHillClimbing.h"; sourceTree = SOURCE_ROOT; }; + FFFD31807d107fc331807d10 /* src/convex/GuShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.h"; path = "../../GeomUtils/src/convex/GuShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD31807d787fc331807d78 /* src/distance/GuDistancePointBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.h"; path = "../../GeomUtils/src/distance/GuDistancePointBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD31807de07fc331807de0 /* src/distance/GuDistancePointSegment.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointSegment.h"; path = "../../GeomUtils/src/distance/GuDistancePointSegment.h"; sourceTree = SOURCE_ROOT; }; + FFFD31807e487fc331807e48 /* src/distance/GuDistancePointTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD31807eb07fc331807eb0 /* src/distance/GuDistancePointTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistancePointTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD31807f187fc331807f18 /* src/distance/GuDistanceSegmentSegmentSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegmentSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegmentSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD31807f807fc331807f80 /* src/distance/GuDistanceSegmentTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD31807fe87fc331807fe8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangleSIMD.h"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangleSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD318080507fc331808050 /* src/sweep/GuSweepBoxBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD318080b87fc3318080b8 /* src/sweep/GuSweepBoxSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD318081207fc331808120 /* 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; }; + FFFD318081887fc331808188 /* 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; }; + FFFD318081f07fc3318081f0 /* src/sweep/GuSweepCapsuleBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD318082587fc331808258 /* src/sweep/GuSweepCapsuleCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD318082c07fc3318082c0 /* src/sweep/GuSweepCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD318083287fc331808328 /* src/sweep/GuSweepSphereCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD318083907fc331808390 /* src/sweep/GuSweepSphereSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD318083f87fc3318083f8 /* src/sweep/GuSweepSphereTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.h"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD318084607fc331808460 /* src/sweep/GuSweepTriangleUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.h"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD318084c87fc3318084c8 /* src/gjk/GuEPA.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.h"; path = "../../GeomUtils/src/gjk/GuEPA.h"; sourceTree = SOURCE_ROOT; }; + FFFD318085307fc331808530 /* src/gjk/GuEPAFacet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPAFacet.h"; path = "../../GeomUtils/src/gjk/GuEPAFacet.h"; sourceTree = SOURCE_ROOT; }; + FFFD318085987fc331808598 /* src/gjk/GuGJK.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJK.h"; path = "../../GeomUtils/src/gjk/GuGJK.h"; sourceTree = SOURCE_ROOT; }; + FFFD318086007fc331808600 /* src/gjk/GuGJKPenetration.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKPenetration.h"; path = "../../GeomUtils/src/gjk/GuGJKPenetration.h"; sourceTree = SOURCE_ROOT; }; + FFFD318086687fc331808668 /* src/gjk/GuGJKRaycast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKRaycast.h"; path = "../../GeomUtils/src/gjk/GuGJKRaycast.h"; sourceTree = SOURCE_ROOT; }; + FFFD318086d07fc3318086d0 /* src/gjk/GuGJKSimplex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.h"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.h"; sourceTree = SOURCE_ROOT; }; + FFFD318087387fc331808738 /* src/gjk/GuGJKTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.h"; path = "../../GeomUtils/src/gjk/GuGJKTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD318087a07fc3318087a0 /* src/gjk/GuGJKType.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKType.h"; path = "../../GeomUtils/src/gjk/GuGJKType.h"; sourceTree = SOURCE_ROOT; }; + FFFD318088087fc331808808 /* src/gjk/GuGJKUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKUtil.h"; path = "../../GeomUtils/src/gjk/GuGJKUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD318088707fc331808870 /* src/gjk/GuVecBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecBox.h"; path = "../../GeomUtils/src/gjk/GuVecBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD318088d87fc3318088d8 /* src/gjk/GuVecCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecCapsule.h"; path = "../../GeomUtils/src/gjk/GuVecCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD318089407fc331808940 /* src/gjk/GuVecConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvex.h"; path = "../../GeomUtils/src/gjk/GuVecConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD318089a87fc3318089a8 /* src/gjk/GuVecConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFD31808a107fc331808a10 /* src/gjk/GuVecConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD31808a787fc331808a78 /* src/gjk/GuVecPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecPlane.h"; path = "../../GeomUtils/src/gjk/GuVecPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD31808ae07fc331808ae0 /* src/gjk/GuVecShrunkBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkBox.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD31808b487fc331808b48 /* src/gjk/GuVecShrunkConvexHull.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHull.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHull.h"; sourceTree = SOURCE_ROOT; }; + FFFD31808bb07fc331808bb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecShrunkConvexHullNoScale.h"; path = "../../GeomUtils/src/gjk/GuVecShrunkConvexHullNoScale.h"; sourceTree = SOURCE_ROOT; }; + FFFD31808c187fc331808c18 /* src/gjk/GuVecSphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecSphere.h"; path = "../../GeomUtils/src/gjk/GuVecSphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD31808c807fc331808c80 /* src/gjk/GuVecTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuVecTriangle.h"; path = "../../GeomUtils/src/gjk/GuVecTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD31808ce87fc331808ce8 /* src/intersection/GuIntersectionCapsuleTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD31808d507fc331808d50 /* src/intersection/GuIntersectionEdgeEdge.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.h"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.h"; sourceTree = SOURCE_ROOT; }; + FFFD31808db87fc331808db8 /* src/intersection/GuIntersectionRay.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRay.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRay.h"; sourceTree = SOURCE_ROOT; }; + FFFD31808e207fc331808e20 /* src/intersection/GuIntersectionRayBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD31808e887fc331808e88 /* src/intersection/GuIntersectionRayBoxSIMD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBoxSIMD.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBoxSIMD.h"; sourceTree = SOURCE_ROOT; }; + FFFD31808ef07fc331808ef0 /* src/intersection/GuIntersectionRayCapsule.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.h"; sourceTree = SOURCE_ROOT; }; + FFFD31808f587fc331808f58 /* src/intersection/GuIntersectionRayPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayPlane.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD31808fc07fc331808fc0 /* src/intersection/GuIntersectionRaySphere.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.h"; sourceTree = SOURCE_ROOT; }; + FFFD318090287fc331809028 /* src/intersection/GuIntersectionRayTriangle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayTriangle.h"; path = "../../GeomUtils/src/intersection/GuIntersectionRayTriangle.h"; sourceTree = SOURCE_ROOT; }; + FFFD318090907fc331809090 /* src/intersection/GuIntersectionSphereBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.h"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD318090f87fc3318090f8 /* src/mesh/GuBV32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.h"; path = "../../GeomUtils/src/mesh/GuBV32.h"; sourceTree = SOURCE_ROOT; }; + FFFD318091607fc331809160 /* src/mesh/GuBV32Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.h"; path = "../../GeomUtils/src/mesh/GuBV32Build.h"; sourceTree = SOURCE_ROOT; }; + FFFD318091c87fc3318091c8 /* src/mesh/GuBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.h"; path = "../../GeomUtils/src/mesh/GuBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFD318092307fc331809230 /* src/mesh/GuBV4Build.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.h"; path = "../../GeomUtils/src/mesh/GuBV4Build.h"; sourceTree = SOURCE_ROOT; }; + FFFD318092987fc331809298 /* src/mesh/GuBV4Settings.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Settings.h"; path = "../../GeomUtils/src/mesh/GuBV4Settings.h"; sourceTree = SOURCE_ROOT; }; + FFFD318093007fc331809300 /* 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; }; + FFFD318093687fc331809368 /* 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; }; + FFFD318093d07fc3318093d0 /* 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; }; + FFFD318094387fc331809438 /* 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; }; + FFFD318094a07fc3318094a0 /* 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; }; + FFFD318095087fc331809508 /* 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; }; + FFFD318095707fc331809570 /* 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; }; + FFFD318095d87fc3318095d8 /* 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; }; + FFFD318096407fc331809640 /* 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; }; + FFFD318096a87fc3318096a8 /* 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; }; + FFFD318097107fc331809710 /* 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; }; + FFFD318097787fc331809778 /* 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; }; + FFFD318097e07fc3318097e0 /* 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; }; + FFFD318098487fc331809848 /* 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; }; + FFFD318098b07fc3318098b0 /* 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; }; + FFFD318099187fc331809918 /* 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; }; + FFFD318099807fc331809980 /* 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; }; + FFFD318099e87fc3318099e8 /* 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; }; + FFFD31809a507fc331809a50 /* 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; }; + FFFD31809ab87fc331809ab8 /* 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; }; + FFFD31809b207fc331809b20 /* src/mesh/GuBVConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBVConstants.h"; path = "../../GeomUtils/src/mesh/GuBVConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD31809b887fc331809b88 /* src/mesh/GuMeshData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshData.h"; path = "../../GeomUtils/src/mesh/GuMeshData.h"; sourceTree = SOURCE_ROOT; }; + FFFD31809bf07fc331809bf0 /* src/mesh/GuMidphaseInterface.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseInterface.h"; path = "../../GeomUtils/src/mesh/GuMidphaseInterface.h"; sourceTree = SOURCE_ROOT; }; + FFFD31809c587fc331809c58 /* src/mesh/GuRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.h"; path = "../../GeomUtils/src/mesh/GuRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD31809cc07fc331809cc0 /* src/mesh/GuSweepConvexTri.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepConvexTri.h"; path = "../../GeomUtils/src/mesh/GuSweepConvexTri.h"; sourceTree = SOURCE_ROOT; }; + FFFD31809d287fc331809d28 /* src/mesh/GuSweepMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepMesh.h"; path = "../../GeomUtils/src/mesh/GuSweepMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD31809d907fc331809d90 /* src/mesh/GuTriangle32.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangle32.h"; path = "../../GeomUtils/src/mesh/GuTriangle32.h"; sourceTree = SOURCE_ROOT; }; + FFFD31809df87fc331809df8 /* src/mesh/GuTriangleCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleCache.h"; path = "../../GeomUtils/src/mesh/GuTriangleCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD31809e607fc331809e60 /* src/mesh/GuTriangleMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.h"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD31809ec87fc331809ec8 /* src/mesh/GuTriangleMeshBV4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.h"; sourceTree = SOURCE_ROOT; }; + FFFD31809f307fc331809f30 /* src/mesh/GuTriangleMeshRTree.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.h"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.h"; sourceTree = SOURCE_ROOT; }; + FFFD31809f987fc331809f98 /* src/mesh/GuTriangleVertexPointers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleVertexPointers.h"; path = "../../GeomUtils/src/mesh/GuTriangleVertexPointers.h"; sourceTree = SOURCE_ROOT; }; + FFFD3180a0007fc33180a000 /* src/hf/GuEntityReport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuEntityReport.h"; path = "../../GeomUtils/src/hf/GuEntityReport.h"; sourceTree = SOURCE_ROOT; }; + FFFD3180a0687fc33180a068 /* src/hf/GuHeightField.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.h"; path = "../../GeomUtils/src/hf/GuHeightField.h"; sourceTree = SOURCE_ROOT; }; + FFFD3180a0d07fc33180a0d0 /* src/hf/GuHeightFieldData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldData.h"; path = "../../GeomUtils/src/hf/GuHeightFieldData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3180a1387fc33180a138 /* src/hf/GuHeightFieldUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.h"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD3180a1a07fc33180a1a0 /* src/pcm/GuPCMContactConvexCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.h"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD3180a2087fc33180a208 /* src/pcm/GuPCMContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFD3180a2707fc33180a270 /* src/pcm/GuPCMContactGenUtil.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenUtil.h"; path = "../../GeomUtils/src/pcm/GuPCMContactGenUtil.h"; sourceTree = SOURCE_ROOT; }; + FFFD3180a2d87fc33180a2d8 /* src/pcm/GuPCMContactMeshCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactMeshCallback.h"; path = "../../GeomUtils/src/pcm/GuPCMContactMeshCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD3180a3407fc33180a340 /* src/pcm/GuPCMShapeConvex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.h"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.h"; sourceTree = SOURCE_ROOT; }; + FFFD3180a3a87fc33180a3a8 /* src/pcm/GuPCMTriangleContactGen.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.h"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.h"; sourceTree = SOURCE_ROOT; }; + FFFD3180a4107fc33180a410 /* src/pcm/GuPersistentContactManifold.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.h"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.h"; sourceTree = SOURCE_ROOT; }; + FFFD3180a4787fc33180a478 /* src/ccd/GuCCDSweepConvexMesh.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.h"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.h"; sourceTree = SOURCE_ROOT; }; + FFFD3180a4e07fc33180a4e0 /* src/GuBounds.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBounds.cpp"; path = "../../GeomUtils/src/GuBounds.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180a5487fc33180a548 /* src/GuBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuBox.cpp"; path = "../../GeomUtils/src/GuBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180a5b07fc33180a5b0 /* src/GuCCTSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCCTSweepTests.cpp"; path = "../../GeomUtils/src/GuCCTSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180a6187fc33180a618 /* src/GuCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuCapsule.cpp"; path = "../../GeomUtils/src/GuCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180a6807fc33180a680 /* src/GuGeometryQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryQuery.cpp"; path = "../../GeomUtils/src/GuGeometryQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180a6e87fc33180a6e8 /* src/GuGeometryUnion.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuGeometryUnion.cpp"; path = "../../GeomUtils/src/GuGeometryUnion.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180a7507fc33180a750 /* src/GuInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuInternal.cpp"; path = "../../GeomUtils/src/GuInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180a7b87fc33180a7b8 /* src/GuMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMTD.cpp"; path = "../../GeomUtils/src/GuMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180a8207fc33180a820 /* src/GuMeshFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMeshFactory.cpp"; path = "../../GeomUtils/src/GuMeshFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180a8887fc33180a888 /* src/GuMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuMetaData.cpp"; path = "../../GeomUtils/src/GuMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180a8f07fc33180a8f0 /* src/GuOverlapTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuOverlapTests.cpp"; path = "../../GeomUtils/src/GuOverlapTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180a9587fc33180a958 /* src/GuRaycastTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuRaycastTests.cpp"; path = "../../GeomUtils/src/GuRaycastTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180a9c07fc33180a9c0 /* src/GuSerialize.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSerialize.cpp"; path = "../../GeomUtils/src/GuSerialize.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180aa287fc33180aa28 /* src/GuSweepMTD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepMTD.cpp"; path = "../../GeomUtils/src/GuSweepMTD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180aa907fc33180aa90 /* src/GuSweepSharedTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepSharedTests.cpp"; path = "../../GeomUtils/src/GuSweepSharedTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180aaf87fc33180aaf8 /* src/GuSweepTests.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/GuSweepTests.cpp"; path = "../../GeomUtils/src/GuSweepTests.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180ab607fc33180ab60 /* src/contact/GuContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactBoxBox.cpp"; path = "../../GeomUtils/src/contact/GuContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180abc87fc33180abc8 /* src/contact/GuContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleBox.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180ac307fc33180ac30 /* src/contact/GuContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180ac987fc33180ac98 /* src/contact/GuContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180ad007fc33180ad00 /* src/contact/GuContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180ad687fc33180ad68 /* src/contact/GuContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180add07fc33180add0 /* src/contact/GuContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactConvexMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180ae387fc33180ae38 /* src/contact/GuContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneBox.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180aea07fc33180aea0 /* src/contact/GuContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180af087fc33180af08 /* src/contact/GuContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPlaneConvex.cpp"; path = "../../GeomUtils/src/contact/GuContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180af707fc33180af70 /* src/contact/GuContactPolygonPolygon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactPolygonPolygon.cpp"; path = "../../GeomUtils/src/contact/GuContactPolygonPolygon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180afd87fc33180afd8 /* src/contact/GuContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereBox.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b0407fc33180b040 /* src/contact/GuContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereCapsule.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b0a87fc33180b0a8 /* src/contact/GuContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereMesh.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b1107fc33180b110 /* src/contact/GuContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSpherePlane.cpp"; path = "../../GeomUtils/src/contact/GuContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b1787fc33180b178 /* src/contact/GuContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuContactSphereSphere.cpp"; path = "../../GeomUtils/src/contact/GuContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b1e07fc33180b1e0 /* src/contact/GuFeatureCode.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuFeatureCode.cpp"; path = "../../GeomUtils/src/contact/GuFeatureCode.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b2487fc33180b248 /* src/contact/GuLegacyContactBoxHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactBoxHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactBoxHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b2b07fc33180b2b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b3187fc33180b318 /* src/contact/GuLegacyContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactConvexHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b3807fc33180b380 /* src/contact/GuLegacyContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/contact/GuLegacyContactSphereHeightField.cpp"; path = "../../GeomUtils/src/contact/GuLegacyContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b3e87fc33180b3e8 /* src/common/GuBarycentricCoordinates.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuBarycentricCoordinates.cpp"; path = "../../GeomUtils/src/common/GuBarycentricCoordinates.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b4507fc33180b450 /* src/common/GuSeparatingAxes.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/common/GuSeparatingAxes.cpp"; path = "../../GeomUtils/src/common/GuSeparatingAxes.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b4b87fc33180b4b8 /* src/convex/GuBigConvexData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuBigConvexData.cpp"; path = "../../GeomUtils/src/convex/GuBigConvexData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b5207fc33180b520 /* src/convex/GuConvexHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexHelper.cpp"; path = "../../GeomUtils/src/convex/GuConvexHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b5887fc33180b588 /* src/convex/GuConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexMesh.cpp"; path = "../../GeomUtils/src/convex/GuConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b5f07fc33180b5f0 /* src/convex/GuConvexSupportTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexSupportTable.cpp"; path = "../../GeomUtils/src/convex/GuConvexSupportTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b6587fc33180b658 /* src/convex/GuConvexUtilsInternal.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuConvexUtilsInternal.cpp"; path = "../../GeomUtils/src/convex/GuConvexUtilsInternal.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b6c07fc33180b6c0 /* src/convex/GuHillClimbing.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuHillClimbing.cpp"; path = "../../GeomUtils/src/convex/GuHillClimbing.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b7287fc33180b728 /* src/convex/GuShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/convex/GuShapeConvex.cpp"; path = "../../GeomUtils/src/convex/GuShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b7907fc33180b790 /* src/distance/GuDistancePointBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointBox.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b7f87fc33180b7f8 /* src/distance/GuDistancePointTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistancePointTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistancePointTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b8607fc33180b860 /* src/distance/GuDistanceSegmentBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentBox.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b8c87fc33180b8c8 /* src/distance/GuDistanceSegmentSegment.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentSegment.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentSegment.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b9307fc33180b930 /* src/distance/GuDistanceSegmentTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/distance/GuDistanceSegmentTriangle.cpp"; path = "../../GeomUtils/src/distance/GuDistanceSegmentTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180b9987fc33180b998 /* src/sweep/GuSweepBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180ba007fc33180ba00 /* src/sweep/GuSweepBoxSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepBoxSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepBoxSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180ba687fc33180ba68 /* 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; }; + FFFD3180bad07fc33180bad0 /* 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; }; + FFFD3180bb387fc33180bb38 /* src/sweep/GuSweepCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleBox.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180bba07fc33180bba0 /* src/sweep/GuSweepCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180bc087fc33180bc08 /* src/sweep/GuSweepCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepCapsuleTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180bc707fc33180bc70 /* src/sweep/GuSweepSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereCapsule.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180bcd87fc33180bcd8 /* src/sweep/GuSweepSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereSphere.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180bd407fc33180bd40 /* src/sweep/GuSweepSphereTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepSphereTriangle.cpp"; path = "../../GeomUtils/src/sweep/GuSweepSphereTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180bda87fc33180bda8 /* src/sweep/GuSweepTriangleUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/sweep/GuSweepTriangleUtils.cpp"; path = "../../GeomUtils/src/sweep/GuSweepTriangleUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180be107fc33180be10 /* src/gjk/GuEPA.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuEPA.cpp"; path = "../../GeomUtils/src/gjk/GuEPA.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180be787fc33180be78 /* src/gjk/GuGJKSimplex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKSimplex.cpp"; path = "../../GeomUtils/src/gjk/GuGJKSimplex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180bee07fc33180bee0 /* src/gjk/GuGJKTest.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/gjk/GuGJKTest.cpp"; path = "../../GeomUtils/src/gjk/GuGJKTest.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180bf487fc33180bf48 /* src/intersection/GuIntersectionBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionBoxBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180bfb07fc33180bfb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionCapsuleTriangle.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionCapsuleTriangle.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c0187fc33180c018 /* src/intersection/GuIntersectionEdgeEdge.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionEdgeEdge.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionEdgeEdge.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c0807fc33180c080 /* src/intersection/GuIntersectionRayBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c0e87fc33180c0e8 /* src/intersection/GuIntersectionRayCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRayCapsule.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRayCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c1507fc33180c150 /* src/intersection/GuIntersectionRaySphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionRaySphere.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionRaySphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c1b87fc33180c1b8 /* src/intersection/GuIntersectionSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionSphereBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c2207fc33180c220 /* src/intersection/GuIntersectionTriangleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/intersection/GuIntersectionTriangleBox.cpp"; path = "../../GeomUtils/src/intersection/GuIntersectionTriangleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c2887fc33180c288 /* src/mesh/GuBV32.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32.cpp"; path = "../../GeomUtils/src/mesh/GuBV32.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c2f07fc33180c2f0 /* src/mesh/GuBV32Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV32Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV32Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c3587fc33180c358 /* src/mesh/GuBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4.cpp"; path = "../../GeomUtils/src/mesh/GuBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c3c07fc33180c3c0 /* src/mesh/GuBV4Build.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuBV4Build.cpp"; path = "../../GeomUtils/src/mesh/GuBV4Build.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c4287fc33180c428 /* 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; }; + FFFD3180c4907fc33180c490 /* 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; }; + FFFD3180c4f87fc33180c4f8 /* 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; }; + FFFD3180c5607fc33180c560 /* 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; }; + FFFD3180c5c87fc33180c5c8 /* 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; }; + FFFD3180c6307fc33180c630 /* 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; }; + FFFD3180c6987fc33180c698 /* 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; }; + FFFD3180c7007fc33180c700 /* 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; }; + FFFD3180c7687fc33180c768 /* src/mesh/GuMeshQuery.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMeshQuery.cpp"; path = "../../GeomUtils/src/mesh/GuMeshQuery.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c7d07fc33180c7d0 /* src/mesh/GuMidphaseBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseBV4.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c8387fc33180c838 /* src/mesh/GuMidphaseRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuMidphaseRTree.cpp"; path = "../../GeomUtils/src/mesh/GuMidphaseRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c8a07fc33180c8a0 /* src/mesh/GuOverlapTestsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuOverlapTestsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuOverlapTestsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c9087fc33180c908 /* src/mesh/GuRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTree.cpp"; path = "../../GeomUtils/src/mesh/GuRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c9707fc33180c970 /* src/mesh/GuRTreeQueries.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuRTreeQueries.cpp"; path = "../../GeomUtils/src/mesh/GuRTreeQueries.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180c9d87fc33180c9d8 /* src/mesh/GuSweepsMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuSweepsMesh.cpp"; path = "../../GeomUtils/src/mesh/GuSweepsMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180ca407fc33180ca40 /* src/mesh/GuTriangleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMesh.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180caa87fc33180caa8 /* src/mesh/GuTriangleMeshBV4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshBV4.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshBV4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180cb107fc33180cb10 /* src/mesh/GuTriangleMeshRTree.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/mesh/GuTriangleMeshRTree.cpp"; path = "../../GeomUtils/src/mesh/GuTriangleMeshRTree.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180cb787fc33180cb78 /* src/hf/GuHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightField.cpp"; path = "../../GeomUtils/src/hf/GuHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180cbe07fc33180cbe0 /* src/hf/GuHeightFieldUtil.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuHeightFieldUtil.cpp"; path = "../../GeomUtils/src/hf/GuHeightFieldUtil.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180cc487fc33180cc48 /* src/hf/GuOverlapTestsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuOverlapTestsHF.cpp"; path = "../../GeomUtils/src/hf/GuOverlapTestsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180ccb07fc33180ccb0 /* src/hf/GuSweepsHF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/hf/GuSweepsHF.cpp"; path = "../../GeomUtils/src/hf/GuSweepsHF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180cd187fc33180cd18 /* src/pcm/GuPCMContactBoxBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180cd807fc33180cd80 /* src/pcm/GuPCMContactBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180cde87fc33180cde8 /* src/pcm/GuPCMContactCapsuleBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180ce507fc33180ce50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180ceb87fc33180ceb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180cf207fc33180cf20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180cf887fc33180cf88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactCapsuleMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactCapsuleMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180cff07fc33180cff0 /* src/pcm/GuPCMContactConvexCommon.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexCommon.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexCommon.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d0587fc33180d058 /* src/pcm/GuPCMContactConvexConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d0c07fc33180d0c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d1287fc33180d128 /* src/pcm/GuPCMContactConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactConvexMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d1907fc33180d190 /* src/pcm/GuPCMContactGenBoxConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenBoxConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenBoxConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d1f87fc33180d1f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactGenSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactGenSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d2607fc33180d260 /* src/pcm/GuPCMContactPlaneBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d2c87fc33180d2c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d3307fc33180d330 /* src/pcm/GuPCMContactPlaneConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactPlaneConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactPlaneConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d3987fc33180d398 /* src/pcm/GuPCMContactSphereBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereBox.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d4007fc33180d400 /* src/pcm/GuPCMContactSphereCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereCapsule.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d4687fc33180d468 /* src/pcm/GuPCMContactSphereConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d4d07fc33180d4d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereHeightField.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d5387fc33180d538 /* src/pcm/GuPCMContactSphereMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereMesh.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d5a07fc33180d5a0 /* src/pcm/GuPCMContactSpherePlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSpherePlane.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSpherePlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d6087fc33180d608 /* src/pcm/GuPCMContactSphereSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMContactSphereSphere.cpp"; path = "../../GeomUtils/src/pcm/GuPCMContactSphereSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d6707fc33180d670 /* src/pcm/GuPCMShapeConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMShapeConvex.cpp"; path = "../../GeomUtils/src/pcm/GuPCMShapeConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d6d87fc33180d6d8 /* src/pcm/GuPCMTriangleContactGen.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPCMTriangleContactGen.cpp"; path = "../../GeomUtils/src/pcm/GuPCMTriangleContactGen.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d7407fc33180d740 /* src/pcm/GuPersistentContactManifold.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/pcm/GuPersistentContactManifold.cpp"; path = "../../GeomUtils/src/pcm/GuPersistentContactManifold.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d7a87fc33180d7a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/ccd/GuCCDSweepConvexMesh.cpp"; path = "../../GeomUtils/src/ccd/GuCCDSweepConvexMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3180d8107fc33180d810 /* 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 */ - FFF22c13c0507f922c13c050 /* Resources */ = { + FFF2315178207fc331517820 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c8013a87f922c8013a8, + FFFF31806fa87fc331806fa8, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2c13c0507f922c13c050 /* Frameworks */ = { + FFFC315178207fc331517820 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1841,145 +1841,145 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82c13c0507f922c13c050 /* Sources */ = { + FFF8315178207fc331517820 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2b9a6a007f922b9a6a00, - FFFF2b9a6a687f922b9a6a68, - FFFF2b9a6ad07f922b9a6ad0, - FFFF2b9a6b387f922b9a6b38, - FFFF2b9a6ba07f922b9a6ba0, - FFFF2b9a6c087f922b9a6c08, - FFFF2b9a6c707f922b9a6c70, - FFFF2b9a6cd87f922b9a6cd8, - FFFF2c8048e07f922c8048e0, - FFFF2c8049487f922c804948, - FFFF2c8049b07f922c8049b0, - FFFF2c804a187f922c804a18, - FFFF2c804a807f922c804a80, - FFFF2c804ae87f922c804ae8, - FFFF2c804b507f922c804b50, - FFFF2c804bb87f922c804bb8, - FFFF2c804c207f922c804c20, - FFFF2c804c887f922c804c88, - FFFF2c804cf07f922c804cf0, - FFFF2c804d587f922c804d58, - FFFF2c804dc07f922c804dc0, - FFFF2c804e287f922c804e28, - FFFF2c804e907f922c804e90, - FFFF2c804ef87f922c804ef8, - FFFF2c804f607f922c804f60, - FFFF2c804fc87f922c804fc8, - FFFF2c8050307f922c805030, - FFFF2c8050987f922c805098, - FFFF2c8051007f922c805100, - FFFF2c8051687f922c805168, - FFFF2c8051d07f922c8051d0, - FFFF2c8052387f922c805238, - FFFF2c8052a07f922c8052a0, - FFFF2c8053087f922c805308, - FFFF2c8053707f922c805370, - FFFF2c8053d87f922c8053d8, - FFFF2c8054407f922c805440, - FFFF2c8054a87f922c8054a8, - FFFF2c8055107f922c805510, - FFFF2c8055787f922c805578, - FFFF2c8055e07f922c8055e0, - FFFF2c8056487f922c805648, - FFFF2c8056b07f922c8056b0, - FFFF2c8057187f922c805718, - FFFF2c8057807f922c805780, - FFFF2c8057e87f922c8057e8, - FFFF2c8058507f922c805850, - FFFF2c8058b87f922c8058b8, - FFFF2c8059207f922c805920, - FFFF2c8059887f922c805988, - FFFF2c8059f07f922c8059f0, - FFFF2c805a587f922c805a58, - FFFF2c805ac07f922c805ac0, - FFFF2c805b287f922c805b28, - FFFF2c805b907f922c805b90, - FFFF2c805bf87f922c805bf8, - FFFF2c805c607f922c805c60, - FFFF2c805cc87f922c805cc8, - FFFF2c805d307f922c805d30, - FFFF2c805d987f922c805d98, - FFFF2c805e007f922c805e00, - FFFF2c805e687f922c805e68, - FFFF2c805ed07f922c805ed0, - FFFF2c805f387f922c805f38, - FFFF2c805fa07f922c805fa0, - FFFF2c8060087f922c806008, - FFFF2c8060707f922c806070, - FFFF2c8060d87f922c8060d8, - FFFF2c8061407f922c806140, - FFFF2c8061a87f922c8061a8, - FFFF2c8062107f922c806210, - FFFF2c8062787f922c806278, - FFFF2c8062e07f922c8062e0, - FFFF2c8063487f922c806348, - FFFF2c8063b07f922c8063b0, - FFFF2c8064187f922c806418, - FFFF2c8064807f922c806480, - FFFF2c8064e87f922c8064e8, - FFFF2c8065507f922c806550, - FFFF2c8065b87f922c8065b8, - FFFF2c8066207f922c806620, - FFFF2c8066887f922c806688, - FFFF2c8066f07f922c8066f0, - FFFF2c8067587f922c806758, - FFFF2c8067c07f922c8067c0, - FFFF2c8068287f922c806828, - FFFF2c8068907f922c806890, - FFFF2c8068f87f922c8068f8, - FFFF2c8069607f922c806960, - FFFF2c8069c87f922c8069c8, - FFFF2c806a307f922c806a30, - FFFF2c806a987f922c806a98, - FFFF2c806b007f922c806b00, - FFFF2c806b687f922c806b68, - FFFF2c806bd07f922c806bd0, - FFFF2c806c387f922c806c38, - FFFF2c806ca07f922c806ca0, - FFFF2c806d087f922c806d08, - FFFF2c806d707f922c806d70, - FFFF2c806dd87f922c806dd8, - FFFF2c806e407f922c806e40, - FFFF2c806ea87f922c806ea8, - FFFF2c806f107f922c806f10, - FFFF2c806f787f922c806f78, - FFFF2c806fe07f922c806fe0, - FFFF2c8070487f922c807048, - FFFF2c8070b07f922c8070b0, - FFFF2c8071187f922c807118, - FFFF2c8071807f922c807180, - FFFF2c8071e87f922c8071e8, - FFFF2c8072507f922c807250, - FFFF2c8072b87f922c8072b8, - FFFF2c8073207f922c807320, - FFFF2c8073887f922c807388, - FFFF2c8073f07f922c8073f0, - FFFF2c8074587f922c807458, - FFFF2c8074c07f922c8074c0, - FFFF2c8075287f922c807528, - FFFF2c8075907f922c807590, - FFFF2c8075f87f922c8075f8, - FFFF2c8076607f922c807660, - FFFF2c8076c87f922c8076c8, - FFFF2c8077307f922c807730, - FFFF2c8077987f922c807798, - FFFF2c8078007f922c807800, - FFFF2c8078687f922c807868, - FFFF2c8078d07f922c8078d0, - FFFF2c8079387f922c807938, - FFFF2c8079a07f922c8079a0, - FFFF2c807a087f922c807a08, - FFFF2c807a707f922c807a70, - FFFF2c807ad87f922c807ad8, - FFFF2c807b407f922c807b40, - FFFF2c807ba87f922c807ba8, - FFFF2c807c107f922c807c10, + FFFF3281f8007fc33281f800, + FFFF3281f8687fc33281f868, + FFFF3281f8d07fc33281f8d0, + FFFF3281f9387fc33281f938, + FFFF3281f9a07fc33281f9a0, + FFFF3281fa087fc33281fa08, + FFFF3281fa707fc33281fa70, + FFFF3281fad87fc33281fad8, + FFFF3180a4e07fc33180a4e0, + FFFF3180a5487fc33180a548, + FFFF3180a5b07fc33180a5b0, + FFFF3180a6187fc33180a618, + FFFF3180a6807fc33180a680, + FFFF3180a6e87fc33180a6e8, + FFFF3180a7507fc33180a750, + FFFF3180a7b87fc33180a7b8, + FFFF3180a8207fc33180a820, + FFFF3180a8887fc33180a888, + FFFF3180a8f07fc33180a8f0, + FFFF3180a9587fc33180a958, + FFFF3180a9c07fc33180a9c0, + FFFF3180aa287fc33180aa28, + FFFF3180aa907fc33180aa90, + FFFF3180aaf87fc33180aaf8, + FFFF3180ab607fc33180ab60, + FFFF3180abc87fc33180abc8, + FFFF3180ac307fc33180ac30, + FFFF3180ac987fc33180ac98, + FFFF3180ad007fc33180ad00, + FFFF3180ad687fc33180ad68, + FFFF3180add07fc33180add0, + FFFF3180ae387fc33180ae38, + FFFF3180aea07fc33180aea0, + FFFF3180af087fc33180af08, + FFFF3180af707fc33180af70, + FFFF3180afd87fc33180afd8, + FFFF3180b0407fc33180b040, + FFFF3180b0a87fc33180b0a8, + FFFF3180b1107fc33180b110, + FFFF3180b1787fc33180b178, + FFFF3180b1e07fc33180b1e0, + FFFF3180b2487fc33180b248, + FFFF3180b2b07fc33180b2b0, + FFFF3180b3187fc33180b318, + FFFF3180b3807fc33180b380, + FFFF3180b3e87fc33180b3e8, + FFFF3180b4507fc33180b450, + FFFF3180b4b87fc33180b4b8, + FFFF3180b5207fc33180b520, + FFFF3180b5887fc33180b588, + FFFF3180b5f07fc33180b5f0, + FFFF3180b6587fc33180b658, + FFFF3180b6c07fc33180b6c0, + FFFF3180b7287fc33180b728, + FFFF3180b7907fc33180b790, + FFFF3180b7f87fc33180b7f8, + FFFF3180b8607fc33180b860, + FFFF3180b8c87fc33180b8c8, + FFFF3180b9307fc33180b930, + FFFF3180b9987fc33180b998, + FFFF3180ba007fc33180ba00, + FFFF3180ba687fc33180ba68, + FFFF3180bad07fc33180bad0, + FFFF3180bb387fc33180bb38, + FFFF3180bba07fc33180bba0, + FFFF3180bc087fc33180bc08, + FFFF3180bc707fc33180bc70, + FFFF3180bcd87fc33180bcd8, + FFFF3180bd407fc33180bd40, + FFFF3180bda87fc33180bda8, + FFFF3180be107fc33180be10, + FFFF3180be787fc33180be78, + FFFF3180bee07fc33180bee0, + FFFF3180bf487fc33180bf48, + FFFF3180bfb07fc33180bfb0, + FFFF3180c0187fc33180c018, + FFFF3180c0807fc33180c080, + FFFF3180c0e87fc33180c0e8, + FFFF3180c1507fc33180c150, + FFFF3180c1b87fc33180c1b8, + FFFF3180c2207fc33180c220, + FFFF3180c2887fc33180c288, + FFFF3180c2f07fc33180c2f0, + FFFF3180c3587fc33180c358, + FFFF3180c3c07fc33180c3c0, + FFFF3180c4287fc33180c428, + FFFF3180c4907fc33180c490, + FFFF3180c4f87fc33180c4f8, + FFFF3180c5607fc33180c560, + FFFF3180c5c87fc33180c5c8, + FFFF3180c6307fc33180c630, + FFFF3180c6987fc33180c698, + FFFF3180c7007fc33180c700, + FFFF3180c7687fc33180c768, + FFFF3180c7d07fc33180c7d0, + FFFF3180c8387fc33180c838, + FFFF3180c8a07fc33180c8a0, + FFFF3180c9087fc33180c908, + FFFF3180c9707fc33180c970, + FFFF3180c9d87fc33180c9d8, + FFFF3180ca407fc33180ca40, + FFFF3180caa87fc33180caa8, + FFFF3180cb107fc33180cb10, + FFFF3180cb787fc33180cb78, + FFFF3180cbe07fc33180cbe0, + FFFF3180cc487fc33180cc48, + FFFF3180ccb07fc33180ccb0, + FFFF3180cd187fc33180cd18, + FFFF3180cd807fc33180cd80, + FFFF3180cde87fc33180cde8, + FFFF3180ce507fc33180ce50, + FFFF3180ceb87fc33180ceb8, + FFFF3180cf207fc33180cf20, + FFFF3180cf887fc33180cf88, + FFFF3180cff07fc33180cff0, + FFFF3180d0587fc33180d058, + FFFF3180d0c07fc33180d0c0, + FFFF3180d1287fc33180d128, + FFFF3180d1907fc33180d190, + FFFF3180d1f87fc33180d1f8, + FFFF3180d2607fc33180d260, + FFFF3180d2c87fc33180d2c8, + FFFF3180d3307fc33180d330, + FFFF3180d3987fc33180d398, + FFFF3180d4007fc33180d400, + FFFF3180d4687fc33180d468, + FFFF3180d4d07fc33180d4d0, + FFFF3180d5387fc33180d538, + FFFF3180d5a07fc33180d5a0, + FFFF3180d6087fc33180d608, + FFFF3180d6707fc33180d670, + FFFF3180d6d87fc33180d6d8, + FFFF3180d7407fc33180d740, + FFFF3180d7a87fc33180d7a8, + FFFF3180d8107fc33180d810, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1988,132 +1988,132 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF42c1566c07f922c1566c0 /* PBXTargetDependency */ = { + FFF4315078907fc331507890 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2c1587607f922c158760 /* PxFoundation */; - targetProxy = FFF52c1587607f922c158760 /* PBXContainerItemProxy */; + target = FFFA315044907fc331504490 /* PxFoundation */; + targetProxy = FFF5315044907fc331504490 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxFoundation */ - FFFF2b992d187f922b992d18 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b992d187f922b992d18 /* src/PsAllocator.cpp */; }; - FFFF2b992d807f922b992d80 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b992d807f922b992d80 /* src/PsAssert.cpp */; }; - FFFF2b992de87f922b992de8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b992de87f922b992de8 /* src/PsFoundation.cpp */; }; - FFFF2b992e507f922b992e50 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b992e507f922b992e50 /* src/PsMathUtils.cpp */; }; - FFFF2b992eb87f922b992eb8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b992eb87f922b992eb8 /* src/PsString.cpp */; }; - FFFF2b992f207f922b992f20 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b992f207f922b992f20 /* src/PsTempAllocator.cpp */; }; - FFFF2b992f887f922b992f88 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b992f887f922b992f88 /* src/PsUtilities.cpp */; }; - FFFF2b992ff07f922b992ff0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b992ff07f922b992ff0 /* src/unix/PsUnixAtomic.cpp */; }; - FFFF2b9930587f922b993058 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b9930587f922b993058 /* src/unix/PsUnixCpu.cpp */; }; - FFFF2b9930c07f922b9930c0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b9930c07f922b9930c0 /* src/unix/PsUnixFPU.cpp */; }; - FFFF2b9931287f922b993128 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b9931287f922b993128 /* src/unix/PsUnixMutex.cpp */; }; - FFFF2b9931907f922b993190 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b9931907f922b993190 /* src/unix/PsUnixPrintString.cpp */; }; - FFFF2b9931f87f922b9931f8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b9931f87f922b9931f8 /* src/unix/PsUnixSList.cpp */; }; - FFFF2b9932607f922b993260 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b9932607f922b993260 /* src/unix/PsUnixSocket.cpp */; }; - FFFF2b9932c87f922b9932c8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b9932c87f922b9932c8 /* src/unix/PsUnixSync.cpp */; }; - FFFF2b9933307f922b993330 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b9933307f922b993330 /* src/unix/PsUnixThread.cpp */; }; - FFFF2b9933987f922b993398 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2b9933987f922b993398 /* src/unix/PsUnixTime.cpp */; }; + FFFF3281c9187fc33281c918 /* src/PsAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281c9187fc33281c918 /* src/PsAllocator.cpp */; }; + FFFF3281c9807fc33281c980 /* src/PsAssert.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281c9807fc33281c980 /* src/PsAssert.cpp */; }; + FFFF3281c9e87fc33281c9e8 /* src/PsFoundation.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281c9e87fc33281c9e8 /* src/PsFoundation.cpp */; }; + FFFF3281ca507fc33281ca50 /* src/PsMathUtils.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281ca507fc33281ca50 /* src/PsMathUtils.cpp */; }; + FFFF3281cab87fc33281cab8 /* src/PsString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281cab87fc33281cab8 /* src/PsString.cpp */; }; + FFFF3281cb207fc33281cb20 /* src/PsTempAllocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281cb207fc33281cb20 /* src/PsTempAllocator.cpp */; }; + FFFF3281cb887fc33281cb88 /* src/PsUtilities.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281cb887fc33281cb88 /* src/PsUtilities.cpp */; }; + FFFF3281cbf07fc33281cbf0 /* src/unix/PsUnixAtomic.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281cbf07fc33281cbf0 /* src/unix/PsUnixAtomic.cpp */; }; + FFFF3281cc587fc33281cc58 /* src/unix/PsUnixCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281cc587fc33281cc58 /* src/unix/PsUnixCpu.cpp */; }; + FFFF3281ccc07fc33281ccc0 /* src/unix/PsUnixFPU.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281ccc07fc33281ccc0 /* src/unix/PsUnixFPU.cpp */; }; + FFFF3281cd287fc33281cd28 /* src/unix/PsUnixMutex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281cd287fc33281cd28 /* src/unix/PsUnixMutex.cpp */; }; + FFFF3281cd907fc33281cd90 /* src/unix/PsUnixPrintString.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281cd907fc33281cd90 /* src/unix/PsUnixPrintString.cpp */; }; + FFFF3281cdf87fc33281cdf8 /* src/unix/PsUnixSList.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281cdf87fc33281cdf8 /* src/unix/PsUnixSList.cpp */; }; + FFFF3281ce607fc33281ce60 /* src/unix/PsUnixSocket.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281ce607fc33281ce60 /* src/unix/PsUnixSocket.cpp */; }; + FFFF3281cec87fc33281cec8 /* src/unix/PsUnixSync.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281cec87fc33281cec8 /* src/unix/PsUnixSync.cpp */; }; + FFFF3281cf307fc33281cf30 /* src/unix/PsUnixThread.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281cf307fc33281cf30 /* src/unix/PsUnixThread.cpp */; }; + FFFF3281cf987fc33281cf98 /* src/unix/PsUnixTime.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3281cf987fc33281cf98 /* src/unix/PsUnixTime.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2c1587607f922c158760 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2b980e007f922b980e00 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b980e687f922b980e68 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b980ed07f922b980ed0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b980f387f922b980f38 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b980fa07f922b980fa0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9810087f922b981008 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9810707f922b981070 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9810d87f922b9810d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9811407f922b981140 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9811a87f922b9811a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9812107f922b981210 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9812787f922b981278 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9812e07f922b9812e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9813487f922b981348 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9813b07f922b9813b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9814187f922b981418 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9814807f922b981480 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9814e87f922b9814e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9815507f922b981550 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9815b87f922b9815b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9816207f922b981620 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9816887f922b981688 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9816f07f922b9816f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9817587f922b981758 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9817c07f922b9817c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9818287f922b981828 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9818907f922b981890 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9818f87f922b9818f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9819607f922b981960 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b991a007f922b991a00 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b991a687f922b991a68 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b991ad07f922b991ad0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b991b387f922b991b38 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b991ba07f922b991ba0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b991c087f922b991c08 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b991c707f922b991c70 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b991cd87f922b991cd8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b991d407f922b991d40 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b991da87f922b991da8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b991e107f922b991e10 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b991e787f922b991e78 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b991ee07f922b991ee0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b991f487f922b991f48 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b991fb07f922b991fb0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9920187f922b992018 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9920807f922b992080 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9920e87f922b9920e8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9921507f922b992150 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9921b87f922b9921b8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9922207f922b992220 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9922887f922b992288 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9922f07f922b9922f0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9923587f922b992358 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9923c07f922b9923c0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9924287f922b992428 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9924907f922b992490 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9924f87f922b9924f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9925607f922b992560 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9925c87f922b9925c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9926307f922b992630 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9926987f922b992698 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9927007f922b992700 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9927687f922b992768 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9927d07f922b9927d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9928387f922b992838 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9928a07f922b9928a0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9929087f922b992908 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9929707f922b992970 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9929d87f922b9929d8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b992a407f922b992a40 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b992aa87f922b992aa8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b992b107f922b992b10 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b992b787f922b992b78 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b992be07f922b992be0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b992c487f922b992c48 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b992cb07f922b992cb0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b992d187f922b992d18 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b992d807f922b992d80 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b992de87f922b992de8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b992e507f922b992e50 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b992eb87f922b992eb8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b992f207f922b992f20 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b992f887f922b992f88 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b992ff07f922b992ff0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9930587f922b993058 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9930c07f922b9930c0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9931287f922b993128 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9931907f922b993190 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9931f87f922b9931f8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9932607f922b993260 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9932c87f922b9932c8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9933307f922b993330 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9933987f922b993398 /* src/unix/PsUnixTime.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixTime.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixTime.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD315044907fc331504490 /* PxFoundation */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxFoundation"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD32800e007fc332800e00 /* Px.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Px.h"; path = "../../../../PxShared/include/foundation/Px.h"; sourceTree = SOURCE_ROOT; }; + FFFD32800e687fc332800e68 /* PxAllocatorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAllocatorCallback.h"; path = "../../../../PxShared/include/foundation/PxAllocatorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD32800ed07fc332800ed0 /* PxAssert.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxAssert.h"; path = "../../../../PxShared/include/foundation/PxAssert.h"; sourceTree = SOURCE_ROOT; }; + FFFD32800f387fc332800f38 /* PxBitAndData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBitAndData.h"; path = "../../../../PxShared/include/foundation/PxBitAndData.h"; sourceTree = SOURCE_ROOT; }; + FFFD32800fa07fc332800fa0 /* PxBounds3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxBounds3.h"; path = "../../../../PxShared/include/foundation/PxBounds3.h"; sourceTree = SOURCE_ROOT; }; + FFFD328010087fc332801008 /* PxErrorCallback.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrorCallback.h"; path = "../../../../PxShared/include/foundation/PxErrorCallback.h"; sourceTree = SOURCE_ROOT; }; + FFFD328010707fc332801070 /* PxErrors.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxErrors.h"; path = "../../../../PxShared/include/foundation/PxErrors.h"; sourceTree = SOURCE_ROOT; }; + FFFD328010d87fc3328010d8 /* PxFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFlags.h"; path = "../../../../PxShared/include/foundation/PxFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD328011407fc332801140 /* PxFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundation.h"; path = "../../../../PxShared/include/foundation/PxFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD328011a87fc3328011a8 /* PxFoundationVersion.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxFoundationVersion.h"; path = "../../../../PxShared/include/foundation/PxFoundationVersion.h"; sourceTree = SOURCE_ROOT; }; + FFFD328012107fc332801210 /* PxIO.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIO.h"; path = "../../../../PxShared/include/foundation/PxIO.h"; sourceTree = SOURCE_ROOT; }; + FFFD328012787fc332801278 /* PxIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxIntrinsics.h"; path = "../../../../PxShared/include/foundation/PxIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD328012e07fc3328012e0 /* PxMat33.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat33.h"; path = "../../../../PxShared/include/foundation/PxMat33.h"; sourceTree = SOURCE_ROOT; }; + FFFD328013487fc332801348 /* PxMat44.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMat44.h"; path = "../../../../PxShared/include/foundation/PxMat44.h"; sourceTree = SOURCE_ROOT; }; + FFFD328013b07fc3328013b0 /* PxMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMath.h"; path = "../../../../PxShared/include/foundation/PxMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD328014187fc332801418 /* PxMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMathUtils.h"; path = "../../../../PxShared/include/foundation/PxMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD328014807fc332801480 /* PxMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxMemory.h"; path = "../../../../PxShared/include/foundation/PxMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFD328014e87fc3328014e8 /* PxPlane.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPlane.h"; path = "../../../../PxShared/include/foundation/PxPlane.h"; sourceTree = SOURCE_ROOT; }; + FFFD328015507fc332801550 /* PxPreprocessor.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPreprocessor.h"; path = "../../../../PxShared/include/foundation/PxPreprocessor.h"; sourceTree = SOURCE_ROOT; }; + FFFD328015b87fc3328015b8 /* PxProfiler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxProfiler.h"; path = "../../../../PxShared/include/foundation/PxProfiler.h"; sourceTree = SOURCE_ROOT; }; + FFFD328016207fc332801620 /* PxQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxQuat.h"; path = "../../../../PxShared/include/foundation/PxQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFD328016887fc332801688 /* PxSimpleTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxSimpleTypes.h"; path = "../../../../PxShared/include/foundation/PxSimpleTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD328016f07fc3328016f0 /* PxStrideIterator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxStrideIterator.h"; path = "../../../../PxShared/include/foundation/PxStrideIterator.h"; sourceTree = SOURCE_ROOT; }; + FFFD328017587fc332801758 /* PxTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTransform.h"; path = "../../../../PxShared/include/foundation/PxTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFD328017c07fc3328017c0 /* PxUnionCast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxUnionCast.h"; path = "../../../../PxShared/include/foundation/PxUnionCast.h"; sourceTree = SOURCE_ROOT; }; + FFFD328018287fc332801828 /* PxVec2.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec2.h"; path = "../../../../PxShared/include/foundation/PxVec2.h"; sourceTree = SOURCE_ROOT; }; + FFFD328018907fc332801890 /* PxVec3.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec3.h"; path = "../../../../PxShared/include/foundation/PxVec3.h"; sourceTree = SOURCE_ROOT; }; + FFFD328018f87fc3328018f8 /* PxVec4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxVec4.h"; path = "../../../../PxShared/include/foundation/PxVec4.h"; sourceTree = SOURCE_ROOT; }; + FFFD328019607fc332801960 /* unix/PxUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "unix/PxUnixIntrinsics.h"; path = "../../../../PxShared/include/foundation/unix/PxUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281b6007fc33281b600 /* include/Ps.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/Ps.h"; path = "../../../../PxShared/src/foundation/include/Ps.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281b6687fc33281b668 /* include/PsAlignedMalloc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlignedMalloc.h"; path = "../../../../PxShared/src/foundation/include/PsAlignedMalloc.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281b6d07fc33281b6d0 /* include/PsAlloca.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAlloca.h"; path = "../../../../PxShared/src/foundation/include/PsAlloca.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281b7387fc33281b738 /* include/PsAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281b7a07fc33281b7a0 /* include/PsAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAoS.h"; path = "../../../../PxShared/src/foundation/include/PsAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281b8087fc33281b808 /* include/PsArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsArray.h"; path = "../../../../PxShared/src/foundation/include/PsArray.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281b8707fc33281b870 /* include/PsAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsAtomic.h"; path = "../../../../PxShared/src/foundation/include/PsAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281b8d87fc33281b8d8 /* include/PsBasicTemplates.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBasicTemplates.h"; path = "../../../../PxShared/src/foundation/include/PsBasicTemplates.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281b9407fc33281b940 /* include/PsBitUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBitUtils.h"; path = "../../../../PxShared/src/foundation/include/PsBitUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281b9a87fc33281b9a8 /* include/PsBroadcast.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsBroadcast.h"; path = "../../../../PxShared/src/foundation/include/PsBroadcast.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281ba107fc33281ba10 /* include/PsCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsCpu.h"; path = "../../../../PxShared/src/foundation/include/PsCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281ba787fc33281ba78 /* include/PsFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFPU.h"; path = "../../../../PxShared/src/foundation/include/PsFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281bae07fc33281bae0 /* include/PsFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsFoundation.h"; path = "../../../../PxShared/src/foundation/include/PsFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281bb487fc33281bb48 /* include/PsHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHash.h"; path = "../../../../PxShared/src/foundation/include/PsHash.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281bbb07fc33281bbb0 /* include/PsHashInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashInternals.h"; path = "../../../../PxShared/src/foundation/include/PsHashInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281bc187fc33281bc18 /* include/PsHashMap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashMap.h"; path = "../../../../PxShared/src/foundation/include/PsHashMap.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281bc807fc33281bc80 /* include/PsHashSet.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsHashSet.h"; path = "../../../../PxShared/src/foundation/include/PsHashSet.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281bce87fc33281bce8 /* include/PsInlineAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281bd507fc33281bd50 /* include/PsInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/PsInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281bdb87fc33281bdb8 /* include/PsInlineArray.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsInlineArray.h"; path = "../../../../PxShared/src/foundation/include/PsInlineArray.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281be207fc33281be20 /* include/PsIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/PsIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281be887fc33281be88 /* include/PsMathUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMathUtils.h"; path = "../../../../PxShared/src/foundation/include/PsMathUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281bef07fc33281bef0 /* include/PsMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsMutex.h"; path = "../../../../PxShared/src/foundation/include/PsMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281bf587fc33281bf58 /* include/PsPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPool.h"; path = "../../../../PxShared/src/foundation/include/PsPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281bfc07fc33281bfc0 /* include/PsSList.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSList.h"; path = "../../../../PxShared/src/foundation/include/PsSList.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c0287fc33281c028 /* include/PsSocket.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSocket.h"; path = "../../../../PxShared/src/foundation/include/PsSocket.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c0907fc33281c090 /* include/PsSort.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSort.h"; path = "../../../../PxShared/src/foundation/include/PsSort.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c0f87fc33281c0f8 /* include/PsSortInternals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSortInternals.h"; path = "../../../../PxShared/src/foundation/include/PsSortInternals.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c1607fc33281c160 /* include/PsString.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsString.h"; path = "../../../../PxShared/src/foundation/include/PsString.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c1c87fc33281c1c8 /* include/PsSync.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsSync.h"; path = "../../../../PxShared/src/foundation/include/PsSync.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c2307fc33281c230 /* include/PsTempAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTempAllocator.h"; path = "../../../../PxShared/src/foundation/include/PsTempAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c2987fc33281c298 /* include/PsThread.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsThread.h"; path = "../../../../PxShared/src/foundation/include/PsThread.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c3007fc33281c300 /* include/PsTime.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsTime.h"; path = "../../../../PxShared/src/foundation/include/PsTime.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c3687fc33281c368 /* include/PsUserAllocated.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUserAllocated.h"; path = "../../../../PxShared/src/foundation/include/PsUserAllocated.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c3d07fc33281c3d0 /* include/PsUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c4387fc33281c438 /* include/PsVecMath.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMath.h"; path = "../../../../PxShared/src/foundation/include/PsVecMath.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c4a07fc33281c4a0 /* include/PsVecMathAoSScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalar.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c5087fc33281c508 /* include/PsVecMathAoSScalarInline.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathAoSScalarInline.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathAoSScalarInline.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c5707fc33281c570 /* include/PsVecMathSSE.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathSSE.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathSSE.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c5d87fc33281c5d8 /* include/PsVecMathUtilities.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecMathUtilities.h"; path = "../../../../PxShared/src/foundation/include/PsVecMathUtilities.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c6407fc33281c640 /* include/PsVecQuat.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecQuat.h"; path = "../../../../PxShared/src/foundation/include/PsVecQuat.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c6a87fc33281c6a8 /* include/PsVecTransform.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsVecTransform.h"; path = "../../../../PxShared/src/foundation/include/PsVecTransform.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c7107fc33281c710 /* include/unix/PsUnixAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c7787fc33281c778 /* include/unix/PsUnixFPU.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixFPU.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixFPU.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c7e07fc33281c7e0 /* include/unix/PsUnixInlineAoS.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixInlineAoS.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixInlineAoS.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c8487fc33281c848 /* include/unix/PsUnixIntrinsics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixIntrinsics.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixIntrinsics.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c8b07fc33281c8b0 /* include/unix/PsUnixTrigConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/unix/PsUnixTrigConstants.h"; path = "../../../../PxShared/src/foundation/include/unix/PsUnixTrigConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD3281c9187fc33281c918 /* src/PsAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281c9807fc33281c980 /* src/PsAssert.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsAssert.cpp"; path = "../../../../PxShared/src/foundation/src/PsAssert.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281c9e87fc33281c9e8 /* src/PsFoundation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsFoundation.cpp"; path = "../../../../PxShared/src/foundation/src/PsFoundation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281ca507fc33281ca50 /* src/PsMathUtils.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsMathUtils.cpp"; path = "../../../../PxShared/src/foundation/src/PsMathUtils.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281cab87fc33281cab8 /* src/PsString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsString.cpp"; path = "../../../../PxShared/src/foundation/src/PsString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281cb207fc33281cb20 /* src/PsTempAllocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsTempAllocator.cpp"; path = "../../../../PxShared/src/foundation/src/PsTempAllocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281cb887fc33281cb88 /* src/PsUtilities.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PsUtilities.cpp"; path = "../../../../PxShared/src/foundation/src/PsUtilities.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281cbf07fc33281cbf0 /* src/unix/PsUnixAtomic.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixAtomic.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixAtomic.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281cc587fc33281cc58 /* src/unix/PsUnixCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixCpu.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281ccc07fc33281ccc0 /* src/unix/PsUnixFPU.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixFPU.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixFPU.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281cd287fc33281cd28 /* src/unix/PsUnixMutex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixMutex.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixMutex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281cd907fc33281cd90 /* src/unix/PsUnixPrintString.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixPrintString.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixPrintString.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281cdf87fc33281cdf8 /* src/unix/PsUnixSList.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSList.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSList.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281ce607fc33281ce60 /* src/unix/PsUnixSocket.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSocket.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSocket.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281cec87fc33281cec8 /* src/unix/PsUnixSync.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixSync.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixSync.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281cf307fc33281cf30 /* src/unix/PsUnixThread.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/unix/PsUnixThread.cpp"; path = "../../../../PxShared/src/foundation/src/unix/PsUnixThread.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3281cf987fc33281cf98 /* 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 */ - FFF22c1587607f922c158760 /* Resources */ = { + FFF2315044907fc331504490 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2123,7 +2123,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2c1587607f922c158760 /* Frameworks */ = { + FFFC315044907fc331504490 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2133,27 +2133,27 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82c1587607f922c158760 /* Sources */ = { + FFF8315044907fc331504490 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2b992d187f922b992d18, - FFFF2b992d807f922b992d80, - FFFF2b992de87f922b992de8, - FFFF2b992e507f922b992e50, - FFFF2b992eb87f922b992eb8, - FFFF2b992f207f922b992f20, - FFFF2b992f887f922b992f88, - FFFF2b992ff07f922b992ff0, - FFFF2b9930587f922b993058, - FFFF2b9930c07f922b9930c0, - FFFF2b9931287f922b993128, - FFFF2b9931907f922b993190, - FFFF2b9931f87f922b9931f8, - FFFF2b9932607f922b993260, - FFFF2b9932c87f922b9932c8, - FFFF2b9933307f922b993330, - FFFF2b9933987f922b993398, + FFFF3281c9187fc33281c918, + FFFF3281c9807fc33281c980, + FFFF3281c9e87fc33281c9e8, + FFFF3281ca507fc33281ca50, + FFFF3281cab87fc33281cab8, + FFFF3281cb207fc33281cb20, + FFFF3281cb887fc33281cb88, + FFFF3281cbf07fc33281cbf0, + FFFF3281cc587fc33281cc58, + FFFF3281ccc07fc33281ccc0, + FFFF3281cd287fc33281cd28, + FFFF3281cd907fc33281cd90, + FFFF3281cdf87fc33281cdf8, + FFFF3281ce607fc33281ce60, + FFFF3281cec87fc33281cec8, + FFFF3281cf307fc33281cf30, + FFFF3281cf987fc33281cf98, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2165,103 +2165,103 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxPvdSDK */ - FFFF2c81e7a87f922c81e7a8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c81e7a87f922c81e7a8 /* src/PxProfileEventImpl.cpp */; }; - FFFF2c81e8107f922c81e810 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c81e8107f922c81e810 /* src/PxPvd.cpp */; }; - FFFF2c81e8787f922c81e878 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c81e8787f922c81e878 /* src/PxPvdDataStream.cpp */; }; - FFFF2c81e8e07f922c81e8e0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c81e8e07f922c81e8e0 /* src/PxPvdDefaultFileTransport.cpp */; }; - FFFF2c81e9487f922c81e948 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c81e9487f922c81e948 /* src/PxPvdDefaultSocketTransport.cpp */; }; - FFFF2c81e9b07f922c81e9b0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c81e9b07f922c81e9b0 /* src/PxPvdImpl.cpp */; }; - FFFF2c81ea187f922c81ea18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c81ea187f922c81ea18 /* src/PxPvdMemClient.cpp */; }; - FFFF2c81ea807f922c81ea80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c81ea807f922c81ea80 /* src/PxPvdObjectModelMetaData.cpp */; }; - FFFF2c81eae87f922c81eae8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c81eae87f922c81eae8 /* src/PxPvdObjectRegistrar.cpp */; }; - FFFF2c81eb507f922c81eb50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c81eb507f922c81eb50 /* src/PxPvdProfileZoneClient.cpp */; }; - FFFF2c81ebb87f922c81ebb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c81ebb87f922c81ebb8 /* src/PxPvdUserRenderer.cpp */; }; + FFFF309afba87fc3309afba8 /* src/PxProfileEventImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309afba87fc3309afba8 /* src/PxProfileEventImpl.cpp */; }; + FFFF309afc107fc3309afc10 /* src/PxPvd.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309afc107fc3309afc10 /* src/PxPvd.cpp */; }; + FFFF309afc787fc3309afc78 /* src/PxPvdDataStream.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309afc787fc3309afc78 /* src/PxPvdDataStream.cpp */; }; + FFFF309afce07fc3309afce0 /* src/PxPvdDefaultFileTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309afce07fc3309afce0 /* src/PxPvdDefaultFileTransport.cpp */; }; + FFFF309afd487fc3309afd48 /* src/PxPvdDefaultSocketTransport.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309afd487fc3309afd48 /* src/PxPvdDefaultSocketTransport.cpp */; }; + FFFF309afdb07fc3309afdb0 /* src/PxPvdImpl.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309afdb07fc3309afdb0 /* src/PxPvdImpl.cpp */; }; + FFFF309afe187fc3309afe18 /* src/PxPvdMemClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309afe187fc3309afe18 /* src/PxPvdMemClient.cpp */; }; + FFFF309afe807fc3309afe80 /* src/PxPvdObjectModelMetaData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309afe807fc3309afe80 /* src/PxPvdObjectModelMetaData.cpp */; }; + FFFF309afee87fc3309afee8 /* src/PxPvdObjectRegistrar.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309afee87fc3309afee8 /* src/PxPvdObjectRegistrar.cpp */; }; + FFFF309aff507fc3309aff50 /* src/PxPvdProfileZoneClient.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309aff507fc3309aff50 /* src/PxPvdProfileZoneClient.cpp */; }; + FFFF309affb87fc3309affb8 /* src/PxPvdUserRenderer.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309affb87fc3309affb8 /* src/PxPvdUserRenderer.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2c0bd6207f922c0bd620 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c0be4f07f922c0be4f0 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c0be5587f922c0be558 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81e4007f922c81e400 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81e4687f922c81e468 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81e4d07f922c81e4d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81e5387f922c81e538 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81e5a07f922c81e5a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81e6087f922c81e608 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81e6707f922c81e670 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81e6d87f922c81e6d8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81e7407f922c81e740 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81e7a87f922c81e7a8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c81e8107f922c81e810 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c81e8787f922c81e878 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c81e8e07f922c81e8e0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c81e9487f922c81e948 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c81e9b07f922c81e9b0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c81ea187f922c81ea18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c81ea807f922c81ea80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c81eae87f922c81eae8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c81eb507f922c81eb50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c81ebb87f922c81ebb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c81ec207f922c81ec20 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81ec887f922c81ec88 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81ecf07f922c81ecf0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81ed587f922c81ed58 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81edc07f922c81edc0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81ee287f922c81ee28 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81ee907f922c81ee90 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81eef87f922c81eef8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81ef607f922c81ef60 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81efc87f922c81efc8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f0307f922c81f030 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f0987f922c81f098 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f1007f922c81f100 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f1687f922c81f168 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f1d07f922c81f1d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f2387f922c81f238 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f2a07f922c81f2a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f3087f922c81f308 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f3707f922c81f370 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f3d87f922c81f3d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f4407f922c81f440 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f4a87f922c81f4a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f5107f922c81f510 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f5787f922c81f578 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f5e07f922c81f5e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f6487f922c81f648 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f6b07f922c81f6b0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f7187f922c81f718 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f7807f922c81f780 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f7e87f922c81f7e8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f8507f922c81f850 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f8b87f922c81f8b8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f9207f922c81f920 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f9887f922c81f988 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81f9f07f922c81f9f0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81fa587f922c81fa58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81fac07f922c81fac0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81fb287f922c81fb28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81fb907f922c81fb90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81fbf87f922c81fbf8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81fc607f922c81fc60 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81fcc87f922c81fcc8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81fd307f922c81fd30 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81fd987f922c81fd98 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81fe007f922c81fe00 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81fe687f922c81fe68 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81fed07f922c81fed0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81ff387f922c81ff38 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c81ffa07f922c81ffa0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8200087f922c820008 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8200707f922c820070 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8200d87f922c8200d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8201407f922c820140 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8201a87f922c8201a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8202107f922c820210 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8202787f922c820278 /* src/PxPvdUserRenderTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD31142a807fc331142a80 /* PxPvdSDK */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxPvdSDK"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD31147a807fc331147a80 /* PxPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvd.h"; path = "../../../../PxShared/include/pvd/PxPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD31147ae87fc331147ae8 /* PxPvdTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxPvdTransport.h"; path = "../../../../PxShared/include/pvd/PxPvdTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD309af8007fc3309af800 /* include/PsPvd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PsPvd.h"; path = "../../../../PxShared/src/pvd/include/PsPvd.h"; sourceTree = SOURCE_ROOT; }; + FFFD309af8687fc3309af868 /* include/PxProfileAllocatorWrapper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxProfileAllocatorWrapper.h"; path = "../../../../PxShared/src/pvd/include/PxProfileAllocatorWrapper.h"; sourceTree = SOURCE_ROOT; }; + FFFD309af8d07fc3309af8d0 /* include/PxPvdClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdClient.h"; path = "../../../../PxShared/src/pvd/include/PxPvdClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD309af9387fc3309af938 /* include/PxPvdDataStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStream.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD309af9a07fc3309af9a0 /* include/PxPvdDataStreamHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdDataStreamHelpers.h"; path = "../../../../PxShared/src/pvd/include/PxPvdDataStreamHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD309afa087fc3309afa08 /* include/PxPvdErrorCodes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdErrorCodes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdErrorCodes.h"; sourceTree = SOURCE_ROOT; }; + FFFD309afa707fc3309afa70 /* include/PxPvdObjectModelBaseTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdObjectModelBaseTypes.h"; path = "../../../../PxShared/src/pvd/include/PxPvdObjectModelBaseTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD309afad87fc3309afad8 /* include/PxPvdRenderBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdRenderBuffer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdRenderBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD309afb407fc3309afb40 /* include/PxPvdUserRenderer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "include/PxPvdUserRenderer.h"; path = "../../../../PxShared/src/pvd/include/PxPvdUserRenderer.h"; sourceTree = SOURCE_ROOT; }; + FFFD309afba87fc3309afba8 /* src/PxProfileEventImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxProfileEventImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309afc107fc3309afc10 /* src/PxPvd.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvd.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvd.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309afc787fc3309afc78 /* src/PxPvdDataStream.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDataStream.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDataStream.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309afce07fc3309afce0 /* src/PxPvdDefaultFileTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309afd487fc3309afd48 /* src/PxPvdDefaultSocketTransport.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309afdb07fc3309afdb0 /* src/PxPvdImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309afe187fc3309afe18 /* src/PxPvdMemClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309afe807fc3309afe80 /* src/PxPvdObjectModelMetaData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309afee87fc3309afee8 /* src/PxPvdObjectRegistrar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309aff507fc3309aff50 /* src/PxPvdProfileZoneClient.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309affb87fc3309affb8 /* src/PxPvdUserRenderer.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderer.cpp"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderer.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309b00207fc3309b0020 /* src/PxProfileBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileBase.h"; path = "../../../../PxShared/src/pvd/src/PxProfileBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b00887fc3309b0088 /* src/PxProfileCompileTimeEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileCompileTimeEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileCompileTimeEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b00f07fc3309b00f0 /* src/PxProfileContextProvider.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProvider.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProvider.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b01587fc3309b0158 /* src/PxProfileContextProviderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileContextProviderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileContextProviderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b01c07fc3309b01c0 /* src/PxProfileDataBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b02287fc3309b0228 /* src/PxProfileDataParsing.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileDataParsing.h"; path = "../../../../PxShared/src/pvd/src/PxProfileDataParsing.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b02907fc3309b0290 /* src/PxProfileEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b02f87fc3309b02f8 /* src/PxProfileEventBufferAtomic.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferAtomic.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferAtomic.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b03607fc3309b0360 /* src/PxProfileEventBufferClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClient.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b03c87fc3309b03c8 /* src/PxProfileEventBufferClientManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventBufferClientManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventBufferClientManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b04307fc3309b0430 /* src/PxProfileEventFilter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventFilter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventFilter.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b04987fc3309b0498 /* src/PxProfileEventHandler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventHandler.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventHandler.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b05007fc3309b0500 /* src/PxProfileEventId.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventId.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventId.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b05687fc3309b0568 /* src/PxProfileEventMutex.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventMutex.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventMutex.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b05d07fc3309b05d0 /* src/PxProfileEventNames.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventNames.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventNames.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b06387fc3309b0638 /* src/PxProfileEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b06a07fc3309b06a0 /* src/PxProfileEventSender.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSender.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSender.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b07087fc3309b0708 /* src/PxProfileEventSerialization.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSerialization.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSerialization.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b07707fc3309b0770 /* src/PxProfileEventSystem.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEventSystem.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEventSystem.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b07d87fc3309b07d8 /* src/PxProfileEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b08407fc3309b0840 /* src/PxProfileMemory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemory.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemory.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b08a87fc3309b08a8 /* src/PxProfileMemoryBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b09107fc3309b0910 /* src/PxProfileMemoryEventBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventBuffer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b09787fc3309b0978 /* src/PxProfileMemoryEventParser.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventParser.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventParser.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b09e07fc3309b09e0 /* src/PxProfileMemoryEventRecorder.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventRecorder.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventRecorder.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b0a487fc3309b0a48 /* src/PxProfileMemoryEventReflexiveWriter.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventReflexiveWriter.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventReflexiveWriter.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b0ab07fc3309b0ab0 /* src/PxProfileMemoryEventSummarizer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventSummarizer.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventSummarizer.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b0b187fc3309b0b18 /* src/PxProfileMemoryEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b0b807fc3309b0b80 /* src/PxProfileMemoryEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileMemoryEvents.h"; path = "../../../../PxShared/src/pvd/src/PxProfileMemoryEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b0be87fc3309b0be8 /* src/PxProfileScopedEvent.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedEvent.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedEvent.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b0c507fc3309b0c50 /* src/PxProfileScopedMutexLock.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileScopedMutexLock.h"; path = "../../../../PxShared/src/pvd/src/PxProfileScopedMutexLock.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b0cb87fc3309b0cb8 /* src/PxProfileZone.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZone.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZone.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b0d207fc3309b0d20 /* src/PxProfileZoneImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b0d887fc3309b0d88 /* src/PxProfileZoneManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManager.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b0df07fc3309b0df0 /* src/PxProfileZoneManagerImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxProfileZoneManagerImpl.h"; path = "../../../../PxShared/src/pvd/src/PxProfileZoneManagerImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b0e587fc3309b0e58 /* src/PxPvdBits.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdBits.h"; path = "../../../../PxShared/src/pvd/src/PxPvdBits.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b0ec07fc3309b0ec0 /* src/PxPvdByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b0f287fc3309b0f28 /* src/PxPvdCommStreamEventSink.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEventSink.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEventSink.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b0f907fc3309b0f90 /* src/PxPvdCommStreamEvents.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamEvents.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamEvents.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b0ff87fc3309b0ff8 /* src/PxPvdCommStreamSDKEventTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamSDKEventTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamSDKEventTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b10607fc3309b1060 /* src/PxPvdCommStreamTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdCommStreamTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdCommStreamTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b10c87fc3309b10c8 /* src/PxPvdDefaultFileTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultFileTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultFileTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b11307fc3309b1130 /* src/PxPvdDefaultSocketTransport.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdDefaultSocketTransport.h"; path = "../../../../PxShared/src/pvd/src/PxPvdDefaultSocketTransport.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b11987fc3309b1198 /* src/PxPvdFoundation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdFoundation.h"; path = "../../../../PxShared/src/pvd/src/PxPvdFoundation.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b12007fc3309b1200 /* src/PxPvdImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b12687fc3309b1268 /* src/PxPvdInternalByteStreams.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdInternalByteStreams.h"; path = "../../../../PxShared/src/pvd/src/PxPvdInternalByteStreams.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b12d07fc3309b12d0 /* src/PxPvdMarshalling.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMarshalling.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMarshalling.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b13387fc3309b1338 /* src/PxPvdMemClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdMemClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdMemClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b13a07fc3309b13a0 /* src/PxPvdObjectModel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModel.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModel.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b14087fc3309b1408 /* src/PxPvdObjectModelInternalTypeDefs.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypeDefs.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypeDefs.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b14707fc3309b1470 /* src/PxPvdObjectModelInternalTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelInternalTypes.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelInternalTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b14d87fc3309b14d8 /* src/PxPvdObjectModelMetaData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectModelMetaData.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectModelMetaData.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b15407fc3309b1540 /* src/PxPvdObjectRegistrar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdObjectRegistrar.h"; path = "../../../../PxShared/src/pvd/src/PxPvdObjectRegistrar.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b15a87fc3309b15a8 /* src/PxPvdProfileZoneClient.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdProfileZoneClient.h"; path = "../../../../PxShared/src/pvd/src/PxPvdProfileZoneClient.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b16107fc3309b1610 /* src/PxPvdUserRenderImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "src/PxPvdUserRenderImpl.h"; path = "../../../../PxShared/src/pvd/src/PxPvdUserRenderImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD309b16787fc3309b1678 /* 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 */ - FFF22c0bd6207f922c0bd620 /* Resources */ = { + FFF231142a807fc331142a80 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2271,7 +2271,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2c0bd6207f922c0bd620 /* Frameworks */ = { + FFFC31142a807fc331142a80 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2281,21 +2281,21 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82c0bd6207f922c0bd620 /* Sources */ = { + FFF831142a807fc331142a80 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c81e7a87f922c81e7a8, - FFFF2c81e8107f922c81e810, - FFFF2c81e8787f922c81e878, - FFFF2c81e8e07f922c81e8e0, - FFFF2c81e9487f922c81e948, - FFFF2c81e9b07f922c81e9b0, - FFFF2c81ea187f922c81ea18, - FFFF2c81ea807f922c81ea80, - FFFF2c81eae87f922c81eae8, - FFFF2c81eb507f922c81eb50, - FFFF2c81ebb87f922c81ebb8, + FFFF309afba87fc3309afba8, + FFFF309afc107fc3309afc10, + FFFF309afc787fc3309afc78, + FFFF309afce07fc3309afce0, + FFFF309afd487fc3309afd48, + FFFF309afdb07fc3309afdb0, + FFFF309afe187fc3309afe18, + FFFF309afe807fc3309afe80, + FFFF309afee87fc3309afee8, + FFFF309aff507fc3309aff50, + FFFF309affb87fc3309affb8, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2304,108 +2304,108 @@ /* Begin PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */ /* Begin PBXTargetDependency section */ - FFF42c0f3ab07f922c0f3ab0 /* PBXTargetDependency */ = { + FFF431141cc07fc331141cc0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = FFFA2c1587607f922c158760 /* PxFoundation */; - targetProxy = FFF52c1587607f922c158760 /* PBXContainerItemProxy */; + target = FFFA315044907fc331504490 /* PxFoundation */; + targetProxy = FFF5315044907fc331504490 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevel */ - FFFF2c13eca07f922c13eca0 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD2c13eca07f922c13eca0 /* px_globals.cpp */; }; - FFFF2c140f807f922c140f80 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2c140f807f922c140f80 /* PxsCCD.cpp */; }; - FFFF2c140fe87f922c140fe8 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2c140fe87f922c140fe8 /* PxsContactManager.cpp */; }; - FFFF2c1410507f922c141050 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2c1410507f922c141050 /* PxsContext.cpp */; }; - FFFF2c1410b87f922c1410b8 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2c1410b87f922c1410b8 /* PxsDefaultMemoryManager.cpp */; }; - FFFF2c1411207f922c141120 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2c1411207f922c141120 /* PxsIslandSim.cpp */; }; - FFFF2c1411887f922c141188 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2c1411887f922c141188 /* PxsMaterialCombiner.cpp */; }; - FFFF2c1411f07f922c1411f0 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2c1411f07f922c1411f0 /* PxsNphaseImplementationContext.cpp */; }; - FFFF2c1412587f922c141258 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD2c1412587f922c141258 /* PxsSimpleIslandManager.cpp */; }; - FFFF2b9af6007f922b9af600 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b9af6007f922b9af600 /* collision/PxcContact.cpp */; }; - FFFF2b9af6687f922b9af668 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b9af6687f922b9af668 /* pipeline/PxcContactCache.cpp */; }; - FFFF2b9af6d07f922b9af6d0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b9af6d07f922b9af6d0 /* pipeline/PxcContactMethodImpl.cpp */; }; - FFFF2b9af7387f922b9af738 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b9af7387f922b9af738 /* pipeline/PxcMaterialHeightField.cpp */; }; - FFFF2b9af7a07f922b9af7a0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b9af7a07f922b9af7a0 /* pipeline/PxcMaterialMesh.cpp */; }; - FFFF2b9af8087f922b9af808 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b9af8087f922b9af808 /* pipeline/PxcMaterialMethodImpl.cpp */; }; - FFFF2b9af8707f922b9af870 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b9af8707f922b9af870 /* pipeline/PxcMaterialShape.cpp */; }; - FFFF2b9af8d87f922b9af8d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b9af8d87f922b9af8d8 /* pipeline/PxcNpBatch.cpp */; }; - FFFF2b9af9407f922b9af940 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b9af9407f922b9af940 /* pipeline/PxcNpCacheStreamPair.cpp */; }; - FFFF2b9af9a87f922b9af9a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b9af9a87f922b9af9a8 /* pipeline/PxcNpContactPrepShared.cpp */; }; - FFFF2b9afa107f922b9afa10 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b9afa107f922b9afa10 /* pipeline/PxcNpMemBlockPool.cpp */; }; - FFFF2b9afa787f922b9afa78 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD2b9afa787f922b9afa78 /* pipeline/PxcNpThreadContext.cpp */; }; + FFFF3300ee807fc33300ee80 /* px_globals.cpp in API Source */= { isa = PBXBuildFile; fileRef = FFFD3300ee807fc33300ee80 /* px_globals.cpp */; }; + FFFF330118007fc333011800 /* PxsCCD.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD330118007fc333011800 /* PxsCCD.cpp */; }; + FFFF330118687fc333011868 /* PxsContactManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD330118687fc333011868 /* PxsContactManager.cpp */; }; + FFFF330118d07fc3330118d0 /* PxsContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD330118d07fc3330118d0 /* PxsContext.cpp */; }; + FFFF330119387fc333011938 /* PxsDefaultMemoryManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD330119387fc333011938 /* PxsDefaultMemoryManager.cpp */; }; + FFFF330119a07fc3330119a0 /* PxsIslandSim.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD330119a07fc3330119a0 /* PxsIslandSim.cpp */; }; + FFFF33011a087fc333011a08 /* PxsMaterialCombiner.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD33011a087fc333011a08 /* PxsMaterialCombiner.cpp */; }; + FFFF33011a707fc333011a70 /* PxsNphaseImplementationContext.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD33011a707fc333011a70 /* PxsNphaseImplementationContext.cpp */; }; + FFFF33011ad87fc333011ad8 /* PxsSimpleIslandManager.cpp in Software Source */= { isa = PBXBuildFile; fileRef = FFFD33011ad87fc333011ad8 /* PxsSimpleIslandManager.cpp */; }; + FFFF33808e007fc333808e00 /* collision/PxcContact.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD33808e007fc333808e00 /* collision/PxcContact.cpp */; }; + FFFF33808e687fc333808e68 /* pipeline/PxcContactCache.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD33808e687fc333808e68 /* pipeline/PxcContactCache.cpp */; }; + FFFF33808ed07fc333808ed0 /* pipeline/PxcContactMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD33808ed07fc333808ed0 /* pipeline/PxcContactMethodImpl.cpp */; }; + FFFF33808f387fc333808f38 /* pipeline/PxcMaterialHeightField.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD33808f387fc333808f38 /* pipeline/PxcMaterialHeightField.cpp */; }; + FFFF33808fa07fc333808fa0 /* pipeline/PxcMaterialMesh.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD33808fa07fc333808fa0 /* pipeline/PxcMaterialMesh.cpp */; }; + FFFF338090087fc333809008 /* pipeline/PxcMaterialMethodImpl.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD338090087fc333809008 /* pipeline/PxcMaterialMethodImpl.cpp */; }; + FFFF338090707fc333809070 /* pipeline/PxcMaterialShape.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD338090707fc333809070 /* pipeline/PxcMaterialShape.cpp */; }; + FFFF338090d87fc3338090d8 /* pipeline/PxcNpBatch.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD338090d87fc3338090d8 /* pipeline/PxcNpBatch.cpp */; }; + FFFF338091407fc333809140 /* pipeline/PxcNpCacheStreamPair.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD338091407fc333809140 /* pipeline/PxcNpCacheStreamPair.cpp */; }; + FFFF338091a87fc3338091a8 /* pipeline/PxcNpContactPrepShared.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD338091a87fc3338091a8 /* pipeline/PxcNpContactPrepShared.cpp */; }; + FFFF338092107fc333809210 /* pipeline/PxcNpMemBlockPool.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD338092107fc333809210 /* pipeline/PxcNpMemBlockPool.cpp */; }; + FFFF338092787fc333809278 /* pipeline/PxcNpThreadContext.cpp in Common Source */= { isa = PBXBuildFile; fileRef = FFFD338092787fc333809278 /* pipeline/PxcNpThreadContext.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2c12cc907f922c12cc90 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c13eca07f922c13eca0 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c130b107f922c130b10 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c130b787f922c130b78 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c130be07f922c130be0 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c130c487f922c130c48 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c130cb07f922c130cb0 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c130d187f922c130d18 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c130d807f922c130d80 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c130de87f922c130de8 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c130e507f922c130e50 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c140f807f922c140f80 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c140fe87f922c140fe8 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c1410507f922c141050 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c1410b87f922c1410b8 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c1411207f922c141120 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c1411887f922c141188 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c1411f07f922c1411f0 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c1412587f922c141258 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b0c007f922b9b0c00 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b0c687f922b9b0c68 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b0cd07f922b9b0cd0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b0d387f922b9b0d38 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b0da07f922b9b0da0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b0e087f922b9b0e08 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b0e707f922b9b0e70 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b0ed87f922b9b0ed8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b0f407f922b9b0f40 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b0fa87f922b9b0fa8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b10107f922b9b1010 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b10787f922b9b1078 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b10e07f922b9b10e0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b11487f922b9b1148 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b11b07f922b9b11b0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b12187f922b9b1218 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b12807f922b9b1280 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b12e87f922b9b12e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b13507f922b9b1350 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b13b87f922b9b13b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9af6007f922b9af600 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9af6687f922b9af668 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9af6d07f922b9af6d0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9af7387f922b9af738 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9af7a07f922b9af7a0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9af8087f922b9af808 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9af8707f922b9af870 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9af8d87f922b9af8d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9af9407f922b9af940 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9af9a87f922b9af9a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9afa107f922b9afa10 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9afa787f922b9afa78 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2b9afe007f922b9afe00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9afe687f922b9afe68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9afed07f922b9afed0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9aff387f922b9aff38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9affa07f922b9affa0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b00087f922b9b0008 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b00707f922b9b0070 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b00d87f922b9b00d8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b01407f922b9b0140 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b01a87f922b9b01a8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b02107f922b9b0210 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b02787f922b9b0278 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b02e07f922b9b02e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b03487f922b9b0348 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2b9b03b07f922b9b03b0 /* utils/PxcThreadCoherentCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcThreadCoherentCache.h"; path = "../../LowLevel/common/include/utils/PxcThreadCoherentCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD3300a7207fc33300a720 /* LowLevel */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevel"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3300ee807fc33300ee80 /* px_globals.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "px_globals.cpp"; path = "../../LowLevel/API/src/px_globals.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD330106907fc333010690 /* PxsMaterialCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCore.h"; path = "../../LowLevel/API/include/PxsMaterialCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD330106f87fc3330106f8 /* PxsMaterialManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialManager.h"; path = "../../LowLevel/API/include/PxsMaterialManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD330107607fc333010760 /* PxvConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvConfig.h"; path = "../../LowLevel/API/include/PxvConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD330107c87fc3330107c8 /* PxvContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvContext.h"; path = "../../LowLevel/API/include/PxvContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD330108307fc333010830 /* PxvDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvDynamics.h"; path = "../../LowLevel/API/include/PxvDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD330108987fc333010898 /* PxvGeometry.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGeometry.h"; path = "../../LowLevel/API/include/PxvGeometry.h"; sourceTree = SOURCE_ROOT; }; + FFFD330109007fc333010900 /* PxvGlobals.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvGlobals.h"; path = "../../LowLevel/API/include/PxvGlobals.h"; sourceTree = SOURCE_ROOT; }; + FFFD330109687fc333010968 /* PxvManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvManager.h"; path = "../../LowLevel/API/include/PxvManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD330109d07fc3330109d0 /* PxvSimStats.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvSimStats.h"; path = "../../LowLevel/API/include/PxvSimStats.h"; sourceTree = SOURCE_ROOT; }; + FFFD330118007fc333011800 /* PxsCCD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.cpp"; path = "../../LowLevel/software/src/PxsCCD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD330118687fc333011868 /* PxsContactManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.cpp"; path = "../../LowLevel/software/src/PxsContactManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD330118d07fc3330118d0 /* PxsContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.cpp"; path = "../../LowLevel/software/src/PxsContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD330119387fc333011938 /* PxsDefaultMemoryManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.cpp"; path = "../../LowLevel/software/src/PxsDefaultMemoryManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD330119a07fc3330119a0 /* PxsIslandSim.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.cpp"; path = "../../LowLevel/software/src/PxsIslandSim.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33011a087fc333011a08 /* PxsMaterialCombiner.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.cpp"; path = "../../LowLevel/software/src/PxsMaterialCombiner.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33011a707fc333011a70 /* PxsNphaseImplementationContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.cpp"; path = "../../LowLevel/software/src/PxsNphaseImplementationContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33011ad87fc333011ad8 /* PxsSimpleIslandManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.cpp"; path = "../../LowLevel/software/src/PxsSimpleIslandManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33805a007fc333805a00 /* PxsBodySim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsBodySim.h"; path = "../../LowLevel/software/include/PxsBodySim.h"; sourceTree = SOURCE_ROOT; }; + FFFD33805a687fc333805a68 /* PxsCCD.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsCCD.h"; path = "../../LowLevel/software/include/PxsCCD.h"; sourceTree = SOURCE_ROOT; }; + FFFD33805ad07fc333805ad0 /* PxsContactManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManager.h"; path = "../../LowLevel/software/include/PxsContactManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD33805b387fc333805b38 /* PxsContactManagerState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContactManagerState.h"; path = "../../LowLevel/software/include/PxsContactManagerState.h"; sourceTree = SOURCE_ROOT; }; + FFFD33805ba07fc333805ba0 /* PxsContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsContext.h"; path = "../../LowLevel/software/include/PxsContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD33805c087fc333805c08 /* PxsDefaultMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsDefaultMemoryManager.h"; path = "../../LowLevel/software/include/PxsDefaultMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD33805c707fc333805c70 /* PxsHeapMemoryAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsHeapMemoryAllocator.h"; path = "../../LowLevel/software/include/PxsHeapMemoryAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD33805cd87fc333805cd8 /* PxsIncrementalConstraintPartitioning.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIncrementalConstraintPartitioning.h"; path = "../../LowLevel/software/include/PxsIncrementalConstraintPartitioning.h"; sourceTree = SOURCE_ROOT; }; + FFFD33805d407fc333805d40 /* PxsIslandManagerTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandManagerTypes.h"; path = "../../LowLevel/software/include/PxsIslandManagerTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD33805da87fc333805da8 /* PxsIslandSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsIslandSim.h"; path = "../../LowLevel/software/include/PxsIslandSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD33805e107fc333805e10 /* PxsKernelWrangler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsKernelWrangler.h"; path = "../../LowLevel/software/include/PxsKernelWrangler.h"; sourceTree = SOURCE_ROOT; }; + FFFD33805e787fc333805e78 /* PxsMaterialCombiner.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMaterialCombiner.h"; path = "../../LowLevel/software/include/PxsMaterialCombiner.h"; sourceTree = SOURCE_ROOT; }; + FFFD33805ee07fc333805ee0 /* PxsMemoryManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsMemoryManager.h"; path = "../../LowLevel/software/include/PxsMemoryManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD33805f487fc333805f48 /* PxsNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxsNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD33805fb07fc333805fb0 /* PxsRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsRigidBody.h"; path = "../../LowLevel/software/include/PxsRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD338060187fc333806018 /* PxsShapeSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsShapeSim.h"; path = "../../LowLevel/software/include/PxsShapeSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD338060807fc333806080 /* PxsSimpleIslandManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimpleIslandManager.h"; path = "../../LowLevel/software/include/PxsSimpleIslandManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD338060e87fc3338060e8 /* PxsSimulationController.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsSimulationController.h"; path = "../../LowLevel/software/include/PxsSimulationController.h"; sourceTree = SOURCE_ROOT; }; + FFFD338061507fc333806150 /* PxsTransformCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxsTransformCache.h"; path = "../../LowLevel/software/include/PxsTransformCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD338061b87fc3338061b8 /* PxvNphaseImplementationContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxvNphaseImplementationContext.h"; path = "../../LowLevel/software/include/PxvNphaseImplementationContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD33808e007fc333808e00 /* collision/PxcContact.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContact.cpp"; path = "../../LowLevel/common/src/collision/PxcContact.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33808e687fc333808e68 /* pipeline/PxcContactCache.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactCache.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33808ed07fc333808ed0 /* pipeline/PxcContactMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcContactMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33808f387fc333808f38 /* pipeline/PxcMaterialHeightField.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialHeightField.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialHeightField.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33808fa07fc333808fa0 /* pipeline/PxcMaterialMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMesh.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338090087fc333809008 /* pipeline/PxcMaterialMethodImpl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialMethodImpl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338090707fc333809070 /* pipeline/PxcMaterialShape.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialShape.cpp"; path = "../../LowLevel/common/src/pipeline/PxcMaterialShape.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338090d87fc3338090d8 /* pipeline/PxcNpBatch.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpBatch.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338091407fc333809140 /* pipeline/PxcNpCacheStreamPair.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpCacheStreamPair.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338091a87fc3338091a8 /* pipeline/PxcNpContactPrepShared.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpContactPrepShared.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338092107fc333809210 /* pipeline/PxcNpMemBlockPool.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpMemBlockPool.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338092787fc333809278 /* pipeline/PxcNpThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.cpp"; path = "../../LowLevel/common/src/pipeline/PxcNpThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33809c007fc333809c00 /* collision/PxcContactMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "collision/PxcContactMethodImpl.h"; path = "../../LowLevel/common/include/collision/PxcContactMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD33809c687fc333809c68 /* pipeline/PxcCCDStateStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcCCDStateStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcCCDStateStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD33809cd07fc333809cd0 /* pipeline/PxcConstraintBlockStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcConstraintBlockStream.h"; path = "../../LowLevel/common/include/pipeline/PxcConstraintBlockStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD33809d387fc333809d38 /* pipeline/PxcContactCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcContactCache.h"; path = "../../LowLevel/common/include/pipeline/PxcContactCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD33809da07fc333809da0 /* pipeline/PxcMaterialMethodImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcMaterialMethodImpl.h"; path = "../../LowLevel/common/include/pipeline/PxcMaterialMethodImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD33809e087fc333809e08 /* pipeline/PxcNpBatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpBatch.h"; path = "../../LowLevel/common/include/pipeline/PxcNpBatch.h"; sourceTree = SOURCE_ROOT; }; + FFFD33809e707fc333809e70 /* pipeline/PxcNpCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCache.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD33809ed87fc333809ed8 /* pipeline/PxcNpCacheStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpCacheStreamPair.h"; path = "../../LowLevel/common/include/pipeline/PxcNpCacheStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD33809f407fc333809f40 /* pipeline/PxcNpContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpContactPrepShared.h"; path = "../../LowLevel/common/include/pipeline/PxcNpContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD33809fa87fc333809fa8 /* pipeline/PxcNpMemBlockPool.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpMemBlockPool.h"; path = "../../LowLevel/common/include/pipeline/PxcNpMemBlockPool.h"; sourceTree = SOURCE_ROOT; }; + FFFD3380a0107fc33380a010 /* pipeline/PxcNpThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpThreadContext.h"; path = "../../LowLevel/common/include/pipeline/PxcNpThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD3380a0787fc33380a078 /* pipeline/PxcNpWorkUnit.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcNpWorkUnit.h"; path = "../../LowLevel/common/include/pipeline/PxcNpWorkUnit.h"; sourceTree = SOURCE_ROOT; }; + FFFD3380a0e07fc33380a0e0 /* pipeline/PxcRigidBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "pipeline/PxcRigidBody.h"; path = "../../LowLevel/common/include/pipeline/PxcRigidBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD3380a1487fc33380a148 /* utils/PxcScratchAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "utils/PxcScratchAllocator.h"; path = "../../LowLevel/common/include/utils/PxcScratchAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3380a1b07fc33380a1b0 /* 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 */ - FFF22c12cc907f922c12cc90 /* Resources */ = { + FFF23300a7207fc33300a720 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2415,7 +2415,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2c12cc907f922c12cc90 /* Frameworks */ = { + FFFC3300a7207fc33300a720 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2425,31 +2425,31 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82c12cc907f922c12cc90 /* Sources */ = { + FFF83300a7207fc33300a720 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c13eca07f922c13eca0, - FFFF2c140f807f922c140f80, - FFFF2c140fe87f922c140fe8, - FFFF2c1410507f922c141050, - FFFF2c1410b87f922c1410b8, - FFFF2c1411207f922c141120, - FFFF2c1411887f922c141188, - FFFF2c1411f07f922c1411f0, - FFFF2c1412587f922c141258, - FFFF2b9af6007f922b9af600, - FFFF2b9af6687f922b9af668, - FFFF2b9af6d07f922b9af6d0, - FFFF2b9af7387f922b9af738, - FFFF2b9af7a07f922b9af7a0, - FFFF2b9af8087f922b9af808, - FFFF2b9af8707f922b9af870, - FFFF2b9af8d87f922b9af8d8, - FFFF2b9af9407f922b9af940, - FFFF2b9af9a87f922b9af9a8, - FFFF2b9afa107f922b9afa10, - FFFF2b9afa787f922b9afa78, + FFFF3300ee807fc33300ee80, + FFFF330118007fc333011800, + FFFF330118687fc333011868, + FFFF330118d07fc3330118d0, + FFFF330119387fc333011938, + FFFF330119a07fc3330119a0, + FFFF33011a087fc333011a08, + FFFF33011a707fc333011a70, + FFFF33011ad87fc333011ad8, + FFFF33808e007fc333808e00, + FFFF33808e687fc333808e68, + FFFF33808ed07fc333808ed0, + FFFF33808f387fc333808f38, + FFFF33808fa07fc333808fa0, + FFFF338090087fc333809008, + FFFF338090707fc333809070, + FFFF338090d87fc3338090d8, + FFFF338091407fc333809140, + FFFF338091a87fc3338091a8, + FFFF338092107fc333809210, + FFFF338092787fc333809278, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2461,38 +2461,38 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelAABB */ - FFFF2d0268707f922d026870 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0268707f922d026870 /* BpBroadPhase.cpp */; }; - FFFF2d0268d87f922d0268d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0268d87f922d0268d8 /* BpBroadPhaseMBP.cpp */; }; - FFFF2d0269407f922d026940 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0269407f922d026940 /* BpBroadPhaseSap.cpp */; }; - FFFF2d0269a87f922d0269a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0269a87f922d0269a8 /* BpBroadPhaseSapAux.cpp */; }; - FFFF2d026a107f922d026a10 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d026a107f922d026a10 /* BpMBPTasks.cpp */; }; - FFFF2d026a787f922d026a78 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d026a787f922d026a78 /* BpSAPTasks.cpp */; }; - FFFF2d026ae07f922d026ae0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d026ae07f922d026ae0 /* BpSimpleAABBManager.cpp */; }; + FFFF309a84707fc3309a8470 /* BpBroadPhase.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309a84707fc3309a8470 /* BpBroadPhase.cpp */; }; + FFFF309a84d87fc3309a84d8 /* BpBroadPhaseMBP.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309a84d87fc3309a84d8 /* BpBroadPhaseMBP.cpp */; }; + FFFF309a85407fc3309a8540 /* BpBroadPhaseSap.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309a85407fc3309a8540 /* BpBroadPhaseSap.cpp */; }; + FFFF309a85a87fc3309a85a8 /* BpBroadPhaseSapAux.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309a85a87fc3309a85a8 /* BpBroadPhaseSapAux.cpp */; }; + FFFF309a86107fc3309a8610 /* BpMBPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309a86107fc3309a8610 /* BpMBPTasks.cpp */; }; + FFFF309a86787fc3309a8678 /* BpSAPTasks.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309a86787fc3309a8678 /* BpSAPTasks.cpp */; }; + FFFF309a86e07fc3309a86e0 /* BpSimpleAABBManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD309a86e07fc3309a86e0 /* BpSimpleAABBManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2c60e6807f922c60e680 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c610dc07f922c610dc0 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c610e287f922c610e28 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c610e907f922c610e90 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c610ef87f922c610ef8 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0266007f922d026600 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0266687f922d026668 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0266d07f922d0266d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0267387f922d026738 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0267a07f922d0267a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0268087f922d026808 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0268707f922d026870 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d0268d87f922d0268d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d0269407f922d026940 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d0269a87f922d0269a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d026a107f922d026a10 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d026a787f922d026a78 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d026ae07f922d026ae0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD317bb4a07fc3317bb4a0 /* LowLevelAABB */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelAABB"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD317b3c107fc3317b3c10 /* BpAABBManagerTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpAABBManagerTasks.h"; path = "../../LowLevelAABB/include/BpAABBManagerTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD317b3c787fc3317b3c78 /* BpBroadPhase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.h"; path = "../../LowLevelAABB/include/BpBroadPhase.h"; sourceTree = SOURCE_ROOT; }; + FFFD317b3ce07fc3317b3ce0 /* BpBroadPhaseUpdate.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseUpdate.h"; path = "../../LowLevelAABB/include/BpBroadPhaseUpdate.h"; sourceTree = SOURCE_ROOT; }; + FFFD317b3d487fc3317b3d48 /* BpSimpleAABBManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.h"; path = "../../LowLevelAABB/include/BpSimpleAABBManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD309a82007fc3309a8200 /* BpBroadPhaseMBP.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.h"; sourceTree = SOURCE_ROOT; }; + FFFD309a82687fc3309a8268 /* BpBroadPhaseMBPCommon.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBPCommon.h"; path = "../../LowLevelAABB/src/BpBroadPhaseMBPCommon.h"; sourceTree = SOURCE_ROOT; }; + FFFD309a82d07fc3309a82d0 /* BpBroadPhaseSap.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.h"; sourceTree = SOURCE_ROOT; }; + FFFD309a83387fc3309a8338 /* BpBroadPhaseSapAux.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.h"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.h"; sourceTree = SOURCE_ROOT; }; + FFFD309a83a07fc3309a83a0 /* BpMBPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.h"; path = "../../LowLevelAABB/src/BpMBPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD309a84087fc3309a8408 /* BpSAPTasks.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.h"; path = "../../LowLevelAABB/src/BpSAPTasks.h"; sourceTree = SOURCE_ROOT; }; + FFFD309a84707fc3309a8470 /* BpBroadPhase.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhase.cpp"; path = "../../LowLevelAABB/src/BpBroadPhase.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309a84d87fc3309a84d8 /* BpBroadPhaseMBP.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseMBP.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseMBP.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309a85407fc3309a8540 /* BpBroadPhaseSap.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSap.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSap.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309a85a87fc3309a85a8 /* BpBroadPhaseSapAux.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpBroadPhaseSapAux.cpp"; path = "../../LowLevelAABB/src/BpBroadPhaseSapAux.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309a86107fc3309a8610 /* BpMBPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpMBPTasks.cpp"; path = "../../LowLevelAABB/src/BpMBPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309a86787fc3309a8678 /* BpSAPTasks.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSAPTasks.cpp"; path = "../../LowLevelAABB/src/BpSAPTasks.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD309a86e07fc3309a86e0 /* BpSimpleAABBManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "BpSimpleAABBManager.cpp"; path = "../../LowLevelAABB/src/BpSimpleAABBManager.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF22c60e6807f922c60e680 /* Resources */ = { + FFF2317bb4a07fc3317bb4a0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2502,7 +2502,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2c60e6807f922c60e680 /* Frameworks */ = { + FFFC317bb4a07fc3317bb4a0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2512,17 +2512,17 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82c60e6807f922c60e680 /* Sources */ = { + FFF8317bb4a07fc3317bb4a0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2d0268707f922d026870, - FFFF2d0268d87f922d0268d8, - FFFF2d0269407f922d026940, - FFFF2d0269a87f922d0269a8, - FFFF2d026a107f922d026a10, - FFFF2d026a787f922d026a78, - FFFF2d026ae07f922d026ae0, + FFFF309a84707fc3309a8470, + FFFF309a84d87fc3309a84d8, + FFFF309a85407fc3309a8540, + FFFF309a85a87fc3309a85a8, + FFFF309a86107fc3309a8610, + FFFF309a86787fc3309a8678, + FFFF309a86e07fc3309a86e0, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2534,105 +2534,105 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelDynamics */ - FFFF2c8272007f922c827200 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8272007f922c827200 /* DyArticulation.cpp */; }; - FFFF2c8272687f922c827268 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8272687f922c827268 /* DyArticulationContactPrep.cpp */; }; - FFFF2c8272d07f922c8272d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8272d07f922c8272d0 /* DyArticulationContactPrepPF.cpp */; }; - FFFF2c8273387f922c827338 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8273387f922c827338 /* DyArticulationHelper.cpp */; }; - FFFF2c8273a07f922c8273a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8273a07f922c8273a0 /* DyArticulationSIMD.cpp */; }; - FFFF2c8274087f922c827408 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8274087f922c827408 /* DyArticulationScalar.cpp */; }; - FFFF2c8274707f922c827470 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8274707f922c827470 /* DyConstraintPartition.cpp */; }; - FFFF2c8274d87f922c8274d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8274d87f922c8274d8 /* DyConstraintSetup.cpp */; }; - FFFF2c8275407f922c827540 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8275407f922c827540 /* DyConstraintSetupBlock.cpp */; }; - FFFF2c8275a87f922c8275a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8275a87f922c8275a8 /* DyContactPrep.cpp */; }; - FFFF2c8276107f922c827610 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8276107f922c827610 /* DyContactPrep4.cpp */; }; - FFFF2c8276787f922c827678 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8276787f922c827678 /* DyContactPrep4PF.cpp */; }; - FFFF2c8276e07f922c8276e0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8276e07f922c8276e0 /* DyContactPrepPF.cpp */; }; - FFFF2c8277487f922c827748 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8277487f922c827748 /* DyDynamics.cpp */; }; - FFFF2c8277b07f922c8277b0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8277b07f922c8277b0 /* DyFrictionCorrelation.cpp */; }; - FFFF2c8278187f922c827818 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8278187f922c827818 /* DyRigidBodyToSolverBody.cpp */; }; - FFFF2c8278807f922c827880 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8278807f922c827880 /* DySolverConstraints.cpp */; }; - FFFF2c8278e87f922c8278e8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8278e87f922c8278e8 /* DySolverConstraintsBlock.cpp */; }; - FFFF2c8279507f922c827950 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8279507f922c827950 /* DySolverControl.cpp */; }; - FFFF2c8279b87f922c8279b8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c8279b87f922c8279b8 /* DySolverControlPF.cpp */; }; - FFFF2c827a207f922c827a20 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c827a207f922c827a20 /* DySolverPFConstraints.cpp */; }; - FFFF2c827a887f922c827a88 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c827a887f922c827a88 /* DySolverPFConstraintsBlock.cpp */; }; - FFFF2c827af07f922c827af0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c827af07f922c827af0 /* DyThreadContext.cpp */; }; - FFFF2c827b587f922c827b58 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD2c827b587f922c827b58 /* DyThresholdTable.cpp */; }; + FFFF338126007fc333812600 /* DyArticulation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD338126007fc333812600 /* DyArticulation.cpp */; }; + FFFF338126687fc333812668 /* DyArticulationContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD338126687fc333812668 /* DyArticulationContactPrep.cpp */; }; + FFFF338126d07fc3338126d0 /* DyArticulationContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD338126d07fc3338126d0 /* DyArticulationContactPrepPF.cpp */; }; + FFFF338127387fc333812738 /* DyArticulationHelper.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD338127387fc333812738 /* DyArticulationHelper.cpp */; }; + FFFF338127a07fc3338127a0 /* DyArticulationSIMD.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD338127a07fc3338127a0 /* DyArticulationSIMD.cpp */; }; + FFFF338128087fc333812808 /* DyArticulationScalar.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD338128087fc333812808 /* DyArticulationScalar.cpp */; }; + FFFF338128707fc333812870 /* DyConstraintPartition.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD338128707fc333812870 /* DyConstraintPartition.cpp */; }; + FFFF338128d87fc3338128d8 /* DyConstraintSetup.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD338128d87fc3338128d8 /* DyConstraintSetup.cpp */; }; + FFFF338129407fc333812940 /* DyConstraintSetupBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD338129407fc333812940 /* DyConstraintSetupBlock.cpp */; }; + FFFF338129a87fc3338129a8 /* DyContactPrep.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD338129a87fc3338129a8 /* DyContactPrep.cpp */; }; + FFFF33812a107fc333812a10 /* DyContactPrep4.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD33812a107fc333812a10 /* DyContactPrep4.cpp */; }; + FFFF33812a787fc333812a78 /* DyContactPrep4PF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD33812a787fc333812a78 /* DyContactPrep4PF.cpp */; }; + FFFF33812ae07fc333812ae0 /* DyContactPrepPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD33812ae07fc333812ae0 /* DyContactPrepPF.cpp */; }; + FFFF33812b487fc333812b48 /* DyDynamics.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD33812b487fc333812b48 /* DyDynamics.cpp */; }; + FFFF33812bb07fc333812bb0 /* DyFrictionCorrelation.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD33812bb07fc333812bb0 /* DyFrictionCorrelation.cpp */; }; + FFFF33812c187fc333812c18 /* DyRigidBodyToSolverBody.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD33812c187fc333812c18 /* DyRigidBodyToSolverBody.cpp */; }; + FFFF33812c807fc333812c80 /* DySolverConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD33812c807fc333812c80 /* DySolverConstraints.cpp */; }; + FFFF33812ce87fc333812ce8 /* DySolverConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD33812ce87fc333812ce8 /* DySolverConstraintsBlock.cpp */; }; + FFFF33812d507fc333812d50 /* DySolverControl.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD33812d507fc333812d50 /* DySolverControl.cpp */; }; + FFFF33812db87fc333812db8 /* DySolverControlPF.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD33812db87fc333812db8 /* DySolverControlPF.cpp */; }; + FFFF33812e207fc333812e20 /* DySolverPFConstraints.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD33812e207fc333812e20 /* DySolverPFConstraints.cpp */; }; + FFFF33812e887fc333812e88 /* DySolverPFConstraintsBlock.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD33812e887fc333812e88 /* DySolverPFConstraintsBlock.cpp */; }; + FFFF33812ef07fc333812ef0 /* DyThreadContext.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD33812ef07fc333812ef0 /* DyThreadContext.cpp */; }; + FFFF33812f587fc333812f58 /* DyThresholdTable.cpp in Dynamics Source */= { isa = PBXBuildFile; fileRef = FFFD33812f587fc333812f58 /* DyThresholdTable.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2c0b4e307f922c0b4e30 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c8272007f922c827200 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8272687f922c827268 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8272d07f922c8272d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8273387f922c827338 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8273a07f922c8273a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8274087f922c827408 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8274707f922c827470 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8274d87f922c8274d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8275407f922c827540 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8275a87f922c8275a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8276107f922c827610 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8276787f922c827678 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8276e07f922c8276e0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8277487f922c827748 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8277b07f922c8277b0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8278187f922c827818 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8278807f922c827880 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8278e87f922c8278e8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8279507f922c827950 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8279b87f922c8279b8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c827a207f922c827a20 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c827a887f922c827a88 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c827af07f922c827af0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c827b587f922c827b58 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c05ae907f922c05ae90 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c05aef87f922c05aef8 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c05af607f922c05af60 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c05afc87f922c05afc8 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c05b0307f922c05b030 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c05b0987f922c05b098 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8284007f922c828400 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8284687f922c828468 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8284d07f922c8284d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8285387f922c828538 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8285a07f922c8285a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8286087f922c828608 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8286707f922c828670 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8286d87f922c8286d8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8287407f922c828740 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8287a87f922c8287a8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8288107f922c828810 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8288787f922c828878 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8288e07f922c8288e0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8289487f922c828948 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8289b07f922c8289b0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c828a187f922c828a18 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c828a807f922c828a80 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c828ae87f922c828ae8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c828b507f922c828b50 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c828bb87f922c828bb8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c828c207f922c828c20 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c828c887f922c828c88 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c828cf07f922c828cf0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c828d587f922c828d58 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c828dc07f922c828dc0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c828e287f922c828e28 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c828e907f922c828e90 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c828ef87f922c828ef8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c828f607f922c828f60 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c828fc87f922c828fc8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8290307f922c829030 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8290987f922c829098 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8291007f922c829100 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8291687f922c829168 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8291d07f922c8291d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8292387f922c829238 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8292a07f922c8292a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD33032f907fc333032f90 /* LowLevelDynamics */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelDynamics"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD338126007fc333812600 /* DyArticulation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.cpp"; path = "../../LowLevelDynamics/src/DyArticulation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338126687fc333812668 /* DyArticulationContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338126d07fc3338126d0 /* DyArticulationContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyArticulationContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338127387fc333812738 /* DyArticulationHelper.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.cpp"; path = "../../LowLevelDynamics/src/DyArticulationHelper.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338127a07fc3338127a0 /* DyArticulationSIMD.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationSIMD.cpp"; path = "../../LowLevelDynamics/src/DyArticulationSIMD.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338128087fc333812808 /* DyArticulationScalar.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.cpp"; path = "../../LowLevelDynamics/src/DyArticulationScalar.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338128707fc333812870 /* DyConstraintPartition.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.cpp"; path = "../../LowLevelDynamics/src/DyConstraintPartition.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338128d87fc3338128d8 /* DyConstraintSetup.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetup.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetup.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338129407fc333812940 /* DyConstraintSetupBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintSetupBlock.cpp"; path = "../../LowLevelDynamics/src/DyConstraintSetupBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD338129a87fc3338129a8 /* DyContactPrep.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33812a107fc333812a10 /* DyContactPrep4.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33812a787fc333812a78 /* DyContactPrep4PF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep4PF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrep4PF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33812ae07fc333812ae0 /* DyContactPrepPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepPF.cpp"; path = "../../LowLevelDynamics/src/DyContactPrepPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33812b487fc333812b48 /* DyDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.cpp"; path = "../../LowLevelDynamics/src/DyDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33812bb07fc333812bb0 /* DyFrictionCorrelation.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionCorrelation.cpp"; path = "../../LowLevelDynamics/src/DyFrictionCorrelation.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33812c187fc333812c18 /* DyRigidBodyToSolverBody.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyRigidBodyToSolverBody.cpp"; path = "../../LowLevelDynamics/src/DyRigidBodyToSolverBody.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33812c807fc333812c80 /* DySolverConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33812ce87fc333812ce8 /* DySolverConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33812d507fc333812d50 /* DySolverControl.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.cpp"; path = "../../LowLevelDynamics/src/DySolverControl.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33812db87fc333812db8 /* DySolverControlPF.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.cpp"; path = "../../LowLevelDynamics/src/DySolverControlPF.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33812e207fc333812e20 /* DySolverPFConstraints.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraints.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraints.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33812e887fc333812e88 /* DySolverPFConstraintsBlock.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverPFConstraintsBlock.cpp"; path = "../../LowLevelDynamics/src/DySolverPFConstraintsBlock.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33812ef07fc333812ef0 /* DyThreadContext.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.cpp"; path = "../../LowLevelDynamics/src/DyThreadContext.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33812f587fc333812f58 /* DyThresholdTable.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.cpp"; path = "../../LowLevelDynamics/src/DyThresholdTable.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD33036f007fc333036f00 /* DyArticulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulation.h"; path = "../../LowLevelDynamics/include/DyArticulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD33036f687fc333036f68 /* DyConstraint.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraint.h"; path = "../../LowLevelDynamics/include/DyConstraint.h"; sourceTree = SOURCE_ROOT; }; + FFFD33036fd07fc333036fd0 /* DyConstraintWriteBack.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintWriteBack.h"; path = "../../LowLevelDynamics/include/DyConstraintWriteBack.h"; sourceTree = SOURCE_ROOT; }; + FFFD330370387fc333037038 /* DyContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContext.h"; path = "../../LowLevelDynamics/include/DyContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD330370a07fc3330370a0 /* DySleepingConfigulation.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySleepingConfigulation.h"; path = "../../LowLevelDynamics/include/DySleepingConfigulation.h"; sourceTree = SOURCE_ROOT; }; + FFFD330371087fc333037108 /* DyThresholdTable.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThresholdTable.h"; path = "../../LowLevelDynamics/include/DyThresholdTable.h"; sourceTree = SOURCE_ROOT; }; + FFFD338138007fc333813800 /* DyArticulationContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationContactPrep.h"; path = "../../LowLevelDynamics/src/DyArticulationContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD338138687fc333813868 /* DyArticulationFnsDebug.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsDebug.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsDebug.h"; sourceTree = SOURCE_ROOT; }; + FFFD338138d07fc3338138d0 /* DyArticulationFnsScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD338139387fc333813938 /* DyArticulationFnsSimd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationFnsSimd.h"; path = "../../LowLevelDynamics/src/DyArticulationFnsSimd.h"; sourceTree = SOURCE_ROOT; }; + FFFD338139a07fc3338139a0 /* DyArticulationHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationHelper.h"; path = "../../LowLevelDynamics/src/DyArticulationHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD33813a087fc333813a08 /* DyArticulationPImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationPImpl.h"; path = "../../LowLevelDynamics/src/DyArticulationPImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD33813a707fc333813a70 /* DyArticulationReference.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationReference.h"; path = "../../LowLevelDynamics/src/DyArticulationReference.h"; sourceTree = SOURCE_ROOT; }; + FFFD33813ad87fc333813ad8 /* DyArticulationScalar.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationScalar.h"; path = "../../LowLevelDynamics/src/DyArticulationScalar.h"; sourceTree = SOURCE_ROOT; }; + FFFD33813b407fc333813b40 /* DyArticulationUtils.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyArticulationUtils.h"; path = "../../LowLevelDynamics/src/DyArticulationUtils.h"; sourceTree = SOURCE_ROOT; }; + FFFD33813ba87fc333813ba8 /* DyBodyCoreIntegrator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyBodyCoreIntegrator.h"; path = "../../LowLevelDynamics/src/DyBodyCoreIntegrator.h"; sourceTree = SOURCE_ROOT; }; + FFFD33813c107fc333813c10 /* DyConstraintPartition.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPartition.h"; path = "../../LowLevelDynamics/src/DyConstraintPartition.h"; sourceTree = SOURCE_ROOT; }; + FFFD33813c787fc333813c78 /* DyConstraintPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyConstraintPrep.h"; path = "../../LowLevelDynamics/src/DyConstraintPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD33813ce07fc333813ce0 /* DyContactPrep.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrep.h"; path = "../../LowLevelDynamics/src/DyContactPrep.h"; sourceTree = SOURCE_ROOT; }; + FFFD33813d487fc333813d48 /* DyContactPrepShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactPrepShared.h"; path = "../../LowLevelDynamics/src/DyContactPrepShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD33813db07fc333813db0 /* DyContactReduction.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyContactReduction.h"; path = "../../LowLevelDynamics/src/DyContactReduction.h"; sourceTree = SOURCE_ROOT; }; + FFFD33813e187fc333813e18 /* DyCorrelationBuffer.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyCorrelationBuffer.h"; path = "../../LowLevelDynamics/src/DyCorrelationBuffer.h"; sourceTree = SOURCE_ROOT; }; + FFFD33813e807fc333813e80 /* DyDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyDynamics.h"; path = "../../LowLevelDynamics/src/DyDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD33813ee87fc333813ee8 /* DyFrictionPatch.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatch.h"; path = "../../LowLevelDynamics/src/DyFrictionPatch.h"; sourceTree = SOURCE_ROOT; }; + FFFD33813f507fc333813f50 /* DyFrictionPatchStreamPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyFrictionPatchStreamPair.h"; path = "../../LowLevelDynamics/src/DyFrictionPatchStreamPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD33813fb87fc333813fb8 /* DySolverBody.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverBody.h"; path = "../../LowLevelDynamics/src/DySolverBody.h"; sourceTree = SOURCE_ROOT; }; + FFFD338140207fc333814020 /* DySolverConstraint1D.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D.h"; sourceTree = SOURCE_ROOT; }; + FFFD338140887fc333814088 /* DySolverConstraint1D4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraint1D4.h"; path = "../../LowLevelDynamics/src/DySolverConstraint1D4.h"; sourceTree = SOURCE_ROOT; }; + FFFD338140f07fc3338140f0 /* DySolverConstraintDesc.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintDesc.h"; path = "../../LowLevelDynamics/src/DySolverConstraintDesc.h"; sourceTree = SOURCE_ROOT; }; + FFFD338141587fc333814158 /* DySolverConstraintExtShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintExtShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintExtShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD338141c07fc3338141c0 /* DySolverConstraintTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintTypes.h"; path = "../../LowLevelDynamics/src/DySolverConstraintTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD338142287fc333814228 /* DySolverConstraintsShared.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverConstraintsShared.h"; path = "../../LowLevelDynamics/src/DySolverConstraintsShared.h"; sourceTree = SOURCE_ROOT; }; + FFFD338142907fc333814290 /* DySolverContact.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact.h"; path = "../../LowLevelDynamics/src/DySolverContact.h"; sourceTree = SOURCE_ROOT; }; + FFFD338142f87fc3338142f8 /* DySolverContact4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContact4.h"; path = "../../LowLevelDynamics/src/DySolverContact4.h"; sourceTree = SOURCE_ROOT; }; + FFFD338143607fc333814360 /* DySolverContactPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF.h"; path = "../../LowLevelDynamics/src/DySolverContactPF.h"; sourceTree = SOURCE_ROOT; }; + FFFD338143c87fc3338143c8 /* DySolverContactPF4.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContactPF4.h"; path = "../../LowLevelDynamics/src/DySolverContactPF4.h"; sourceTree = SOURCE_ROOT; }; + FFFD338144307fc333814430 /* DySolverContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverContext.h"; path = "../../LowLevelDynamics/src/DySolverContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD338144987fc333814498 /* DySolverControl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControl.h"; path = "../../LowLevelDynamics/src/DySolverControl.h"; sourceTree = SOURCE_ROOT; }; + FFFD338145007fc333814500 /* DySolverControlPF.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverControlPF.h"; path = "../../LowLevelDynamics/src/DySolverControlPF.h"; sourceTree = SOURCE_ROOT; }; + FFFD338145687fc333814568 /* DySolverCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverCore.h"; path = "../../LowLevelDynamics/src/DySolverCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD338145d07fc3338145d0 /* DySolverExt.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySolverExt.h"; path = "../../LowLevelDynamics/src/DySolverExt.h"; sourceTree = SOURCE_ROOT; }; + FFFD338146387fc333814638 /* DySpatial.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DySpatial.h"; path = "../../LowLevelDynamics/src/DySpatial.h"; sourceTree = SOURCE_ROOT; }; + FFFD338146a07fc3338146a0 /* DyThreadContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "DyThreadContext.h"; path = "../../LowLevelDynamics/src/DyThreadContext.h"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF22c0b4e307f922c0b4e30 /* Resources */ = { + FFF233032f907fc333032f90 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2642,7 +2642,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2c0b4e307f922c0b4e30 /* Frameworks */ = { + FFFC33032f907fc333032f90 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2652,34 +2652,34 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82c0b4e307f922c0b4e30 /* Sources */ = { + FFF833032f907fc333032f90 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c8272007f922c827200, - FFFF2c8272687f922c827268, - FFFF2c8272d07f922c8272d0, - FFFF2c8273387f922c827338, - FFFF2c8273a07f922c8273a0, - FFFF2c8274087f922c827408, - FFFF2c8274707f922c827470, - FFFF2c8274d87f922c8274d8, - FFFF2c8275407f922c827540, - FFFF2c8275a87f922c8275a8, - FFFF2c8276107f922c827610, - FFFF2c8276787f922c827678, - FFFF2c8276e07f922c8276e0, - FFFF2c8277487f922c827748, - FFFF2c8277b07f922c8277b0, - FFFF2c8278187f922c827818, - FFFF2c8278807f922c827880, - FFFF2c8278e87f922c8278e8, - FFFF2c8279507f922c827950, - FFFF2c8279b87f922c8279b8, - FFFF2c827a207f922c827a20, - FFFF2c827a887f922c827a88, - FFFF2c827af07f922c827af0, - FFFF2c827b587f922c827b58, + FFFF338126007fc333812600, + FFFF338126687fc333812668, + FFFF338126d07fc3338126d0, + FFFF338127387fc333812738, + FFFF338127a07fc3338127a0, + FFFF338128087fc333812808, + FFFF338128707fc333812870, + FFFF338128d87fc3338128d8, + FFFF338129407fc333812940, + FFFF338129a87fc3338129a8, + FFFF33812a107fc333812a10, + FFFF33812a787fc333812a78, + FFFF33812ae07fc333812ae0, + FFFF33812b487fc333812b48, + FFFF33812bb07fc333812bb0, + FFFF33812c187fc333812c18, + FFFF33812c807fc333812c80, + FFFF33812ce87fc333812ce8, + FFFF33812d507fc333812d50, + FFFF33812db87fc333812db8, + FFFF33812e207fc333812e20, + FFFF33812e887fc333812e88, + FFFF33812ef07fc333812ef0, + FFFF33812f587fc333812f58, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2691,73 +2691,73 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelCloth */ - FFFF2d0310907f922d031090 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0310907f922d031090 /* Allocator.cpp */; }; - FFFF2d0310f87f922d0310f8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0310f87f922d0310f8 /* Factory.cpp */; }; - FFFF2d0311607f922d031160 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0311607f922d031160 /* PhaseConfig.cpp */; }; - FFFF2d0311c87f922d0311c8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0311c87f922d0311c8 /* SwCloth.cpp */; }; - FFFF2d0312307f922d031230 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0312307f922d031230 /* SwClothData.cpp */; }; - FFFF2d0312987f922d031298 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0312987f922d031298 /* SwCollision.cpp */; }; - FFFF2d0313007f922d031300 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0313007f922d031300 /* SwFabric.cpp */; }; - FFFF2d0313687f922d031368 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0313687f922d031368 /* SwFactory.cpp */; }; - FFFF2d0313d07f922d0313d0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0313d07f922d0313d0 /* SwInterCollision.cpp */; }; - FFFF2d0314387f922d031438 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0314387f922d031438 /* SwSelfCollision.cpp */; }; - FFFF2d0314a07f922d0314a0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0314a07f922d0314a0 /* SwSolver.cpp */; }; - FFFF2d0315087f922d031508 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0315087f922d031508 /* SwSolverKernel.cpp */; }; - FFFF2d0315707f922d031570 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d0315707f922d031570 /* TripletScheduler.cpp */; }; + FFFF3181ac907fc33181ac90 /* Allocator.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3181ac907fc33181ac90 /* Allocator.cpp */; }; + FFFF3181acf87fc33181acf8 /* Factory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3181acf87fc33181acf8 /* Factory.cpp */; }; + FFFF3181ad607fc33181ad60 /* PhaseConfig.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3181ad607fc33181ad60 /* PhaseConfig.cpp */; }; + FFFF3181adc87fc33181adc8 /* SwCloth.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3181adc87fc33181adc8 /* SwCloth.cpp */; }; + FFFF3181ae307fc33181ae30 /* SwClothData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3181ae307fc33181ae30 /* SwClothData.cpp */; }; + FFFF3181ae987fc33181ae98 /* SwCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3181ae987fc33181ae98 /* SwCollision.cpp */; }; + FFFF3181af007fc33181af00 /* SwFabric.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3181af007fc33181af00 /* SwFabric.cpp */; }; + FFFF3181af687fc33181af68 /* SwFactory.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3181af687fc33181af68 /* SwFactory.cpp */; }; + FFFF3181afd07fc33181afd0 /* SwInterCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3181afd07fc33181afd0 /* SwInterCollision.cpp */; }; + FFFF3181b0387fc33181b038 /* SwSelfCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3181b0387fc33181b038 /* SwSelfCollision.cpp */; }; + FFFF3181b0a07fc33181b0a0 /* SwSolver.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3181b0a07fc33181b0a0 /* SwSolver.cpp */; }; + FFFF3181b1087fc33181b108 /* SwSolverKernel.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3181b1087fc33181b108 /* SwSolverKernel.cpp */; }; + FFFF3181b1707fc33181b170 /* TripletScheduler.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3181b1707fc33181b170 /* TripletScheduler.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2c62b3607f922c62b360 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c6017507f922c601750 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c6017b87f922c6017b8 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c6018207f922c601820 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c6018887f922c601888 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c6018f07f922c6018f0 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c6019587f922c601958 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c6019c07f922c6019c0 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0306007f922d030600 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0306687f922d030668 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0306d07f922d0306d0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0307387f922d030738 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0307a07f922d0307a0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0308087f922d030808 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0308707f922d030870 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0308d87f922d0308d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0309407f922d030940 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0309a87f922d0309a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d030a107f922d030a10 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d030a787f922d030a78 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d030ae07f922d030ae0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d030b487f922d030b48 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d030bb07f922d030bb0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d030c187f922d030c18 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d030c807f922d030c80 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d030ce87f922d030ce8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d030d507f922d030d50 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d030db87f922d030db8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d030e207f922d030e20 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d030e887f922d030e88 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d030ef07f922d030ef0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d030f587f922d030f58 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d030fc07f922d030fc0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0310287f922d031028 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d0310907f922d031090 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d0310f87f922d0310f8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d0311607f922d031160 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d0311c87f922d0311c8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d0312307f922d031230 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d0312987f922d031298 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d0313007f922d031300 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d0313687f922d031368 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d0313d07f922d0313d0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d0314387f922d031438 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d0314a07f922d0314a0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d0315087f922d031508 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2d0315707f922d031570 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD310c7ab07fc3310c7ab0 /* LowLevelCloth */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelCloth"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD310bda207fc3310bda20 /* Cloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Cloth.h"; path = "../../LowLevelCloth/include/Cloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD310bda887fc3310bda88 /* Fabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Fabric.h"; path = "../../LowLevelCloth/include/Fabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD310bdaf07fc3310bdaf0 /* Factory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.h"; path = "../../LowLevelCloth/include/Factory.h"; sourceTree = SOURCE_ROOT; }; + FFFD310bdb587fc3310bdb58 /* PhaseConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.h"; path = "../../LowLevelCloth/include/PhaseConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD310bdbc07fc3310bdbc0 /* Range.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Range.h"; path = "../../LowLevelCloth/include/Range.h"; sourceTree = SOURCE_ROOT; }; + FFFD310bdc287fc3310bdc28 /* Solver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Solver.h"; path = "../../LowLevelCloth/include/Solver.h"; sourceTree = SOURCE_ROOT; }; + FFFD310bdc907fc3310bdc90 /* Types.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Types.h"; path = "../../LowLevelCloth/include/Types.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a2007fc33181a200 /* Allocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.h"; path = "../../LowLevelCloth/src/Allocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a2687fc33181a268 /* Array.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Array.h"; path = "../../LowLevelCloth/src/Array.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a2d07fc33181a2d0 /* BoundingBox.h */= { isa = PBXFileReference; fileEncoding = 4; name = "BoundingBox.h"; path = "../../LowLevelCloth/src/BoundingBox.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a3387fc33181a338 /* ClothBase.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothBase.h"; path = "../../LowLevelCloth/src/ClothBase.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a3a07fc33181a3a0 /* ClothImpl.h */= { isa = PBXFileReference; fileEncoding = 4; name = "ClothImpl.h"; path = "../../LowLevelCloth/src/ClothImpl.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a4087fc33181a408 /* IndexPair.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IndexPair.h"; path = "../../LowLevelCloth/src/IndexPair.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a4707fc33181a470 /* IterationState.h */= { isa = PBXFileReference; fileEncoding = 4; name = "IterationState.h"; path = "../../LowLevelCloth/src/IterationState.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a4d87fc33181a4d8 /* MovingAverage.h */= { isa = PBXFileReference; fileEncoding = 4; name = "MovingAverage.h"; path = "../../LowLevelCloth/src/MovingAverage.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a5407fc33181a540 /* PointInterpolator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PointInterpolator.h"; path = "../../LowLevelCloth/src/PointInterpolator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a5a87fc33181a5a8 /* Simd.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd.h"; path = "../../LowLevelCloth/src/Simd.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a6107fc33181a610 /* Simd4f.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4f.h"; path = "../../LowLevelCloth/src/Simd4f.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a6787fc33181a678 /* Simd4i.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Simd4i.h"; path = "../../LowLevelCloth/src/Simd4i.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a6e07fc33181a6e0 /* SimdTypes.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SimdTypes.h"; path = "../../LowLevelCloth/src/SimdTypes.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a7487fc33181a748 /* StackAllocator.h */= { isa = PBXFileReference; fileEncoding = 4; name = "StackAllocator.h"; path = "../../LowLevelCloth/src/StackAllocator.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a7b07fc33181a7b0 /* SwCloth.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.h"; path = "../../LowLevelCloth/src/SwCloth.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a8187fc33181a818 /* SwClothData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.h"; path = "../../LowLevelCloth/src/SwClothData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a8807fc33181a880 /* SwCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.h"; path = "../../LowLevelCloth/src/SwCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a8e87fc33181a8e8 /* SwCollisionHelpers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollisionHelpers.h"; path = "../../LowLevelCloth/src/SwCollisionHelpers.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a9507fc33181a950 /* SwFabric.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.h"; path = "../../LowLevelCloth/src/SwFabric.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181a9b87fc33181a9b8 /* SwFactory.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.h"; path = "../../LowLevelCloth/src/SwFactory.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181aa207fc33181aa20 /* SwInterCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.h"; path = "../../LowLevelCloth/src/SwInterCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181aa887fc33181aa88 /* SwSelfCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.h"; path = "../../LowLevelCloth/src/SwSelfCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181aaf07fc33181aaf0 /* SwSolver.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.h"; path = "../../LowLevelCloth/src/SwSolver.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181ab587fc33181ab58 /* SwSolverKernel.h */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.h"; path = "../../LowLevelCloth/src/SwSolverKernel.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181abc07fc33181abc0 /* TripletScheduler.h */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.h"; path = "../../LowLevelCloth/src/TripletScheduler.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181ac287fc33181ac28 /* Vec4T.h */= { isa = PBXFileReference; fileEncoding = 4; name = "Vec4T.h"; path = "../../LowLevelCloth/src/Vec4T.h"; sourceTree = SOURCE_ROOT; }; + FFFD3181ac907fc33181ac90 /* Allocator.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Allocator.cpp"; path = "../../LowLevelCloth/src/Allocator.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3181acf87fc33181acf8 /* Factory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "Factory.cpp"; path = "../../LowLevelCloth/src/Factory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3181ad607fc33181ad60 /* PhaseConfig.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PhaseConfig.cpp"; path = "../../LowLevelCloth/src/PhaseConfig.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3181adc87fc33181adc8 /* SwCloth.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCloth.cpp"; path = "../../LowLevelCloth/src/SwCloth.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3181ae307fc33181ae30 /* SwClothData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwClothData.cpp"; path = "../../LowLevelCloth/src/SwClothData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3181ae987fc33181ae98 /* SwCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwCollision.cpp"; path = "../../LowLevelCloth/src/SwCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3181af007fc33181af00 /* SwFabric.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFabric.cpp"; path = "../../LowLevelCloth/src/SwFabric.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3181af687fc33181af68 /* SwFactory.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwFactory.cpp"; path = "../../LowLevelCloth/src/SwFactory.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3181afd07fc33181afd0 /* SwInterCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwInterCollision.cpp"; path = "../../LowLevelCloth/src/SwInterCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3181b0387fc33181b038 /* SwSelfCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSelfCollision.cpp"; path = "../../LowLevelCloth/src/SwSelfCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3181b0a07fc33181b0a0 /* SwSolver.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolver.cpp"; path = "../../LowLevelCloth/src/SwSolver.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3181b1087fc33181b108 /* SwSolverKernel.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "SwSolverKernel.cpp"; path = "../../LowLevelCloth/src/SwSolverKernel.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3181b1707fc33181b170 /* TripletScheduler.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "TripletScheduler.cpp"; path = "../../LowLevelCloth/src/TripletScheduler.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF22c62b3607f922c62b360 /* Resources */ = { + FFF2310c7ab07fc3310c7ab0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2767,7 +2767,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2c62b3607f922c62b360 /* Frameworks */ = { + FFFC310c7ab07fc3310c7ab0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2777,23 +2777,23 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82c62b3607f922c62b360 /* Sources */ = { + FFF8310c7ab07fc3310c7ab0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2d0310907f922d031090, - FFFF2d0310f87f922d0310f8, - FFFF2d0311607f922d031160, - FFFF2d0311c87f922d0311c8, - FFFF2d0312307f922d031230, - FFFF2d0312987f922d031298, - FFFF2d0313007f922d031300, - FFFF2d0313687f922d031368, - FFFF2d0313d07f922d0313d0, - FFFF2d0314387f922d031438, - FFFF2d0314a07f922d0314a0, - FFFF2d0315087f922d031508, - FFFF2d0315707f922d031570, + FFFF3181ac907fc33181ac90, + FFFF3181acf87fc33181acf8, + FFFF3181ad607fc33181ad60, + FFFF3181adc87fc33181adc8, + FFFF3181ae307fc33181ae30, + FFFF3181ae987fc33181ae98, + FFFF3181af007fc33181af00, + FFFF3181af687fc33181af68, + FFFF3181afd07fc33181afd0, + FFFF3181b0387fc33181b038, + FFFF3181b0a07fc33181b0a0, + FFFF3181b1087fc33181b108, + FFFF3181b1707fc33181b170, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2805,79 +2805,79 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of LowLevelParticles */ - FFFF2c8325587f922c832558 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8325587f922c832558 /* PtBatcher.cpp */; }; - FFFF2c8325c07f922c8325c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8325c07f922c8325c0 /* PtBodyTransformVault.cpp */; }; - FFFF2c8326287f922c832628 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8326287f922c832628 /* PtCollision.cpp */; }; - FFFF2c8326907f922c832690 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8326907f922c832690 /* PtCollisionBox.cpp */; }; - FFFF2c8326f87f922c8326f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8326f87f922c8326f8 /* PtCollisionCapsule.cpp */; }; - FFFF2c8327607f922c832760 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8327607f922c832760 /* PtCollisionConvex.cpp */; }; - FFFF2c8327c87f922c8327c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8327c87f922c8327c8 /* PtCollisionMesh.cpp */; }; - FFFF2c8328307f922c832830 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8328307f922c832830 /* PtCollisionPlane.cpp */; }; - FFFF2c8328987f922c832898 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8328987f922c832898 /* PtCollisionSphere.cpp */; }; - FFFF2c8329007f922c832900 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8329007f922c832900 /* PtContextCpu.cpp */; }; - FFFF2c8329687f922c832968 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8329687f922c832968 /* PtDynamics.cpp */; }; - FFFF2c8329d07f922c8329d0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c8329d07f922c8329d0 /* PtParticleData.cpp */; }; - FFFF2c832a387f922c832a38 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c832a387f922c832a38 /* PtParticleShapeCpu.cpp */; }; - FFFF2c832aa07f922c832aa0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c832aa07f922c832aa0 /* PtParticleSystemSimCpu.cpp */; }; - FFFF2c832b087f922c832b08 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c832b087f922c832b08 /* PtSpatialHash.cpp */; }; - FFFF2c832b707f922c832b70 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c832b707f922c832b70 /* PtSpatialLocalHash.cpp */; }; + FFFF3381e7587fc33381e758 /* PtBatcher.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381e7587fc33381e758 /* PtBatcher.cpp */; }; + FFFF3381e7c07fc33381e7c0 /* PtBodyTransformVault.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381e7c07fc33381e7c0 /* PtBodyTransformVault.cpp */; }; + FFFF3381e8287fc33381e828 /* PtCollision.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381e8287fc33381e828 /* PtCollision.cpp */; }; + FFFF3381e8907fc33381e890 /* PtCollisionBox.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381e8907fc33381e890 /* PtCollisionBox.cpp */; }; + FFFF3381e8f87fc33381e8f8 /* PtCollisionCapsule.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381e8f87fc33381e8f8 /* PtCollisionCapsule.cpp */; }; + FFFF3381e9607fc33381e960 /* PtCollisionConvex.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381e9607fc33381e960 /* PtCollisionConvex.cpp */; }; + FFFF3381e9c87fc33381e9c8 /* PtCollisionMesh.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381e9c87fc33381e9c8 /* PtCollisionMesh.cpp */; }; + FFFF3381ea307fc33381ea30 /* PtCollisionPlane.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381ea307fc33381ea30 /* PtCollisionPlane.cpp */; }; + FFFF3381ea987fc33381ea98 /* PtCollisionSphere.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381ea987fc33381ea98 /* PtCollisionSphere.cpp */; }; + FFFF3381eb007fc33381eb00 /* PtContextCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381eb007fc33381eb00 /* PtContextCpu.cpp */; }; + FFFF3381eb687fc33381eb68 /* PtDynamics.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381eb687fc33381eb68 /* PtDynamics.cpp */; }; + FFFF3381ebd07fc33381ebd0 /* PtParticleData.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381ebd07fc33381ebd0 /* PtParticleData.cpp */; }; + FFFF3381ec387fc33381ec38 /* PtParticleShapeCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381ec387fc33381ec38 /* PtParticleShapeCpu.cpp */; }; + FFFF3381eca07fc33381eca0 /* PtParticleSystemSimCpu.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381eca07fc33381eca0 /* PtParticleSystemSimCpu.cpp */; }; + FFFF3381ed087fc33381ed08 /* PtSpatialHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381ed087fc33381ed08 /* PtSpatialHash.cpp */; }; + FFFF3381ed707fc33381ed70 /* PtSpatialLocalHash.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3381ed707fc33381ed70 /* PtSpatialLocalHash.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2c07d5207f922c07d520 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c8262007f922c826200 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8262687f922c826268 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8262d07f922c8262d0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8263387f922c826338 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8263a07f922c8263a0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8264087f922c826408 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8264707f922c826470 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8264d87f922c8264d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8265407f922c826540 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8265a87f922c8265a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c831c007f922c831c00 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c831c687f922c831c68 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c831cd07f922c831cd0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c831d387f922c831d38 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c831da07f922c831da0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c831e087f922c831e08 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c831e707f922c831e70 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c831ed87f922c831ed8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c831f407f922c831f40 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c831fa87f922c831fa8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8320107f922c832010 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8320787f922c832078 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8320e07f922c8320e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8321487f922c832148 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8321b07f922c8321b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8322187f922c832218 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8322807f922c832280 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8322e87f922c8322e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8323507f922c832350 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8323b87f922c8323b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8324207f922c832420 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8324887f922c832488 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8324f07f922c8324f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c8325587f922c832558 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8325c07f922c8325c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8326287f922c832628 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8326907f922c832690 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8326f87f922c8326f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8327607f922c832760 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8327c87f922c8327c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8328307f922c832830 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8328987f922c832898 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8329007f922c832900 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8329687f922c832968 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c8329d07f922c8329d0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c832a387f922c832a38 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c832aa07f922c832aa0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c832b087f922c832b08 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; - FFFD2c832b707f922c832b70 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD330590907fc333059090 /* LowLevelParticles */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "LowLevelParticles"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3380de007fc33380de00 /* PtBodyTransformVault.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.h"; path = "../../LowLevelParticles/include/PtBodyTransformVault.h"; sourceTree = SOURCE_ROOT; }; + FFFD3380de687fc33380de68 /* PtContext.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContext.h"; path = "../../LowLevelParticles/include/PtContext.h"; sourceTree = SOURCE_ROOT; }; + FFFD3380ded07fc33380ded0 /* PtGridCellVector.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtGridCellVector.h"; path = "../../LowLevelParticles/include/PtGridCellVector.h"; sourceTree = SOURCE_ROOT; }; + FFFD3380df387fc33380df38 /* PtParticle.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticle.h"; path = "../../LowLevelParticles/include/PtParticle.h"; sourceTree = SOURCE_ROOT; }; + FFFD3380dfa07fc33380dfa0 /* PtParticleContactManagerStream.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleContactManagerStream.h"; path = "../../LowLevelParticles/include/PtParticleContactManagerStream.h"; sourceTree = SOURCE_ROOT; }; + FFFD3380e0087fc33380e008 /* PtParticleData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.h"; path = "../../LowLevelParticles/include/PtParticleData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3380e0707fc33380e070 /* PtParticleShape.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShape.h"; path = "../../LowLevelParticles/include/PtParticleShape.h"; sourceTree = SOURCE_ROOT; }; + FFFD3380e0d87fc33380e0d8 /* PtParticleSystemCore.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemCore.h"; path = "../../LowLevelParticles/include/PtParticleSystemCore.h"; sourceTree = SOURCE_ROOT; }; + FFFD3380e1407fc33380e140 /* PtParticleSystemFlags.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemFlags.h"; path = "../../LowLevelParticles/include/PtParticleSystemFlags.h"; sourceTree = SOURCE_ROOT; }; + FFFD3380e1a87fc33380e1a8 /* PtParticleSystemSim.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSim.h"; path = "../../LowLevelParticles/include/PtParticleSystemSim.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381de007fc33381de00 /* PtBatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.h"; path = "../../LowLevelParticles/src/PtBatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381de687fc33381de68 /* PtCollision.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.h"; path = "../../LowLevelParticles/src/PtCollision.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381ded07fc33381ded0 /* PtCollisionData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionData.h"; path = "../../LowLevelParticles/src/PtCollisionData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381df387fc33381df38 /* PtCollisionHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionHelper.h"; path = "../../LowLevelParticles/src/PtCollisionHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381dfa07fc33381dfa0 /* PtCollisionMethods.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMethods.h"; path = "../../LowLevelParticles/src/PtCollisionMethods.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e0087fc33381e008 /* PtCollisionParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionParameters.h"; path = "../../LowLevelParticles/src/PtCollisionParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e0707fc33381e070 /* PtConfig.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConfig.h"; path = "../../LowLevelParticles/src/PtConfig.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e0d87fc33381e0d8 /* PtConstants.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtConstants.h"; path = "../../LowLevelParticles/src/PtConstants.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e1407fc33381e140 /* PtContextCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.h"; path = "../../LowLevelParticles/src/PtContextCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e1a87fc33381e1a8 /* PtDynamicHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicHelper.h"; path = "../../LowLevelParticles/src/PtDynamicHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e2107fc33381e210 /* PtDynamics.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.h"; path = "../../LowLevelParticles/src/PtDynamics.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e2787fc33381e278 /* PtDynamicsKernels.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsKernels.h"; path = "../../LowLevelParticles/src/PtDynamicsKernels.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e2e07fc33381e2e0 /* PtDynamicsParameters.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsParameters.h"; path = "../../LowLevelParticles/src/PtDynamicsParameters.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e3487fc33381e348 /* PtDynamicsTempBuffers.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamicsTempBuffers.h"; path = "../../LowLevelParticles/src/PtDynamicsTempBuffers.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e3b07fc33381e3b0 /* PtHeightFieldAabbTest.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtHeightFieldAabbTest.h"; path = "../../LowLevelParticles/src/PtHeightFieldAabbTest.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e4187fc33381e418 /* PtPacketSections.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtPacketSections.h"; path = "../../LowLevelParticles/src/PtPacketSections.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e4807fc33381e480 /* PtParticleCell.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleCell.h"; path = "../../LowLevelParticles/src/PtParticleCell.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e4e87fc33381e4e8 /* PtParticleOpcodeCache.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleOpcodeCache.h"; path = "../../LowLevelParticles/src/PtParticleOpcodeCache.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e5507fc33381e550 /* PtParticleShapeCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.h"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e5b87fc33381e5b8 /* PtParticleSystemSimCpu.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.h"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e6207fc33381e620 /* PtSpatialHash.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.h"; path = "../../LowLevelParticles/src/PtSpatialHash.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e6887fc33381e688 /* PtSpatialHashHelper.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHashHelper.h"; path = "../../LowLevelParticles/src/PtSpatialHashHelper.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e6f07fc33381e6f0 /* PtTwoWayData.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PtTwoWayData.h"; path = "../../LowLevelParticles/src/PtTwoWayData.h"; sourceTree = SOURCE_ROOT; }; + FFFD3381e7587fc33381e758 /* PtBatcher.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBatcher.cpp"; path = "../../LowLevelParticles/src/PtBatcher.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3381e7c07fc33381e7c0 /* PtBodyTransformVault.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtBodyTransformVault.cpp"; path = "../../LowLevelParticles/src/PtBodyTransformVault.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3381e8287fc33381e828 /* PtCollision.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollision.cpp"; path = "../../LowLevelParticles/src/PtCollision.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3381e8907fc33381e890 /* PtCollisionBox.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionBox.cpp"; path = "../../LowLevelParticles/src/PtCollisionBox.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3381e8f87fc33381e8f8 /* PtCollisionCapsule.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionCapsule.cpp"; path = "../../LowLevelParticles/src/PtCollisionCapsule.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3381e9607fc33381e960 /* PtCollisionConvex.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionConvex.cpp"; path = "../../LowLevelParticles/src/PtCollisionConvex.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3381e9c87fc33381e9c8 /* PtCollisionMesh.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionMesh.cpp"; path = "../../LowLevelParticles/src/PtCollisionMesh.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3381ea307fc33381ea30 /* PtCollisionPlane.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionPlane.cpp"; path = "../../LowLevelParticles/src/PtCollisionPlane.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3381ea987fc33381ea98 /* PtCollisionSphere.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtCollisionSphere.cpp"; path = "../../LowLevelParticles/src/PtCollisionSphere.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3381eb007fc33381eb00 /* PtContextCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtContextCpu.cpp"; path = "../../LowLevelParticles/src/PtContextCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3381eb687fc33381eb68 /* PtDynamics.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtDynamics.cpp"; path = "../../LowLevelParticles/src/PtDynamics.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3381ebd07fc33381ebd0 /* PtParticleData.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleData.cpp"; path = "../../LowLevelParticles/src/PtParticleData.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3381ec387fc33381ec38 /* PtParticleShapeCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleShapeCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleShapeCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3381eca07fc33381eca0 /* PtParticleSystemSimCpu.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtParticleSystemSimCpu.cpp"; path = "../../LowLevelParticles/src/PtParticleSystemSimCpu.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3381ed087fc33381ed08 /* PtSpatialHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialHash.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3381ed707fc33381ed70 /* PtSpatialLocalHash.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PtSpatialLocalHash.cpp"; path = "../../LowLevelParticles/src/PtSpatialLocalHash.cpp"; sourceTree = SOURCE_ROOT; }; /* End PBXFileReference section */ /* Begin PBXResourcesBuildPhase section */ - FFF22c07d5207f922c07d520 /* Resources */ = { + FFF2330590907fc333059090 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2887,7 +2887,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2c07d5207f922c07d520 /* Frameworks */ = { + FFFC330590907fc333059090 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2897,26 +2897,26 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82c07d5207f922c07d520 /* Sources */ = { + FFF8330590907fc333059090 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c8325587f922c832558, - FFFF2c8325c07f922c8325c0, - FFFF2c8326287f922c832628, - FFFF2c8326907f922c832690, - FFFF2c8326f87f922c8326f8, - FFFF2c8327607f922c832760, - FFFF2c8327c87f922c8327c8, - FFFF2c8328307f922c832830, - FFFF2c8328987f922c832898, - FFFF2c8329007f922c832900, - FFFF2c8329687f922c832968, - FFFF2c8329d07f922c8329d0, - FFFF2c832a387f922c832a38, - FFFF2c832aa07f922c832aa0, - FFFF2c832b087f922c832b08, - FFFF2c832b707f922c832b70, + FFFF3381e7587fc33381e758, + FFFF3381e7c07fc33381e7c0, + FFFF3381e8287fc33381e828, + FFFF3381e8907fc33381e890, + FFFF3381e8f87fc33381e8f8, + FFFF3381e9607fc33381e960, + FFFF3381e9c87fc33381e9c8, + FFFF3381ea307fc33381ea30, + FFFF3381ea987fc33381ea98, + FFFF3381eb007fc33381eb00, + FFFF3381eb687fc33381eb68, + FFFF3381ebd07fc33381ebd0, + FFFF3381ec387fc33381ec38, + FFFF3381eca07fc33381eca0, + FFFF3381ed087fc33381ed08, + FFFF3381ed707fc33381ed70, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2928,22 +2928,22 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PxTask */ - FFFF2c62efd07f922c62efd0 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2c62efd07f922c62efd0 /* src/TaskManager.cpp */; }; + FFFF330794507fc333079450 /* src/TaskManager.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD330794507fc333079450 /* src/TaskManager.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2c659bf07f922c659bf0 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2c6468c07f922c6468c0 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c6469287f922c646928 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c6469907f922c646990 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c6469f87f922c6469f8 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c646a607f922c646a60 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c646ac87f922c646ac8 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; - FFFD2c62efd07f922c62efd0 /* src/TaskManager.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "src/TaskManager.cpp"; path = "../../../../PxShared/src/task/src/TaskManager.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3308d5d07fc33308d5d0 /* PxTask */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PxTask"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD330790d07fc3330790d0 /* PxCpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxCpuDispatcher.h"; path = "../../../../PxShared/include/task/PxCpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD330791387fc333079138 /* PxGpuDispatcher.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuDispatcher.h"; path = "../../../../PxShared/include/task/PxGpuDispatcher.h"; sourceTree = SOURCE_ROOT; }; + FFFD330791a07fc3330791a0 /* PxGpuTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxGpuTask.h"; path = "../../../../PxShared/include/task/PxGpuTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD330792087fc333079208 /* PxTask.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTask.h"; path = "../../../../PxShared/include/task/PxTask.h"; sourceTree = SOURCE_ROOT; }; + FFFD330792707fc333079270 /* PxTaskDefine.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskDefine.h"; path = "../../../../PxShared/include/task/PxTaskDefine.h"; sourceTree = SOURCE_ROOT; }; + FFFD330792d87fc3330792d8 /* PxTaskManager.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PxTaskManager.h"; path = "../../../../PxShared/include/task/PxTaskManager.h"; sourceTree = SOURCE_ROOT; }; + FFFD330794507fc333079450 /* 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 */ - FFF22c659bf07f922c659bf0 /* Resources */ = { + FFF23308d5d07fc33308d5d0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2953,7 +2953,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2c659bf07f922c659bf0 /* Frameworks */ = { + FFFC3308d5d07fc33308d5d0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2963,11 +2963,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82c659bf07f922c659bf0 /* Sources */ = { + FFF83308d5d07fc33308d5d0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2c62efd07f922c62efd0, + FFFF330794507fc333079450, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2979,17 +2979,17 @@ /* End PBXTargetDependency section */ /* Begin PBXBuildFile section of PsFastXml */ - FFFF2d9e68507f922d9e6850 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD2d9e68507f922d9e6850 /* PsFastXml.cpp */; }; + FFFF3151eb607fc33151eb60 /* PsFastXml.cpp in src */= { isa = PBXBuildFile; fileRef = FFFD3151eb607fc33151eb60 /* PsFastXml.cpp */; }; /* End PBXFileReference section */ /* Begin PBXFileReference section */ - FFFD2d9e21807f922d9e2180 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFFD2d9e67507f922d9e6750 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; - FFFD2d9e68507f922d9e6850 /* PsFastXml.cpp */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.cpp"; path = "../../../../PxShared/src/fastxml/src/PsFastXml.cpp"; sourceTree = SOURCE_ROOT; }; + FFFD3152c5407fc33152c540 /* PsFastXml */ = {isa = PBXFileReference; explicitFileType = "archive.ar"; path = "PsFastXml"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFFD3151f1007fc33151f100 /* PsFastXml.h */= { isa = PBXFileReference; fileEncoding = 4; name = "PsFastXml.h"; path = "../../../../PxShared/src/fastxml/include/PsFastXml.h"; sourceTree = SOURCE_ROOT; }; + FFFD3151eb607fc33151eb60 /* 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 */ - FFF22d9e21807f922d9e2180 /* Resources */ = { + FFF23152c5407fc33152c540 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2999,7 +2999,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */ - FFFC2d9e21807f922d9e2180 /* Frameworks */ = { + FFFC3152c5407fc33152c540 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3009,11 +3009,11 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - FFF82d9e21807f922d9e2180 /* Sources */ = { + FFF83152c5407fc33152c540 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFFF2d9e68507f922d9e6850, + FFFF3151eb607fc33151eb60, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -3025,1969 +3025,1969 @@ /* End PBXTargetDependency section */ /* Begin PBXContainerItemProxy section */ - FFF52d9e31707f922d9e3170 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF53152d5407fc33152d540 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2d9e31707f922d9e3170 /* PhysX */; + remoteGlobalIDString = FFFA3152d5407fc33152d540 /* PhysX */; remoteInfo = "PhysX"; }; - FFF52d9ecca07f922d9ecca0 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF5315310607fc331531060 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2d9ecca07f922d9ecca0 /* PhysXCharacterKinematic */; + remoteGlobalIDString = FFFA315310607fc331531060 /* PhysXCharacterKinematic */; remoteInfo = "PhysXCharacterKinematic"; }; - FFF52d9ee0607f922d9ee060 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF5315326507fc331532650 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2d9ee0607f922d9ee060 /* PhysXVehicle */; + remoteGlobalIDString = FFFA315326507fc331532650 /* PhysXVehicle */; remoteInfo = "PhysXVehicle"; }; - FFF52dc036207f922dc03620 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF531541f407fc331541f40 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2dc036207f922dc03620 /* PhysXExtensions */; + remoteGlobalIDString = FFFA31541f407fc331541f40 /* PhysXExtensions */; remoteInfo = "PhysXExtensions"; }; - FFF52dc145807f922dc14580 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF5315548707fc331554870 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2dc145807f922dc14580 /* SceneQuery */; + remoteGlobalIDString = FFFA315548707fc331554870 /* SceneQuery */; remoteInfo = "SceneQuery"; }; - FFF52dc18c707f922dc18c70 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF531558f607fc331558f60 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2dc18c707f922dc18c70 /* SimulationController */; + remoteGlobalIDString = FFFA31558f607fc331558f60 /* SimulationController */; remoteInfo = "SimulationController"; }; - FFF52dd04ea07f922dd04ea0 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF53155d7107fc33155d710 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2dd04ea07f922dd04ea0 /* PhysXCooking */; + remoteGlobalIDString = FFFA3155d7107fc33155d710 /* PhysXCooking */; remoteInfo = "PhysXCooking"; }; - FFF52c13c0507f922c13c050 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF5315178207fc331517820 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2c13c0507f922c13c050 /* PhysXCommon */; + remoteGlobalIDString = FFFA315178207fc331517820 /* PhysXCommon */; remoteInfo = "PhysXCommon"; }; - FFF52c1587607f922c158760 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF5315044907fc331504490 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2c1587607f922c158760 /* PxFoundation */; + remoteGlobalIDString = FFFA315044907fc331504490 /* PxFoundation */; remoteInfo = "PxFoundation"; }; - FFF52c0bd6207f922c0bd620 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF531142a807fc331142a80 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2c0bd6207f922c0bd620 /* PxPvdSDK */; + remoteGlobalIDString = FFFA31142a807fc331142a80 /* PxPvdSDK */; remoteInfo = "PxPvdSDK"; }; - FFF52c12cc907f922c12cc90 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF53300a7207fc33300a720 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2c12cc907f922c12cc90 /* LowLevel */; + remoteGlobalIDString = FFFA3300a7207fc33300a720 /* LowLevel */; remoteInfo = "LowLevel"; }; - FFF52c60e6807f922c60e680 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF5317bb4a07fc3317bb4a0 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2c60e6807f922c60e680 /* LowLevelAABB */; + remoteGlobalIDString = FFFA317bb4a07fc3317bb4a0 /* LowLevelAABB */; remoteInfo = "LowLevelAABB"; }; - FFF52c0b4e307f922c0b4e30 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF533032f907fc333032f90 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2c0b4e307f922c0b4e30 /* LowLevelDynamics */; + remoteGlobalIDString = FFFA33032f907fc333032f90 /* LowLevelDynamics */; remoteInfo = "LowLevelDynamics"; }; - FFF52c62b3607f922c62b360 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF5310c7ab07fc3310c7ab0 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2c62b3607f922c62b360 /* LowLevelCloth */; + remoteGlobalIDString = FFFA310c7ab07fc3310c7ab0 /* LowLevelCloth */; remoteInfo = "LowLevelCloth"; }; - FFF52c07d5207f922c07d520 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF5330590907fc333059090 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2c07d5207f922c07d520 /* LowLevelParticles */; + remoteGlobalIDString = FFFA330590907fc333059090 /* LowLevelParticles */; remoteInfo = "LowLevelParticles"; }; - FFF52c659bf07f922c659bf0 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF53308d5d07fc33308d5d0 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2c659bf07f922c659bf0 /* PxTask */; + remoteGlobalIDString = FFFA3308d5d07fc33308d5d0 /* PxTask */; remoteInfo = "PxTask"; }; - FFF52d9e21807f922d9e2180 /* PBXContainerItemProxy */ = { - containerPortal = FFF92b47d1507f922b47d150 /* Project object */; + FFF53152c5407fc33152c540 /* PBXContainerItemProxy */ = { + containerPortal = FFF93047d2007fc33047d200 /* Project object */; isa = PBXContainerItemProxy; proxyType = 1; - remoteGlobalIDString = FFFA2d9e21807f922d9e2180 /* PsFastXml */; + remoteGlobalIDString = FFFA3152c5407fc33152c540 /* PsFastXml */; remoteInfo = "PsFastXml"; }; /* End PBXContainerItemProxy section */ /* Begin PBXGroup section */ - FFFB2b47d1b87f922b47d1b8 /* PhysX */ = { + FFFB3047d2687fc33047d268 /* PhysX */ = { isa = PBXGroup; children = ( - FFF02b47d1507f922b47d150 /* Source */, - FFEE2b47d1507f922b47d150 /* Products */, + FFF03047d2007fc33047d200 /* Source */, + FFEE3047d2007fc33047d200 /* Products */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFF02b47d1507f922b47d150 /* Source */ = { + FFF03047d2007fc33047d200 /* Source */ = { isa = PBXGroup; children = ( - FFFB2d9e31707f922d9e3170, - FFFB2d9ecca07f922d9ecca0, - FFFB2d9ee0607f922d9ee060, - FFFB2dc036207f922dc03620, - FFFB2dc145807f922dc14580, - FFFB2dc18c707f922dc18c70, - FFFB2dd04ea07f922dd04ea0, - FFFB2c13c0507f922c13c050, - FFFB2c1587607f922c158760, - FFFB2c0bd6207f922c0bd620, - FFFB2c12cc907f922c12cc90, - FFFB2c60e6807f922c60e680, - FFFB2c0b4e307f922c0b4e30, - FFFB2c62b3607f922c62b360, - FFFB2c07d5207f922c07d520, - FFFB2c659bf07f922c659bf0, - FFFB2d9e21807f922d9e2180, + FFFB3152d5407fc33152d540, + FFFB315310607fc331531060, + FFFB315326507fc331532650, + FFFB31541f407fc331541f40, + FFFB315548707fc331554870, + FFFB31558f607fc331558f60, + FFFB3155d7107fc33155d710, + FFFB315178207fc331517820, + FFFB315044907fc331504490, + FFFB31142a807fc331142a80, + FFFB3300a7207fc33300a720, + FFFB317bb4a07fc3317bb4a0, + FFFB33032f907fc333032f90, + FFFB310c7ab07fc3310c7ab0, + FFFB330590907fc333059090, + FFFB3308d5d07fc33308d5d0, + FFFB3152c5407fc33152c540, ); name = Source; sourceTree = "<group>"; }; - FFEE2b47d1507f922b47d150 /* Products */ = { + FFEE3047d2007fc33047d200 /* Products */ = { isa = PBXGroup; children = ( - FFFD2d9e31707f922d9e3170, - FFFD2d9ecca07f922d9ecca0, - FFFD2d9ee0607f922d9ee060, - FFFD2dc036207f922dc03620, - FFFD2dc145807f922dc14580, - FFFD2dc18c707f922dc18c70, - FFFD2dd04ea07f922dd04ea0, - FFFD2c13c0507f922c13c050, - FFFD2c1587607f922c158760, - FFFD2c0bd6207f922c0bd620, - FFFD2c12cc907f922c12cc90, - FFFD2c60e6807f922c60e680, - FFFD2c0b4e307f922c0b4e30, - FFFD2c62b3607f922c62b360, - FFFD2c07d5207f922c07d520, - FFFD2c659bf07f922c659bf0, - FFFD2d9e21807f922d9e2180, + FFFD3152d5407fc33152d540, + FFFD315310607fc331531060, + FFFD315326507fc331532650, + FFFD31541f407fc331541f40, + FFFD315548707fc331554870, + FFFD31558f607fc331558f60, + FFFD3155d7107fc33155d710, + FFFD315178207fc331517820, + FFFD315044907fc331504490, + FFFD31142a807fc331142a80, + FFFD3300a7207fc33300a720, + FFFD317bb4a07fc3317bb4a0, + FFFD33032f907fc333032f90, + FFFD310c7ab07fc3310c7ab0, + FFFD330590907fc333059090, + FFFD3308d5d07fc33308d5d0, + FFFD3152c5407fc33152c540, ); name = Products; sourceTree = "<group>"; }; - FFFB2d9e31707f922d9e3170 /* PhysX */ = { + FFFB3152d5407fc33152d540 /* PhysX */ = { isa = PBXGroup; children = ( - FFFB2d9f49907f922d9f4990 /* src */, - FFFB2d9f49b87f922d9f49b8 /* include */, - FFFB2d9f49e07f922d9f49e0 /* metadata */, + FFFB31538bc07fc331538bc0 /* src */, + FFFB31538be87fc331538be8 /* include */, + FFFB31538c107fc331538c10 /* metadata */, ); name = "PhysX"; sourceTree = "<group>"; }; - FFFB2d9f49907f922d9f4990 /* src */ = { + FFFB31538bc07fc331538bc0 /* src */ = { isa = PBXGroup; children = ( - FFFD2c8608007f922c860800 /* NpActor.h */, - FFFD2c8608687f922c860868 /* NpActorTemplate.h */, - FFFD2c8608d07f922c8608d0 /* NpAggregate.h */, - FFFD2c8609387f922c860938 /* NpArticulation.h */, - FFFD2c8609a07f922c8609a0 /* NpArticulationJoint.h */, - FFFD2c860a087f922c860a08 /* NpArticulationLink.h */, - FFFD2c860a707f922c860a70 /* NpBatchQuery.h */, - FFFD2c860ad87f922c860ad8 /* NpCast.h */, - FFFD2c860b407f922c860b40 /* NpConnector.h */, - FFFD2c860ba87f922c860ba8 /* NpConstraint.h */, - FFFD2c860c107f922c860c10 /* NpFactory.h */, - FFFD2c860c787f922c860c78 /* NpMaterial.h */, - FFFD2c860ce07f922c860ce0 /* NpMaterialManager.h */, - FFFD2c860d487f922c860d48 /* NpPhysics.h */, - FFFD2c860db07f922c860db0 /* NpPhysicsInsertionCallback.h */, - FFFD2c860e187f922c860e18 /* NpPtrTableStorageManager.h */, - FFFD2c860e807f922c860e80 /* NpPvdSceneQueryCollector.h */, - FFFD2c860ee87f922c860ee8 /* NpQueryShared.h */, - FFFD2c860f507f922c860f50 /* NpReadCheck.h */, - FFFD2c860fb87f922c860fb8 /* NpRigidActorTemplate.h */, - FFFD2c8610207f922c861020 /* NpRigidActorTemplateInternal.h */, - FFFD2c8610887f922c861088 /* NpRigidBodyTemplate.h */, - FFFD2c8610f07f922c8610f0 /* NpRigidDynamic.h */, - FFFD2c8611587f922c861158 /* NpRigidStatic.h */, - FFFD2c8611c07f922c8611c0 /* NpScene.h */, - FFFD2c8612287f922c861228 /* NpSceneQueries.h */, - FFFD2c8612907f922c861290 /* NpShape.h */, - FFFD2c8612f87f922c8612f8 /* NpShapeManager.h */, - FFFD2c8613607f922c861360 /* NpSpatialIndex.h */, - FFFD2c8613c87f922c8613c8 /* NpVolumeCache.h */, - FFFD2c8614307f922c861430 /* NpWriteCheck.h */, - FFFD2c8614987f922c861498 /* PvdMetaDataBindingData.h */, - FFFD2c8615007f922c861500 /* PvdMetaDataPvdBinding.h */, - FFFD2c8615687f922c861568 /* PvdPhysicsClient.h */, - FFFD2c8615d07f922c8615d0 /* PvdTypeNames.h */, - FFFD2c8616387f922c861638 /* NpActor.cpp */, - FFFD2c8616a07f922c8616a0 /* NpAggregate.cpp */, - FFFD2c8617087f922c861708 /* NpArticulation.cpp */, - FFFD2c8617707f922c861770 /* NpArticulationJoint.cpp */, - FFFD2c8617d87f922c8617d8 /* NpArticulationLink.cpp */, - FFFD2c8618407f922c861840 /* NpBatchQuery.cpp */, - FFFD2c8618a87f922c8618a8 /* NpConstraint.cpp */, - FFFD2c8619107f922c861910 /* NpFactory.cpp */, - FFFD2c8619787f922c861978 /* NpMaterial.cpp */, - FFFD2c8619e07f922c8619e0 /* NpMetaData.cpp */, - FFFD2c861a487f922c861a48 /* NpPhysics.cpp */, - FFFD2c861ab07f922c861ab0 /* NpPvdSceneQueryCollector.cpp */, - FFFD2c861b187f922c861b18 /* NpReadCheck.cpp */, - FFFD2c861b807f922c861b80 /* NpRigidDynamic.cpp */, - FFFD2c861be87f922c861be8 /* NpRigidStatic.cpp */, - FFFD2c861c507f922c861c50 /* NpScene.cpp */, - FFFD2c861cb87f922c861cb8 /* NpSceneQueries.cpp */, - FFFD2c861d207f922c861d20 /* NpSerializerAdapter.cpp */, - FFFD2c861d887f922c861d88 /* NpShape.cpp */, - FFFD2c861df07f922c861df0 /* NpShapeManager.cpp */, - FFFD2c861e587f922c861e58 /* NpSpatialIndex.cpp */, - FFFD2c861ec07f922c861ec0 /* NpVolumeCache.cpp */, - FFFD2c861f287f922c861f28 /* NpWriteCheck.cpp */, - FFFD2c861f907f922c861f90 /* PvdMetaDataPvdBinding.cpp */, - FFFD2c861ff87f922c861ff8 /* PvdPhysicsClient.cpp */, - FFFD2c8620607f922c862060 /* particles/NpParticleBaseTemplate.h */, - FFFD2c8620c87f922c8620c8 /* particles/NpParticleFluid.h */, - FFFD2c8621307f922c862130 /* particles/NpParticleFluidReadData.h */, - FFFD2c8621987f922c862198 /* particles/NpParticleSystem.h */, - FFFD2c8622007f922c862200 /* particles/NpParticleFluid.cpp */, - FFFD2c8622687f922c862268 /* particles/NpParticleSystem.cpp */, - FFFD2c8622d07f922c8622d0 /* buffering/ScbActor.h */, - FFFD2c8623387f922c862338 /* buffering/ScbAggregate.h */, - FFFD2c8623a07f922c8623a0 /* buffering/ScbArticulation.h */, - FFFD2c8624087f922c862408 /* buffering/ScbArticulationJoint.h */, - FFFD2c8624707f922c862470 /* buffering/ScbBase.h */, - FFFD2c8624d87f922c8624d8 /* buffering/ScbBody.h */, - FFFD2c8625407f922c862540 /* buffering/ScbCloth.h */, - FFFD2c8625a87f922c8625a8 /* buffering/ScbConstraint.h */, - FFFD2c8626107f922c862610 /* buffering/ScbDefs.h */, - FFFD2c8626787f922c862678 /* buffering/ScbNpDeps.h */, - FFFD2c8626e07f922c8626e0 /* buffering/ScbParticleSystem.h */, - FFFD2c8627487f922c862748 /* buffering/ScbRigidObject.h */, - FFFD2c8627b07f922c8627b0 /* buffering/ScbRigidStatic.h */, - FFFD2c8628187f922c862818 /* buffering/ScbScene.h */, - FFFD2c8628807f922c862880 /* buffering/ScbSceneBuffer.h */, - FFFD2c8628e87f922c8628e8 /* buffering/ScbScenePvdClient.h */, - FFFD2c8629507f922c862950 /* buffering/ScbShape.h */, - FFFD2c8629b87f922c8629b8 /* buffering/ScbType.h */, - FFFD2c862a207f922c862a20 /* buffering/ScbActor.cpp */, - FFFD2c862a887f922c862a88 /* buffering/ScbAggregate.cpp */, - FFFD2c862af07f922c862af0 /* buffering/ScbBase.cpp */, - FFFD2c862b587f922c862b58 /* buffering/ScbCloth.cpp */, - FFFD2c862bc07f922c862bc0 /* buffering/ScbMetaData.cpp */, - FFFD2c862c287f922c862c28 /* buffering/ScbParticleSystem.cpp */, - FFFD2c862c907f922c862c90 /* buffering/ScbScene.cpp */, - FFFD2c862cf87f922c862cf8 /* buffering/ScbScenePvdClient.cpp */, - FFFD2c862d607f922c862d60 /* buffering/ScbShape.cpp */, - FFFD2c862dc87f922c862dc8 /* cloth/NpCloth.h */, - FFFD2c862e307f922c862e30 /* cloth/NpClothFabric.h */, - FFFD2c862e987f922c862e98 /* cloth/NpClothParticleData.h */, - FFFD2c862f007f922c862f00 /* cloth/NpCloth.cpp */, - FFFD2c862f687f922c862f68 /* cloth/NpClothFabric.cpp */, - FFFD2c862fd07f922c862fd0 /* cloth/NpClothParticleData.cpp */, - FFFD2c8630387f922c863038 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, + FFFD32832c007fc332832c00 /* NpActor.h */, + FFFD32832c687fc332832c68 /* NpActorTemplate.h */, + FFFD32832cd07fc332832cd0 /* NpAggregate.h */, + FFFD32832d387fc332832d38 /* NpArticulation.h */, + FFFD32832da07fc332832da0 /* NpArticulationJoint.h */, + FFFD32832e087fc332832e08 /* NpArticulationLink.h */, + FFFD32832e707fc332832e70 /* NpBatchQuery.h */, + FFFD32832ed87fc332832ed8 /* NpCast.h */, + FFFD32832f407fc332832f40 /* NpConnector.h */, + FFFD32832fa87fc332832fa8 /* NpConstraint.h */, + FFFD328330107fc332833010 /* NpFactory.h */, + FFFD328330787fc332833078 /* NpMaterial.h */, + FFFD328330e07fc3328330e0 /* NpMaterialManager.h */, + FFFD328331487fc332833148 /* NpPhysics.h */, + FFFD328331b07fc3328331b0 /* NpPhysicsInsertionCallback.h */, + FFFD328332187fc332833218 /* NpPtrTableStorageManager.h */, + FFFD328332807fc332833280 /* NpPvdSceneQueryCollector.h */, + FFFD328332e87fc3328332e8 /* NpQueryShared.h */, + FFFD328333507fc332833350 /* NpReadCheck.h */, + FFFD328333b87fc3328333b8 /* NpRigidActorTemplate.h */, + FFFD328334207fc332833420 /* NpRigidActorTemplateInternal.h */, + FFFD328334887fc332833488 /* NpRigidBodyTemplate.h */, + FFFD328334f07fc3328334f0 /* NpRigidDynamic.h */, + FFFD328335587fc332833558 /* NpRigidStatic.h */, + FFFD328335c07fc3328335c0 /* NpScene.h */, + FFFD328336287fc332833628 /* NpSceneQueries.h */, + FFFD328336907fc332833690 /* NpShape.h */, + FFFD328336f87fc3328336f8 /* NpShapeManager.h */, + FFFD328337607fc332833760 /* NpSpatialIndex.h */, + FFFD328337c87fc3328337c8 /* NpVolumeCache.h */, + FFFD328338307fc332833830 /* NpWriteCheck.h */, + FFFD328338987fc332833898 /* PvdMetaDataBindingData.h */, + FFFD328339007fc332833900 /* PvdMetaDataPvdBinding.h */, + FFFD328339687fc332833968 /* PvdPhysicsClient.h */, + FFFD328339d07fc3328339d0 /* PvdTypeNames.h */, + FFFD32833a387fc332833a38 /* NpActor.cpp */, + FFFD32833aa07fc332833aa0 /* NpAggregate.cpp */, + FFFD32833b087fc332833b08 /* NpArticulation.cpp */, + FFFD32833b707fc332833b70 /* NpArticulationJoint.cpp */, + FFFD32833bd87fc332833bd8 /* NpArticulationLink.cpp */, + FFFD32833c407fc332833c40 /* NpBatchQuery.cpp */, + FFFD32833ca87fc332833ca8 /* NpConstraint.cpp */, + FFFD32833d107fc332833d10 /* NpFactory.cpp */, + FFFD32833d787fc332833d78 /* NpMaterial.cpp */, + FFFD32833de07fc332833de0 /* NpMetaData.cpp */, + FFFD32833e487fc332833e48 /* NpPhysics.cpp */, + FFFD32833eb07fc332833eb0 /* NpPvdSceneQueryCollector.cpp */, + FFFD32833f187fc332833f18 /* NpReadCheck.cpp */, + FFFD32833f807fc332833f80 /* NpRigidDynamic.cpp */, + FFFD32833fe87fc332833fe8 /* NpRigidStatic.cpp */, + FFFD328340507fc332834050 /* NpScene.cpp */, + FFFD328340b87fc3328340b8 /* NpSceneQueries.cpp */, + FFFD328341207fc332834120 /* NpSerializerAdapter.cpp */, + FFFD328341887fc332834188 /* NpShape.cpp */, + FFFD328341f07fc3328341f0 /* NpShapeManager.cpp */, + FFFD328342587fc332834258 /* NpSpatialIndex.cpp */, + FFFD328342c07fc3328342c0 /* NpVolumeCache.cpp */, + FFFD328343287fc332834328 /* NpWriteCheck.cpp */, + FFFD328343907fc332834390 /* PvdMetaDataPvdBinding.cpp */, + FFFD328343f87fc3328343f8 /* PvdPhysicsClient.cpp */, + FFFD328344607fc332834460 /* particles/NpParticleBaseTemplate.h */, + FFFD328344c87fc3328344c8 /* particles/NpParticleFluid.h */, + FFFD328345307fc332834530 /* particles/NpParticleFluidReadData.h */, + FFFD328345987fc332834598 /* particles/NpParticleSystem.h */, + FFFD328346007fc332834600 /* particles/NpParticleFluid.cpp */, + FFFD328346687fc332834668 /* particles/NpParticleSystem.cpp */, + FFFD328346d07fc3328346d0 /* buffering/ScbActor.h */, + FFFD328347387fc332834738 /* buffering/ScbAggregate.h */, + FFFD328347a07fc3328347a0 /* buffering/ScbArticulation.h */, + FFFD328348087fc332834808 /* buffering/ScbArticulationJoint.h */, + FFFD328348707fc332834870 /* buffering/ScbBase.h */, + FFFD328348d87fc3328348d8 /* buffering/ScbBody.h */, + FFFD328349407fc332834940 /* buffering/ScbCloth.h */, + FFFD328349a87fc3328349a8 /* buffering/ScbConstraint.h */, + FFFD32834a107fc332834a10 /* buffering/ScbDefs.h */, + FFFD32834a787fc332834a78 /* buffering/ScbNpDeps.h */, + FFFD32834ae07fc332834ae0 /* buffering/ScbParticleSystem.h */, + FFFD32834b487fc332834b48 /* buffering/ScbRigidObject.h */, + FFFD32834bb07fc332834bb0 /* buffering/ScbRigidStatic.h */, + FFFD32834c187fc332834c18 /* buffering/ScbScene.h */, + FFFD32834c807fc332834c80 /* buffering/ScbSceneBuffer.h */, + FFFD32834ce87fc332834ce8 /* buffering/ScbScenePvdClient.h */, + FFFD32834d507fc332834d50 /* buffering/ScbShape.h */, + FFFD32834db87fc332834db8 /* buffering/ScbType.h */, + FFFD32834e207fc332834e20 /* buffering/ScbActor.cpp */, + FFFD32834e887fc332834e88 /* buffering/ScbAggregate.cpp */, + FFFD32834ef07fc332834ef0 /* buffering/ScbBase.cpp */, + FFFD32834f587fc332834f58 /* buffering/ScbCloth.cpp */, + FFFD32834fc07fc332834fc0 /* buffering/ScbMetaData.cpp */, + FFFD328350287fc332835028 /* buffering/ScbParticleSystem.cpp */, + FFFD328350907fc332835090 /* buffering/ScbScene.cpp */, + FFFD328350f87fc3328350f8 /* buffering/ScbScenePvdClient.cpp */, + FFFD328351607fc332835160 /* buffering/ScbShape.cpp */, + FFFD328351c87fc3328351c8 /* cloth/NpCloth.h */, + FFFD328352307fc332835230 /* cloth/NpClothFabric.h */, + FFFD328352987fc332835298 /* cloth/NpClothParticleData.h */, + FFFD328353007fc332835300 /* cloth/NpCloth.cpp */, + FFFD328353687fc332835368 /* cloth/NpClothFabric.cpp */, + FFFD328353d07fc3328353d0 /* cloth/NpClothParticleData.cpp */, + FFFD328354387fc332835438 /* ../../ImmediateMode/src/NpImmediateMode.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2d9f49b87f922d9f49b8 /* include */ = { + FFFB31538be87fc331538be8 /* include */ = { isa = PBXGroup; children = ( - FFFD2c863e007f922c863e00 /* PxActor.h */, - FFFD2c863e687f922c863e68 /* PxAggregate.h */, - FFFD2c863ed07f922c863ed0 /* PxArticulation.h */, - FFFD2c863f387f922c863f38 /* PxArticulationJoint.h */, - FFFD2c863fa07f922c863fa0 /* PxArticulationLink.h */, - FFFD2c8640087f922c864008 /* PxBatchQuery.h */, - FFFD2c8640707f922c864070 /* PxBatchQueryDesc.h */, - FFFD2c8640d87f922c8640d8 /* PxBroadPhase.h */, - FFFD2c8641407f922c864140 /* PxClient.h */, - FFFD2c8641a87f922c8641a8 /* PxConstraint.h */, - FFFD2c8642107f922c864210 /* PxConstraintDesc.h */, - FFFD2c8642787f922c864278 /* PxContact.h */, - FFFD2c8642e07f922c8642e0 /* PxContactModifyCallback.h */, - FFFD2c8643487f922c864348 /* PxDeletionListener.h */, - FFFD2c8643b07f922c8643b0 /* PxFiltering.h */, - FFFD2c8644187f922c864418 /* PxForceMode.h */, - FFFD2c8644807f922c864480 /* PxImmediateMode.h */, - FFFD2c8644e87f922c8644e8 /* PxLockedData.h */, - FFFD2c8645507f922c864550 /* PxMaterial.h */, - FFFD2c8645b87f922c8645b8 /* PxPhysXConfig.h */, - FFFD2c8646207f922c864620 /* PxPhysics.h */, - FFFD2c8646887f922c864688 /* PxPhysicsAPI.h */, - FFFD2c8646f07f922c8646f0 /* PxPhysicsSerialization.h */, - FFFD2c8647587f922c864758 /* PxPhysicsVersion.h */, - FFFD2c8647c07f922c8647c0 /* PxPruningStructure.h */, - FFFD2c8648287f922c864828 /* PxQueryFiltering.h */, - FFFD2c8648907f922c864890 /* PxQueryReport.h */, - FFFD2c8648f87f922c8648f8 /* PxRigidActor.h */, - FFFD2c8649607f922c864960 /* PxRigidBody.h */, - FFFD2c8649c87f922c8649c8 /* PxRigidDynamic.h */, - FFFD2c864a307f922c864a30 /* PxRigidStatic.h */, - FFFD2c864a987f922c864a98 /* PxScene.h */, - FFFD2c864b007f922c864b00 /* PxSceneDesc.h */, - FFFD2c864b687f922c864b68 /* PxSceneLock.h */, - FFFD2c864bd07f922c864bd0 /* PxShape.h */, - FFFD2c864c387f922c864c38 /* PxSimulationEventCallback.h */, - FFFD2c864ca07f922c864ca0 /* PxSimulationStatistics.h */, - FFFD2c864d087f922c864d08 /* PxSpatialIndex.h */, - FFFD2c864d707f922c864d70 /* PxVisualizationParameter.h */, - FFFD2c864dd87f922c864dd8 /* PxVolumeCache.h */, - FFFD2c864e407f922c864e40 /* particles/PxParticleBase.h */, - FFFD2c864ea87f922c864ea8 /* particles/PxParticleBaseFlag.h */, - FFFD2c864f107f922c864f10 /* particles/PxParticleCreationData.h */, - FFFD2c864f787f922c864f78 /* particles/PxParticleFlag.h */, - FFFD2c864fe07f922c864fe0 /* particles/PxParticleFluid.h */, - FFFD2c8650487f922c865048 /* particles/PxParticleFluidReadData.h */, - FFFD2c8650b07f922c8650b0 /* particles/PxParticleReadData.h */, - FFFD2c8651187f922c865118 /* particles/PxParticleSystem.h */, - FFFD2c8651807f922c865180 /* pvd/PxPvdSceneClient.h */, - FFFD2c8651e87f922c8651e8 /* cloth/PxCloth.h */, - FFFD2c8652507f922c865250 /* cloth/PxClothCollisionData.h */, - FFFD2c8652b87f922c8652b8 /* cloth/PxClothFabric.h */, - FFFD2c8653207f922c865320 /* cloth/PxClothParticleData.h */, - FFFD2c8653887f922c865388 /* cloth/PxClothTypes.h */, + FFFD328356007fc332835600 /* PxActor.h */, + FFFD328356687fc332835668 /* PxAggregate.h */, + FFFD328356d07fc3328356d0 /* PxArticulation.h */, + FFFD328357387fc332835738 /* PxArticulationJoint.h */, + FFFD328357a07fc3328357a0 /* PxArticulationLink.h */, + FFFD328358087fc332835808 /* PxBatchQuery.h */, + FFFD328358707fc332835870 /* PxBatchQueryDesc.h */, + FFFD328358d87fc3328358d8 /* PxBroadPhase.h */, + FFFD328359407fc332835940 /* PxClient.h */, + FFFD328359a87fc3328359a8 /* PxConstraint.h */, + FFFD32835a107fc332835a10 /* PxConstraintDesc.h */, + FFFD32835a787fc332835a78 /* PxContact.h */, + FFFD32835ae07fc332835ae0 /* PxContactModifyCallback.h */, + FFFD32835b487fc332835b48 /* PxDeletionListener.h */, + FFFD32835bb07fc332835bb0 /* PxFiltering.h */, + FFFD32835c187fc332835c18 /* PxForceMode.h */, + FFFD32835c807fc332835c80 /* PxImmediateMode.h */, + FFFD32835ce87fc332835ce8 /* PxLockedData.h */, + FFFD32835d507fc332835d50 /* PxMaterial.h */, + FFFD32835db87fc332835db8 /* PxPhysXConfig.h */, + FFFD32835e207fc332835e20 /* PxPhysics.h */, + FFFD32835e887fc332835e88 /* PxPhysicsAPI.h */, + FFFD32835ef07fc332835ef0 /* PxPhysicsSerialization.h */, + FFFD32835f587fc332835f58 /* PxPhysicsVersion.h */, + FFFD32835fc07fc332835fc0 /* PxPruningStructure.h */, + FFFD328360287fc332836028 /* PxQueryFiltering.h */, + FFFD328360907fc332836090 /* PxQueryReport.h */, + FFFD328360f87fc3328360f8 /* PxRigidActor.h */, + FFFD328361607fc332836160 /* PxRigidBody.h */, + FFFD328361c87fc3328361c8 /* PxRigidDynamic.h */, + FFFD328362307fc332836230 /* PxRigidStatic.h */, + FFFD328362987fc332836298 /* PxScene.h */, + FFFD328363007fc332836300 /* PxSceneDesc.h */, + FFFD328363687fc332836368 /* PxSceneLock.h */, + FFFD328363d07fc3328363d0 /* PxShape.h */, + FFFD328364387fc332836438 /* PxSimulationEventCallback.h */, + FFFD328364a07fc3328364a0 /* PxSimulationStatistics.h */, + FFFD328365087fc332836508 /* PxSpatialIndex.h */, + FFFD328365707fc332836570 /* PxVisualizationParameter.h */, + FFFD328365d87fc3328365d8 /* PxVolumeCache.h */, + FFFD328366407fc332836640 /* particles/PxParticleBase.h */, + FFFD328366a87fc3328366a8 /* particles/PxParticleBaseFlag.h */, + FFFD328367107fc332836710 /* particles/PxParticleCreationData.h */, + FFFD328367787fc332836778 /* particles/PxParticleFlag.h */, + FFFD328367e07fc3328367e0 /* particles/PxParticleFluid.h */, + FFFD328368487fc332836848 /* particles/PxParticleFluidReadData.h */, + FFFD328368b07fc3328368b0 /* particles/PxParticleReadData.h */, + FFFD328369187fc332836918 /* particles/PxParticleSystem.h */, + FFFD328369807fc332836980 /* pvd/PxPvdSceneClient.h */, + FFFD328369e87fc3328369e8 /* cloth/PxCloth.h */, + FFFD32836a507fc332836a50 /* cloth/PxClothCollisionData.h */, + FFFD32836ab87fc332836ab8 /* cloth/PxClothFabric.h */, + FFFD32836b207fc332836b20 /* cloth/PxClothParticleData.h */, + FFFD32836b887fc332836b88 /* cloth/PxClothTypes.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2d9f49e07f922d9f49e0 /* metadata */ = { + FFFB31538c107fc331538c10 /* metadata */ = { isa = PBXGroup; children = ( - FFFD2c8632007f922c863200 /* core/include/PvdMetaDataDefineProperties.h */, - FFFD2c8632687f922c863268 /* core/include/PvdMetaDataExtensions.h */, - FFFD2c8632d07f922c8632d0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFD2c8633387f922c863338 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFD2c8633a07f922c8633a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFD2c8634087f922c863408 /* core/include/PxMetaDataCompare.h */, - FFFD2c8634707f922c863470 /* core/include/PxMetaDataCppPrefix.h */, - FFFD2c8634d87f922c8634d8 /* core/include/PxMetaDataObjects.h */, - FFFD2c8635407f922c863540 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFD2c8635a87f922c8635a8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, - FFFD2c8636107f922c863610 /* core/src/PxMetaDataObjects.cpp */, + FFFD3282d8007fc33282d800 /* core/include/PvdMetaDataDefineProperties.h */, + FFFD3282d8687fc33282d868 /* core/include/PvdMetaDataExtensions.h */, + FFFD3282d8d07fc33282d8d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFD3282d9387fc33282d938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFD3282d9a07fc33282d9a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFD3282da087fc33282da08 /* core/include/PxMetaDataCompare.h */, + FFFD3282da707fc33282da70 /* core/include/PxMetaDataCppPrefix.h */, + FFFD3282dad87fc33282dad8 /* core/include/PxMetaDataObjects.h */, + FFFD3282db407fc33282db40 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFD3282dba87fc33282dba8 /* core/src/PxAutoGeneratedMetaDataObjects.cpp */, + FFFD3282dc107fc33282dc10 /* core/src/PxMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB2d9ecca07f922d9ecca0 /* PhysXCharacterKinematic */ = { + FFFB315310607fc331531060 /* PhysXCharacterKinematic */ = { isa = PBXGroup; children = ( - FFFB2d9f3c507f922d9f3c50 /* include */, - FFFB2d9f3c787f922d9f3c78 /* src */, + FFFB315366707fc331536670 /* include */, + FFFB315366987fc331536698 /* src */, ); name = "PhysXCharacterKinematic"; sourceTree = "<group>"; }; - FFFB2d9f3c507f922d9f3c50 /* include */ = { + FFFB315366707fc331536670 /* include */ = { isa = PBXGroup; children = ( - FFFD2d9f3ca07f922d9f3ca0 /* PxBoxController.h */, - FFFD2d9f3d087f922d9f3d08 /* PxCapsuleController.h */, - FFFD2d9f3d707f922d9f3d70 /* PxCharacter.h */, - FFFD2d9f3dd87f922d9f3dd8 /* PxController.h */, - FFFD2d9f3e407f922d9f3e40 /* PxControllerBehavior.h */, - FFFD2d9f3ea87f922d9f3ea8 /* PxControllerManager.h */, - FFFD2d9f3f107f922d9f3f10 /* PxControllerObstacles.h */, - FFFD2d9f3f787f922d9f3f78 /* PxExtended.h */, + FFFD31537f307fc331537f30 /* PxBoxController.h */, + FFFD31537f987fc331537f98 /* PxCapsuleController.h */, + FFFD315380007fc331538000 /* PxCharacter.h */, + FFFD315380687fc331538068 /* PxController.h */, + FFFD315380d07fc3315380d0 /* PxControllerBehavior.h */, + FFFD315381387fc331538138 /* PxControllerManager.h */, + FFFD315381a07fc3315381a0 /* PxControllerObstacles.h */, + FFFD315382087fc331538208 /* PxExtended.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2d9f3c787f922d9f3c78 /* src */ = { + FFFB315366987fc331536698 /* src */ = { isa = PBXGroup; children = ( - FFFD2c85e4007f922c85e400 /* CctBoxController.h */, - FFFD2c85e4687f922c85e468 /* CctCapsuleController.h */, - FFFD2c85e4d07f922c85e4d0 /* CctCharacterController.h */, - FFFD2c85e5387f922c85e538 /* CctCharacterControllerManager.h */, - FFFD2c85e5a07f922c85e5a0 /* CctController.h */, - FFFD2c85e6087f922c85e608 /* CctInternalStructs.h */, - FFFD2c85e6707f922c85e670 /* CctObstacleContext.h */, - FFFD2c85e6d87f922c85e6d8 /* CctSweptBox.h */, - FFFD2c85e7407f922c85e740 /* CctSweptCapsule.h */, - FFFD2c85e7a87f922c85e7a8 /* CctSweptVolume.h */, - FFFD2c85e8107f922c85e810 /* CctUtils.h */, - FFFD2c85e8787f922c85e878 /* CctBoxController.cpp */, - FFFD2c85e8e07f922c85e8e0 /* CctCapsuleController.cpp */, - FFFD2c85e9487f922c85e948 /* CctCharacterController.cpp */, - FFFD2c85e9b07f922c85e9b0 /* CctCharacterControllerCallbacks.cpp */, - FFFD2c85ea187f922c85ea18 /* CctCharacterControllerManager.cpp */, - FFFD2c85ea807f922c85ea80 /* CctController.cpp */, - FFFD2c85eae87f922c85eae8 /* CctObstacleContext.cpp */, - FFFD2c85eb507f922c85eb50 /* CctSweptBox.cpp */, - FFFD2c85ebb87f922c85ebb8 /* CctSweptCapsule.cpp */, - FFFD2c85ec207f922c85ec20 /* CctSweptVolume.cpp */, + FFFD32836c007fc332836c00 /* CctBoxController.h */, + FFFD32836c687fc332836c68 /* CctCapsuleController.h */, + FFFD32836cd07fc332836cd0 /* CctCharacterController.h */, + FFFD32836d387fc332836d38 /* CctCharacterControllerManager.h */, + FFFD32836da07fc332836da0 /* CctController.h */, + FFFD32836e087fc332836e08 /* CctInternalStructs.h */, + FFFD32836e707fc332836e70 /* CctObstacleContext.h */, + FFFD32836ed87fc332836ed8 /* CctSweptBox.h */, + FFFD32836f407fc332836f40 /* CctSweptCapsule.h */, + FFFD32836fa87fc332836fa8 /* CctSweptVolume.h */, + FFFD328370107fc332837010 /* CctUtils.h */, + FFFD328370787fc332837078 /* CctBoxController.cpp */, + FFFD328370e07fc3328370e0 /* CctCapsuleController.cpp */, + FFFD328371487fc332837148 /* CctCharacterController.cpp */, + FFFD328371b07fc3328371b0 /* CctCharacterControllerCallbacks.cpp */, + FFFD328372187fc332837218 /* CctCharacterControllerManager.cpp */, + FFFD328372807fc332837280 /* CctController.cpp */, + FFFD328372e87fc3328372e8 /* CctObstacleContext.cpp */, + FFFD328373507fc332837350 /* CctSweptBox.cpp */, + FFFD328373b87fc3328373b8 /* CctSweptCapsule.cpp */, + FFFD328374207fc332837420 /* CctSweptVolume.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2d9ee0607f922d9ee060 /* PhysXVehicle */ = { + FFFB315326507fc331532650 /* PhysXVehicle */ = { isa = PBXGroup; children = ( - FFFB2dc003207f922dc00320 /* include */, - FFFB2dc003487f922dc00348 /* src */, - FFFB2dc003707f922dc00370 /* metadata */, + FFFB31542f907fc331542f90 /* include */, + FFFB31542fb87fc331542fb8 /* src */, + FFFB31542fe07fc331542fe0 /* metadata */, ); name = "PhysXVehicle"; sourceTree = "<group>"; }; - FFFB2dc003207f922dc00320 /* include */ = { + FFFB31542f907fc331542f90 /* include */ = { isa = PBXGroup; children = ( - FFFD2c8674007f922c867400 /* PxVehicleComponents.h */, - FFFD2c8674687f922c867468 /* PxVehicleDrive.h */, - FFFD2c8674d07f922c8674d0 /* PxVehicleDrive4W.h */, - FFFD2c8675387f922c867538 /* PxVehicleDriveNW.h */, - FFFD2c8675a07f922c8675a0 /* PxVehicleDriveTank.h */, - FFFD2c8676087f922c867608 /* PxVehicleNoDrive.h */, - FFFD2c8676707f922c867670 /* PxVehicleSDK.h */, - FFFD2c8676d87f922c8676d8 /* PxVehicleShaders.h */, - FFFD2c8677407f922c867740 /* PxVehicleTireFriction.h */, - FFFD2c8677a87f922c8677a8 /* PxVehicleUpdate.h */, - FFFD2c8678107f922c867810 /* PxVehicleUtil.h */, - FFFD2c8678787f922c867878 /* PxVehicleUtilControl.h */, - FFFD2c8678e07f922c8678e0 /* PxVehicleUtilSetup.h */, - FFFD2c8679487f922c867948 /* PxVehicleUtilTelemetry.h */, - FFFD2c8679b07f922c8679b0 /* PxVehicleWheels.h */, + FFFD328392007fc332839200 /* PxVehicleComponents.h */, + FFFD328392687fc332839268 /* PxVehicleDrive.h */, + FFFD328392d07fc3328392d0 /* PxVehicleDrive4W.h */, + FFFD328393387fc332839338 /* PxVehicleDriveNW.h */, + FFFD328393a07fc3328393a0 /* PxVehicleDriveTank.h */, + FFFD328394087fc332839408 /* PxVehicleNoDrive.h */, + FFFD328394707fc332839470 /* PxVehicleSDK.h */, + FFFD328394d87fc3328394d8 /* PxVehicleShaders.h */, + FFFD328395407fc332839540 /* PxVehicleTireFriction.h */, + FFFD328395a87fc3328395a8 /* PxVehicleUpdate.h */, + FFFD328396107fc332839610 /* PxVehicleUtil.h */, + FFFD328396787fc332839678 /* PxVehicleUtilControl.h */, + FFFD328396e07fc3328396e0 /* PxVehicleUtilSetup.h */, + FFFD328397487fc332839748 /* PxVehicleUtilTelemetry.h */, + FFFD328397b07fc3328397b0 /* PxVehicleWheels.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2dc003487f922dc00348 /* src */ = { + FFFB31542fb87fc331542fb8 /* src */ = { isa = PBXGroup; children = ( - FFFD2c8692007f922c869200 /* PxVehicleDefaults.h */, - FFFD2c8692687f922c869268 /* PxVehicleLinearMath.h */, - FFFD2c8692d07f922c8692d0 /* PxVehicleSerialization.h */, - FFFD2c8693387f922c869338 /* PxVehicleSuspLimitConstraintShader.h */, - FFFD2c8693a07f922c8693a0 /* PxVehicleSuspWheelTire4.h */, - FFFD2c8694087f922c869408 /* PxVehicleComponents.cpp */, - FFFD2c8694707f922c869470 /* PxVehicleDrive.cpp */, - FFFD2c8694d87f922c8694d8 /* PxVehicleDrive4W.cpp */, - FFFD2c8695407f922c869540 /* PxVehicleDriveNW.cpp */, - FFFD2c8695a87f922c8695a8 /* PxVehicleDriveTank.cpp */, - FFFD2c8696107f922c869610 /* PxVehicleMetaData.cpp */, - FFFD2c8696787f922c869678 /* PxVehicleNoDrive.cpp */, - FFFD2c8696e07f922c8696e0 /* PxVehicleSDK.cpp */, - FFFD2c8697487f922c869748 /* PxVehicleSerialization.cpp */, - FFFD2c8697b07f922c8697b0 /* PxVehicleSuspWheelTire4.cpp */, - FFFD2c8698187f922c869818 /* PxVehicleTireFriction.cpp */, - FFFD2c8698807f922c869880 /* PxVehicleUpdate.cpp */, - FFFD2c8698e87f922c8698e8 /* PxVehicleWheels.cpp */, - FFFD2c8699507f922c869950 /* VehicleUtilControl.cpp */, - FFFD2c8699b87f922c8699b8 /* VehicleUtilSetup.cpp */, - FFFD2c869a207f922c869a20 /* VehicleUtilTelemetry.cpp */, + FFFD3283b0007fc33283b000 /* PxVehicleDefaults.h */, + FFFD3283b0687fc33283b068 /* PxVehicleLinearMath.h */, + FFFD3283b0d07fc33283b0d0 /* PxVehicleSerialization.h */, + FFFD3283b1387fc33283b138 /* PxVehicleSuspLimitConstraintShader.h */, + FFFD3283b1a07fc33283b1a0 /* PxVehicleSuspWheelTire4.h */, + FFFD3283b2087fc33283b208 /* PxVehicleComponents.cpp */, + FFFD3283b2707fc33283b270 /* PxVehicleDrive.cpp */, + FFFD3283b2d87fc33283b2d8 /* PxVehicleDrive4W.cpp */, + FFFD3283b3407fc33283b340 /* PxVehicleDriveNW.cpp */, + FFFD3283b3a87fc33283b3a8 /* PxVehicleDriveTank.cpp */, + FFFD3283b4107fc33283b410 /* PxVehicleMetaData.cpp */, + FFFD3283b4787fc33283b478 /* PxVehicleNoDrive.cpp */, + FFFD3283b4e07fc33283b4e0 /* PxVehicleSDK.cpp */, + FFFD3283b5487fc33283b548 /* PxVehicleSerialization.cpp */, + FFFD3283b5b07fc33283b5b0 /* PxVehicleSuspWheelTire4.cpp */, + FFFD3283b6187fc33283b618 /* PxVehicleTireFriction.cpp */, + FFFD3283b6807fc33283b680 /* PxVehicleUpdate.cpp */, + FFFD3283b6e87fc33283b6e8 /* PxVehicleWheels.cpp */, + FFFD3283b7507fc33283b750 /* VehicleUtilControl.cpp */, + FFFD3283b7b87fc33283b7b8 /* VehicleUtilSetup.cpp */, + FFFD3283b8207fc33283b820 /* VehicleUtilTelemetry.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2dc003707f922dc00370 /* metadata */ = { + FFFB31542fe07fc331542fe0 /* metadata */ = { isa = PBXGroup; children = ( - FFFD2dc039c07f922dc039c0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, - FFFD2dc03a287f922dc03a28 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, - FFFD2dc03a907f922dc03a90 /* include/PxVehicleMetaDataObjects.h */, - FFFD2dc03af87f922dc03af8 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, - FFFD2dc03b607f922dc03b60 /* src/PxVehicleMetaDataObjects.cpp */, + FFFD31543ce07fc331543ce0 /* include/PxVehicleAutoGeneratedMetaDataObjectNames.h */, + FFFD31543d487fc331543d48 /* include/PxVehicleAutoGeneratedMetaDataObjects.h */, + FFFD31543db07fc331543db0 /* include/PxVehicleMetaDataObjects.h */, + FFFD31543e187fc331543e18 /* src/PxVehicleAutoGeneratedMetaDataObjects.cpp */, + FFFD31543e807fc331543e80 /* src/PxVehicleMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB2dc036207f922dc03620 /* PhysXExtensions */ = { + FFFB31541f407fc331541f40 /* PhysXExtensions */ = { isa = PBXGroup; children = ( - FFFB2dc0aca07f922dc0aca0 /* include */, - FFFB2dc0acc87f922dc0acc8 /* src */, - FFFB2dc0acf07f922dc0acf0 /* serialization */, - FFFB2dc0ad187f922dc0ad18 /* metadata */, + FFFB3154af907fc33154af90 /* include */, + FFFB3154afb87fc33154afb8 /* src */, + FFFB3154afe07fc33154afe0 /* serialization */, + FFFB3154b0087fc33154b008 /* metadata */, ); name = "PhysXExtensions"; sourceTree = "<group>"; }; - FFFB2dc0aca07f922dc0aca0 /* include */ = { + FFFB3154af907fc33154af90 /* include */ = { isa = PBXGroup; children = ( - FFFD2c86ca007f922c86ca00 /* PxBinaryConverter.h */, - FFFD2c86ca687f922c86ca68 /* PxBroadPhaseExt.h */, - FFFD2c86cad07f922c86cad0 /* PxClothFabricCooker.h */, - FFFD2c86cb387f922c86cb38 /* PxClothMeshDesc.h */, - FFFD2c86cba07f922c86cba0 /* PxClothMeshQuadifier.h */, - FFFD2c86cc087f922c86cc08 /* PxClothTetherCooker.h */, - FFFD2c86cc707f922c86cc70 /* PxCollectionExt.h */, - FFFD2c86ccd87f922c86ccd8 /* PxConstraintExt.h */, - FFFD2c86cd407f922c86cd40 /* PxConvexMeshExt.h */, - FFFD2c86cda87f922c86cda8 /* PxD6Joint.h */, - FFFD2c86ce107f922c86ce10 /* PxDefaultAllocator.h */, - FFFD2c86ce787f922c86ce78 /* PxDefaultCpuDispatcher.h */, - FFFD2c86cee07f922c86cee0 /* PxDefaultErrorCallback.h */, - FFFD2c86cf487f922c86cf48 /* PxDefaultSimulationFilterShader.h */, - FFFD2c86cfb07f922c86cfb0 /* PxDefaultStreams.h */, - FFFD2c86d0187f922c86d018 /* PxDistanceJoint.h */, - FFFD2c86d0807f922c86d080 /* PxExtensionsAPI.h */, - FFFD2c86d0e87f922c86d0e8 /* PxFixedJoint.h */, - FFFD2c86d1507f922c86d150 /* PxJoint.h */, - FFFD2c86d1b87f922c86d1b8 /* PxJointLimit.h */, - FFFD2c86d2207f922c86d220 /* PxMassProperties.h */, - FFFD2c86d2887f922c86d288 /* PxParticleExt.h */, - FFFD2c86d2f07f922c86d2f0 /* PxPrismaticJoint.h */, - FFFD2c86d3587f922c86d358 /* PxRaycastCCD.h */, - FFFD2c86d3c07f922c86d3c0 /* PxRepXSerializer.h */, - FFFD2c86d4287f922c86d428 /* PxRepXSimpleType.h */, - FFFD2c86d4907f922c86d490 /* PxRevoluteJoint.h */, - FFFD2c86d4f87f922c86d4f8 /* PxRigidActorExt.h */, - FFFD2c86d5607f922c86d560 /* PxRigidBodyExt.h */, - FFFD2c86d5c87f922c86d5c8 /* PxSceneQueryExt.h */, - FFFD2c86d6307f922c86d630 /* PxSerialization.h */, - FFFD2c86d6987f922c86d698 /* PxShapeExt.h */, - FFFD2c86d7007f922c86d700 /* PxSimpleFactory.h */, - FFFD2c86d7687f922c86d768 /* PxSmoothNormals.h */, - FFFD2c86d7d07f922c86d7d0 /* PxSphericalJoint.h */, - FFFD2c86d8387f922c86d838 /* PxStringTableExt.h */, - FFFD2c86d8a07f922c86d8a0 /* PxTriangleMeshExt.h */, + FFFD3283e8007fc33283e800 /* PxBinaryConverter.h */, + FFFD3283e8687fc33283e868 /* PxBroadPhaseExt.h */, + FFFD3283e8d07fc33283e8d0 /* PxClothFabricCooker.h */, + FFFD3283e9387fc33283e938 /* PxClothMeshDesc.h */, + FFFD3283e9a07fc33283e9a0 /* PxClothMeshQuadifier.h */, + FFFD3283ea087fc33283ea08 /* PxClothTetherCooker.h */, + FFFD3283ea707fc33283ea70 /* PxCollectionExt.h */, + FFFD3283ead87fc33283ead8 /* PxConstraintExt.h */, + FFFD3283eb407fc33283eb40 /* PxConvexMeshExt.h */, + FFFD3283eba87fc33283eba8 /* PxD6Joint.h */, + FFFD3283ec107fc33283ec10 /* PxDefaultAllocator.h */, + FFFD3283ec787fc33283ec78 /* PxDefaultCpuDispatcher.h */, + FFFD3283ece07fc33283ece0 /* PxDefaultErrorCallback.h */, + FFFD3283ed487fc33283ed48 /* PxDefaultSimulationFilterShader.h */, + FFFD3283edb07fc33283edb0 /* PxDefaultStreams.h */, + FFFD3283ee187fc33283ee18 /* PxDistanceJoint.h */, + FFFD3283ee807fc33283ee80 /* PxExtensionsAPI.h */, + FFFD3283eee87fc33283eee8 /* PxFixedJoint.h */, + FFFD3283ef507fc33283ef50 /* PxJoint.h */, + FFFD3283efb87fc33283efb8 /* PxJointLimit.h */, + FFFD3283f0207fc33283f020 /* PxMassProperties.h */, + FFFD3283f0887fc33283f088 /* PxParticleExt.h */, + FFFD3283f0f07fc33283f0f0 /* PxPrismaticJoint.h */, + FFFD3283f1587fc33283f158 /* PxRaycastCCD.h */, + FFFD3283f1c07fc33283f1c0 /* PxRepXSerializer.h */, + FFFD3283f2287fc33283f228 /* PxRepXSimpleType.h */, + FFFD3283f2907fc33283f290 /* PxRevoluteJoint.h */, + FFFD3283f2f87fc33283f2f8 /* PxRigidActorExt.h */, + FFFD3283f3607fc33283f360 /* PxRigidBodyExt.h */, + FFFD3283f3c87fc33283f3c8 /* PxSceneQueryExt.h */, + FFFD3283f4307fc33283f430 /* PxSerialization.h */, + FFFD3283f4987fc33283f498 /* PxShapeExt.h */, + FFFD3283f5007fc33283f500 /* PxSimpleFactory.h */, + FFFD3283f5687fc33283f568 /* PxSmoothNormals.h */, + FFFD3283f5d07fc33283f5d0 /* PxSphericalJoint.h */, + FFFD3283f6387fc33283f638 /* PxStringTableExt.h */, + FFFD3283f6a07fc33283f6a0 /* PxTriangleMeshExt.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2dc0acc87f922dc0acc8 /* src */ = { + FFFB3154afb87fc33154afb8 /* src */ = { isa = PBXGroup; children = ( - FFFD2c86b4007f922c86b400 /* ExtConstraintHelper.h */, - FFFD2c86b4687f922c86b468 /* ExtCpuWorkerThread.h */, - FFFD2c86b4d07f922c86b4d0 /* ExtD6Joint.h */, - FFFD2c86b5387f922c86b538 /* ExtDefaultCpuDispatcher.h */, - FFFD2c86b5a07f922c86b5a0 /* ExtDistanceJoint.h */, - FFFD2c86b6087f922c86b608 /* ExtFixedJoint.h */, - FFFD2c86b6707f922c86b670 /* ExtInertiaTensor.h */, - FFFD2c86b6d87f922c86b6d8 /* ExtJoint.h */, - FFFD2c86b7407f922c86b740 /* ExtJointMetaDataExtensions.h */, - FFFD2c86b7a87f922c86b7a8 /* ExtPlatform.h */, - FFFD2c86b8107f922c86b810 /* ExtPrismaticJoint.h */, - FFFD2c86b8787f922c86b878 /* ExtPvd.h */, - FFFD2c86b8e07f922c86b8e0 /* ExtRevoluteJoint.h */, - FFFD2c86b9487f922c86b948 /* ExtSerialization.h */, - FFFD2c86b9b07f922c86b9b0 /* ExtSharedQueueEntryPool.h */, - FFFD2c86ba187f922c86ba18 /* ExtSphericalJoint.h */, - FFFD2c86ba807f922c86ba80 /* ExtTaskQueueHelper.h */, - FFFD2c86bae87f922c86bae8 /* ExtBroadPhase.cpp */, - FFFD2c86bb507f922c86bb50 /* ExtClothFabricCooker.cpp */, - FFFD2c86bbb87f922c86bbb8 /* ExtClothGeodesicTetherCooker.cpp */, - FFFD2c86bc207f922c86bc20 /* ExtClothMeshQuadifier.cpp */, - FFFD2c86bc887f922c86bc88 /* ExtClothSimpleTetherCooker.cpp */, - FFFD2c86bcf07f922c86bcf0 /* ExtCollection.cpp */, - FFFD2c86bd587f922c86bd58 /* ExtConvexMeshExt.cpp */, - FFFD2c86bdc07f922c86bdc0 /* ExtCpuWorkerThread.cpp */, - FFFD2c86be287f922c86be28 /* ExtD6Joint.cpp */, - FFFD2c86be907f922c86be90 /* ExtD6JointSolverPrep.cpp */, - FFFD2c86bef87f922c86bef8 /* ExtDefaultCpuDispatcher.cpp */, - FFFD2c86bf607f922c86bf60 /* ExtDefaultErrorCallback.cpp */, - FFFD2c86bfc87f922c86bfc8 /* ExtDefaultSimulationFilterShader.cpp */, - FFFD2c86c0307f922c86c030 /* ExtDefaultStreams.cpp */, - FFFD2c86c0987f922c86c098 /* ExtDistanceJoint.cpp */, - FFFD2c86c1007f922c86c100 /* ExtDistanceJointSolverPrep.cpp */, - FFFD2c86c1687f922c86c168 /* ExtExtensions.cpp */, - FFFD2c86c1d07f922c86c1d0 /* ExtFixedJoint.cpp */, - FFFD2c86c2387f922c86c238 /* ExtFixedJointSolverPrep.cpp */, - FFFD2c86c2a07f922c86c2a0 /* ExtJoint.cpp */, - FFFD2c86c3087f922c86c308 /* ExtMetaData.cpp */, - FFFD2c86c3707f922c86c370 /* ExtParticleExt.cpp */, - FFFD2c86c3d87f922c86c3d8 /* ExtPrismaticJoint.cpp */, - FFFD2c86c4407f922c86c440 /* ExtPrismaticJointSolverPrep.cpp */, - FFFD2c86c4a87f922c86c4a8 /* ExtPvd.cpp */, - FFFD2c86c5107f922c86c510 /* ExtPxStringTable.cpp */, - FFFD2c86c5787f922c86c578 /* ExtRaycastCCD.cpp */, - FFFD2c86c5e07f922c86c5e0 /* ExtRevoluteJoint.cpp */, - FFFD2c86c6487f922c86c648 /* ExtRevoluteJointSolverPrep.cpp */, - FFFD2c86c6b07f922c86c6b0 /* ExtRigidBodyExt.cpp */, - FFFD2c86c7187f922c86c718 /* ExtSceneQueryExt.cpp */, - FFFD2c86c7807f922c86c780 /* ExtSimpleFactory.cpp */, - FFFD2c86c7e87f922c86c7e8 /* ExtSmoothNormals.cpp */, - FFFD2c86c8507f922c86c850 /* ExtSphericalJoint.cpp */, - FFFD2c86c8b87f922c86c8b8 /* ExtSphericalJointSolverPrep.cpp */, - FFFD2c86c9207f922c86c920 /* ExtTriangleMeshExt.cpp */, + FFFD3283d2007fc33283d200 /* ExtConstraintHelper.h */, + FFFD3283d2687fc33283d268 /* ExtCpuWorkerThread.h */, + FFFD3283d2d07fc33283d2d0 /* ExtD6Joint.h */, + FFFD3283d3387fc33283d338 /* ExtDefaultCpuDispatcher.h */, + FFFD3283d3a07fc33283d3a0 /* ExtDistanceJoint.h */, + FFFD3283d4087fc33283d408 /* ExtFixedJoint.h */, + FFFD3283d4707fc33283d470 /* ExtInertiaTensor.h */, + FFFD3283d4d87fc33283d4d8 /* ExtJoint.h */, + FFFD3283d5407fc33283d540 /* ExtJointMetaDataExtensions.h */, + FFFD3283d5a87fc33283d5a8 /* ExtPlatform.h */, + FFFD3283d6107fc33283d610 /* ExtPrismaticJoint.h */, + FFFD3283d6787fc33283d678 /* ExtPvd.h */, + FFFD3283d6e07fc33283d6e0 /* ExtRevoluteJoint.h */, + FFFD3283d7487fc33283d748 /* ExtSerialization.h */, + FFFD3283d7b07fc33283d7b0 /* ExtSharedQueueEntryPool.h */, + FFFD3283d8187fc33283d818 /* ExtSphericalJoint.h */, + FFFD3283d8807fc33283d880 /* ExtTaskQueueHelper.h */, + FFFD3283d8e87fc33283d8e8 /* ExtBroadPhase.cpp */, + FFFD3283d9507fc33283d950 /* ExtClothFabricCooker.cpp */, + FFFD3283d9b87fc33283d9b8 /* ExtClothGeodesicTetherCooker.cpp */, + FFFD3283da207fc33283da20 /* ExtClothMeshQuadifier.cpp */, + FFFD3283da887fc33283da88 /* ExtClothSimpleTetherCooker.cpp */, + FFFD3283daf07fc33283daf0 /* ExtCollection.cpp */, + FFFD3283db587fc33283db58 /* ExtConvexMeshExt.cpp */, + FFFD3283dbc07fc33283dbc0 /* ExtCpuWorkerThread.cpp */, + FFFD3283dc287fc33283dc28 /* ExtD6Joint.cpp */, + FFFD3283dc907fc33283dc90 /* ExtD6JointSolverPrep.cpp */, + FFFD3283dcf87fc33283dcf8 /* ExtDefaultCpuDispatcher.cpp */, + FFFD3283dd607fc33283dd60 /* ExtDefaultErrorCallback.cpp */, + FFFD3283ddc87fc33283ddc8 /* ExtDefaultSimulationFilterShader.cpp */, + FFFD3283de307fc33283de30 /* ExtDefaultStreams.cpp */, + FFFD3283de987fc33283de98 /* ExtDistanceJoint.cpp */, + FFFD3283df007fc33283df00 /* ExtDistanceJointSolverPrep.cpp */, + FFFD3283df687fc33283df68 /* ExtExtensions.cpp */, + FFFD3283dfd07fc33283dfd0 /* ExtFixedJoint.cpp */, + FFFD3283e0387fc33283e038 /* ExtFixedJointSolverPrep.cpp */, + FFFD3283e0a07fc33283e0a0 /* ExtJoint.cpp */, + FFFD3283e1087fc33283e108 /* ExtMetaData.cpp */, + FFFD3283e1707fc33283e170 /* ExtParticleExt.cpp */, + FFFD3283e1d87fc33283e1d8 /* ExtPrismaticJoint.cpp */, + FFFD3283e2407fc33283e240 /* ExtPrismaticJointSolverPrep.cpp */, + FFFD3283e2a87fc33283e2a8 /* ExtPvd.cpp */, + FFFD3283e3107fc33283e310 /* ExtPxStringTable.cpp */, + FFFD3283e3787fc33283e378 /* ExtRaycastCCD.cpp */, + FFFD3283e3e07fc33283e3e0 /* ExtRevoluteJoint.cpp */, + FFFD3283e4487fc33283e448 /* ExtRevoluteJointSolverPrep.cpp */, + FFFD3283e4b07fc33283e4b0 /* ExtRigidBodyExt.cpp */, + FFFD3283e5187fc33283e518 /* ExtSceneQueryExt.cpp */, + FFFD3283e5807fc33283e580 /* ExtSimpleFactory.cpp */, + FFFD3283e5e87fc33283e5e8 /* ExtSmoothNormals.cpp */, + FFFD3283e6507fc33283e650 /* ExtSphericalJoint.cpp */, + FFFD3283e6b87fc33283e6b8 /* ExtSphericalJointSolverPrep.cpp */, + FFFD3283e7207fc33283e720 /* ExtTriangleMeshExt.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2dc0acf07f922dc0acf0 /* serialization */ = { + FFFB3154afe07fc33154afe0 /* serialization */ = { isa = PBXGroup; children = ( - FFFD2c86fe007f922c86fe00 /* SnSerialUtils.h */, - FFFD2c86fe687f922c86fe68 /* SnSerializationRegistry.h */, - FFFD2c86fed07f922c86fed0 /* SnSerialUtils.cpp */, - FFFD2c86ff387f922c86ff38 /* SnSerialization.cpp */, - FFFD2c86ffa07f922c86ffa0 /* SnSerializationRegistry.cpp */, - FFFD2c8700087f922c870008 /* Binary/SnConvX.h */, - FFFD2c8700707f922c870070 /* Binary/SnConvX_Align.h */, - FFFD2c8700d87f922c8700d8 /* Binary/SnConvX_Common.h */, - FFFD2c8701407f922c870140 /* Binary/SnConvX_MetaData.h */, - FFFD2c8701a87f922c8701a8 /* Binary/SnConvX_Output.h */, - FFFD2c8702107f922c870210 /* Binary/SnConvX_Union.h */, - FFFD2c8702787f922c870278 /* Binary/SnSerializationContext.h */, - FFFD2c8702e07f922c8702e0 /* Binary/SnBinaryDeserialization.cpp */, - FFFD2c8703487f922c870348 /* Binary/SnBinarySerialization.cpp */, - FFFD2c8703b07f922c8703b0 /* Binary/SnConvX.cpp */, - FFFD2c8704187f922c870418 /* Binary/SnConvX_Align.cpp */, - FFFD2c8704807f922c870480 /* Binary/SnConvX_Convert.cpp */, - FFFD2c8704e87f922c8704e8 /* Binary/SnConvX_Error.cpp */, - FFFD2c8705507f922c870550 /* Binary/SnConvX_MetaData.cpp */, - FFFD2c8705b87f922c8705b8 /* Binary/SnConvX_Output.cpp */, - FFFD2c8706207f922c870620 /* Binary/SnConvX_Union.cpp */, - FFFD2c8706887f922c870688 /* Binary/SnSerializationContext.cpp */, - FFFD2c8706f07f922c8706f0 /* Xml/SnJointRepXSerializer.h */, - FFFD2c8707587f922c870758 /* Xml/SnPxStreamOperators.h */, - FFFD2c8707c07f922c8707c0 /* Xml/SnRepX1_0Defaults.h */, - FFFD2c8708287f922c870828 /* Xml/SnRepX3_1Defaults.h */, - FFFD2c8708907f922c870890 /* Xml/SnRepX3_2Defaults.h */, - FFFD2c8708f87f922c8708f8 /* Xml/SnRepXCollection.h */, - FFFD2c8709607f922c870960 /* Xml/SnRepXCoreSerializer.h */, - FFFD2c8709c87f922c8709c8 /* Xml/SnRepXSerializerImpl.h */, - FFFD2c870a307f922c870a30 /* Xml/SnRepXUpgrader.h */, - FFFD2c870a987f922c870a98 /* Xml/SnSimpleXmlWriter.h */, - FFFD2c870b007f922c870b00 /* Xml/SnXmlDeserializer.h */, - FFFD2c870b687f922c870b68 /* Xml/SnXmlImpl.h */, - FFFD2c870bd07f922c870bd0 /* Xml/SnXmlMemoryAllocator.h */, - FFFD2c870c387f922c870c38 /* Xml/SnXmlMemoryPool.h */, - FFFD2c870ca07f922c870ca0 /* Xml/SnXmlMemoryPoolStreams.h */, - FFFD2c870d087f922c870d08 /* Xml/SnXmlReader.h */, - FFFD2c870d707f922c870d70 /* Xml/SnXmlSerializer.h */, - FFFD2c870dd87f922c870dd8 /* Xml/SnXmlSimpleXmlWriter.h */, - FFFD2c870e407f922c870e40 /* Xml/SnXmlStringToType.h */, - FFFD2c870ea87f922c870ea8 /* Xml/SnXmlVisitorReader.h */, - FFFD2c870f107f922c870f10 /* Xml/SnXmlVisitorWriter.h */, - FFFD2c870f787f922c870f78 /* Xml/SnXmlWriter.h */, - FFFD2c870fe07f922c870fe0 /* Xml/SnJointRepXSerializer.cpp */, - FFFD2c8710487f922c871048 /* Xml/SnRepXCoreSerializer.cpp */, - FFFD2c8710b07f922c8710b0 /* Xml/SnRepXUpgrader.cpp */, - FFFD2c8711187f922c871118 /* Xml/SnXmlSerialization.cpp */, - FFFD2c8711807f922c871180 /* File/SnFile.h */, + FFFD32840e007fc332840e00 /* SnSerialUtils.h */, + FFFD32840e687fc332840e68 /* SnSerializationRegistry.h */, + FFFD32840ed07fc332840ed0 /* SnSerialUtils.cpp */, + FFFD32840f387fc332840f38 /* SnSerialization.cpp */, + FFFD32840fa07fc332840fa0 /* SnSerializationRegistry.cpp */, + FFFD328410087fc332841008 /* Binary/SnConvX.h */, + FFFD328410707fc332841070 /* Binary/SnConvX_Align.h */, + FFFD328410d87fc3328410d8 /* Binary/SnConvX_Common.h */, + FFFD328411407fc332841140 /* Binary/SnConvX_MetaData.h */, + FFFD328411a87fc3328411a8 /* Binary/SnConvX_Output.h */, + FFFD328412107fc332841210 /* Binary/SnConvX_Union.h */, + FFFD328412787fc332841278 /* Binary/SnSerializationContext.h */, + FFFD328412e07fc3328412e0 /* Binary/SnBinaryDeserialization.cpp */, + FFFD328413487fc332841348 /* Binary/SnBinarySerialization.cpp */, + FFFD328413b07fc3328413b0 /* Binary/SnConvX.cpp */, + FFFD328414187fc332841418 /* Binary/SnConvX_Align.cpp */, + FFFD328414807fc332841480 /* Binary/SnConvX_Convert.cpp */, + FFFD328414e87fc3328414e8 /* Binary/SnConvX_Error.cpp */, + FFFD328415507fc332841550 /* Binary/SnConvX_MetaData.cpp */, + FFFD328415b87fc3328415b8 /* Binary/SnConvX_Output.cpp */, + FFFD328416207fc332841620 /* Binary/SnConvX_Union.cpp */, + FFFD328416887fc332841688 /* Binary/SnSerializationContext.cpp */, + FFFD328416f07fc3328416f0 /* Xml/SnJointRepXSerializer.h */, + FFFD328417587fc332841758 /* Xml/SnPxStreamOperators.h */, + FFFD328417c07fc3328417c0 /* Xml/SnRepX1_0Defaults.h */, + FFFD328418287fc332841828 /* Xml/SnRepX3_1Defaults.h */, + FFFD328418907fc332841890 /* Xml/SnRepX3_2Defaults.h */, + FFFD328418f87fc3328418f8 /* Xml/SnRepXCollection.h */, + FFFD328419607fc332841960 /* Xml/SnRepXCoreSerializer.h */, + FFFD328419c87fc3328419c8 /* Xml/SnRepXSerializerImpl.h */, + FFFD32841a307fc332841a30 /* Xml/SnRepXUpgrader.h */, + FFFD32841a987fc332841a98 /* Xml/SnSimpleXmlWriter.h */, + FFFD32841b007fc332841b00 /* Xml/SnXmlDeserializer.h */, + FFFD32841b687fc332841b68 /* Xml/SnXmlImpl.h */, + FFFD32841bd07fc332841bd0 /* Xml/SnXmlMemoryAllocator.h */, + FFFD32841c387fc332841c38 /* Xml/SnXmlMemoryPool.h */, + FFFD32841ca07fc332841ca0 /* Xml/SnXmlMemoryPoolStreams.h */, + FFFD32841d087fc332841d08 /* Xml/SnXmlReader.h */, + FFFD32841d707fc332841d70 /* Xml/SnXmlSerializer.h */, + FFFD32841dd87fc332841dd8 /* Xml/SnXmlSimpleXmlWriter.h */, + FFFD32841e407fc332841e40 /* Xml/SnXmlStringToType.h */, + FFFD32841ea87fc332841ea8 /* Xml/SnXmlVisitorReader.h */, + FFFD32841f107fc332841f10 /* Xml/SnXmlVisitorWriter.h */, + FFFD32841f787fc332841f78 /* Xml/SnXmlWriter.h */, + FFFD32841fe07fc332841fe0 /* Xml/SnJointRepXSerializer.cpp */, + FFFD328420487fc332842048 /* Xml/SnRepXCoreSerializer.cpp */, + FFFD328420b07fc3328420b0 /* Xml/SnRepXUpgrader.cpp */, + FFFD328421187fc332842118 /* Xml/SnXmlSerialization.cpp */, + FFFD328421807fc332842180 /* File/SnFile.h */, ); name = "serialization"; sourceTree = SOURCE_ROOT; }; - FFFB2dc0ad187f922dc0ad18 /* metadata */ = { + FFFB3154b0087fc33154b008 /* metadata */ = { isa = PBXGroup; children = ( - FFFD2c86da007f922c86da00 /* core/include/PvdMetaDataDefineProperties.h */, - FFFD2c86da687f922c86da68 /* core/include/PvdMetaDataExtensions.h */, - FFFD2c86dad07f922c86dad0 /* core/include/PvdMetaDataPropertyVisitor.h */, - FFFD2c86db387f922c86db38 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, - FFFD2c86dba07f922c86dba0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, - FFFD2c86dc087f922c86dc08 /* core/include/PxMetaDataCompare.h */, - FFFD2c86dc707f922c86dc70 /* core/include/PxMetaDataCppPrefix.h */, - FFFD2c86dcd87f922c86dcd8 /* core/include/PxMetaDataObjects.h */, - FFFD2c86dd407f922c86dd40 /* core/include/RepXMetaDataPropertyVisitor.h */, - FFFD2c86dda87f922c86dda8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, - FFFD2c86de107f922c86de10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, - FFFD2c86de787f922c86de78 /* extensions/include/PxExtensionMetaDataObjects.h */, - FFFD2c86dee07f922c86dee0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, + FFFD3283f8007fc33283f800 /* core/include/PvdMetaDataDefineProperties.h */, + FFFD3283f8687fc33283f868 /* core/include/PvdMetaDataExtensions.h */, + FFFD3283f8d07fc33283f8d0 /* core/include/PvdMetaDataPropertyVisitor.h */, + FFFD3283f9387fc33283f938 /* core/include/PxAutoGeneratedMetaDataObjectNames.h */, + FFFD3283f9a07fc33283f9a0 /* core/include/PxAutoGeneratedMetaDataObjects.h */, + FFFD3283fa087fc33283fa08 /* core/include/PxMetaDataCompare.h */, + FFFD3283fa707fc33283fa70 /* core/include/PxMetaDataCppPrefix.h */, + FFFD3283fad87fc33283fad8 /* core/include/PxMetaDataObjects.h */, + FFFD3283fb407fc33283fb40 /* core/include/RepXMetaDataPropertyVisitor.h */, + FFFD3283fba87fc33283fba8 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjectNames.h */, + FFFD3283fc107fc33283fc10 /* extensions/include/PxExtensionAutoGeneratedMetaDataObjects.h */, + FFFD3283fc787fc33283fc78 /* extensions/include/PxExtensionMetaDataObjects.h */, + FFFD3283fce07fc33283fce0 /* extensions/src/PxExtensionAutoGeneratedMetaDataObjects.cpp */, ); name = "metadata"; sourceTree = SOURCE_ROOT; }; - FFFB2dc145807f922dc14580 /* SceneQuery */ = { + FFFB315548707fc331554870 /* SceneQuery */ = { isa = PBXGroup; children = ( - FFFB2dc167707f922dc16770 /* src */, - FFFB2dc167987f922dc16798 /* include */, + FFFB31556a607fc331556a60 /* src */, + FFFB31556a887fc331556a88 /* include */, ); name = "SceneQuery"; sourceTree = "<group>"; }; - FFFB2dc167707f922dc16770 /* src */ = { + FFFB31556a607fc331556a60 /* src */ = { isa = PBXGroup; children = ( - FFFD2c873e007f922c873e00 /* SqAABBPruner.cpp */, - FFFD2c873e687f922c873e68 /* SqAABBTree.cpp */, - FFFD2c873ed07f922c873ed0 /* SqAABBTreeUpdateMap.cpp */, - FFFD2c873f387f922c873f38 /* SqBounds.cpp */, - FFFD2c873fa07f922c873fa0 /* SqBucketPruner.cpp */, - FFFD2c8740087f922c874008 /* SqExtendedBucketPruner.cpp */, - FFFD2c8740707f922c874070 /* SqMetaData.cpp */, - FFFD2c8740d87f922c8740d8 /* SqPruningPool.cpp */, - FFFD2c8741407f922c874140 /* SqPruningStructure.cpp */, - FFFD2c8741a87f922c8741a8 /* SqSceneQueryManager.cpp */, - FFFD2c8742107f922c874210 /* SqAABBPruner.h */, - FFFD2c8742787f922c874278 /* SqAABBTree.h */, - FFFD2c8742e07f922c8742e0 /* SqAABBTreeQuery.h */, - FFFD2c8743487f922c874348 /* SqAABBTreeUpdateMap.h */, - FFFD2c8743b07f922c8743b0 /* SqBounds.h */, - FFFD2c8744187f922c874418 /* SqBucketPruner.h */, - FFFD2c8744807f922c874480 /* SqExtendedBucketPruner.h */, - FFFD2c8744e87f922c8744e8 /* SqPrunerTestsSIMD.h */, - FFFD2c8745507f922c874550 /* SqPruningPool.h */, - FFFD2c8745b87f922c8745b8 /* SqTypedef.h */, + FFFD32845e007fc332845e00 /* SqAABBPruner.cpp */, + FFFD32845e687fc332845e68 /* SqAABBTree.cpp */, + FFFD32845ed07fc332845ed0 /* SqAABBTreeUpdateMap.cpp */, + FFFD32845f387fc332845f38 /* SqBounds.cpp */, + FFFD32845fa07fc332845fa0 /* SqBucketPruner.cpp */, + FFFD328460087fc332846008 /* SqExtendedBucketPruner.cpp */, + FFFD328460707fc332846070 /* SqMetaData.cpp */, + FFFD328460d87fc3328460d8 /* SqPruningPool.cpp */, + FFFD328461407fc332846140 /* SqPruningStructure.cpp */, + FFFD328461a87fc3328461a8 /* SqSceneQueryManager.cpp */, + FFFD328462107fc332846210 /* SqAABBPruner.h */, + FFFD328462787fc332846278 /* SqAABBTree.h */, + FFFD328462e07fc3328462e0 /* SqAABBTreeQuery.h */, + FFFD328463487fc332846348 /* SqAABBTreeUpdateMap.h */, + FFFD328463b07fc3328463b0 /* SqBounds.h */, + FFFD328464187fc332846418 /* SqBucketPruner.h */, + FFFD328464807fc332846480 /* SqExtendedBucketPruner.h */, + FFFD328464e87fc3328464e8 /* SqPrunerTestsSIMD.h */, + FFFD328465507fc332846550 /* SqPruningPool.h */, + FFFD328465b87fc3328465b8 /* SqTypedef.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2dc167987f922dc16798 /* include */ = { + FFFB31556a887fc331556a88 /* include */ = { isa = PBXGroup; children = ( - FFFD2dc189b07f922dc189b0 /* SqPruner.h */, - FFFD2dc18a187f922dc18a18 /* SqPrunerMergeData.h */, - FFFD2dc18a807f922dc18a80 /* SqPruningStructure.h */, - FFFD2dc18ae87f922dc18ae8 /* SqSceneQueryManager.h */, + FFFD31558ca07fc331558ca0 /* SqPruner.h */, + FFFD31558d087fc331558d08 /* SqPrunerMergeData.h */, + FFFD31558d707fc331558d70 /* SqPruningStructure.h */, + FFFD31558dd87fc331558dd8 /* SqSceneQueryManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2dc18c707f922dc18c70 /* SimulationController */ = { + FFFB31558f607fc331558f60 /* SimulationController */ = { isa = PBXGroup; children = ( - FFFB2dc1abb07f922dc1abb0 /* include */, - FFFB2dc1abd87f922dc1abd8 /* src */, + FFFB3155aea07fc33155aea0 /* include */, + FFFB3155aec87fc33155aec8 /* src */, ); name = "SimulationController"; sourceTree = "<group>"; }; - FFFB2dc1abb07f922dc1abb0 /* include */ = { + FFFB3155aea07fc33155aea0 /* include */ = { isa = PBXGroup; children = ( - FFFD2c8768007f922c876800 /* ScActorCore.h */, - FFFD2c8768687f922c876868 /* ScArticulationCore.h */, - FFFD2c8768d07f922c8768d0 /* ScArticulationJointCore.h */, - FFFD2c8769387f922c876938 /* ScBodyCore.h */, - FFFD2c8769a07f922c8769a0 /* ScClothCore.h */, - FFFD2c876a087f922c876a08 /* ScClothFabricCore.h */, - FFFD2c876a707f922c876a70 /* ScConstraintCore.h */, - FFFD2c876ad87f922c876ad8 /* ScIterators.h */, - FFFD2c876b407f922c876b40 /* ScMaterialCore.h */, - FFFD2c876ba87f922c876ba8 /* ScParticleSystemCore.h */, - FFFD2c876c107f922c876c10 /* ScPhysics.h */, - FFFD2c876c787f922c876c78 /* ScRigidCore.h */, - FFFD2c876ce07f922c876ce0 /* ScScene.h */, - FFFD2c876d487f922c876d48 /* ScShapeCore.h */, - FFFD2c876db07f922c876db0 /* ScStaticCore.h */, + FFFD32848a007fc332848a00 /* ScActorCore.h */, + FFFD32848a687fc332848a68 /* ScArticulationCore.h */, + FFFD32848ad07fc332848ad0 /* ScArticulationJointCore.h */, + FFFD32848b387fc332848b38 /* ScBodyCore.h */, + FFFD32848ba07fc332848ba0 /* ScClothCore.h */, + FFFD32848c087fc332848c08 /* ScClothFabricCore.h */, + FFFD32848c707fc332848c70 /* ScConstraintCore.h */, + FFFD32848cd87fc332848cd8 /* ScIterators.h */, + FFFD32848d407fc332848d40 /* ScMaterialCore.h */, + FFFD32848da87fc332848da8 /* ScParticleSystemCore.h */, + FFFD32848e107fc332848e10 /* ScPhysics.h */, + FFFD32848e787fc332848e78 /* ScRigidCore.h */, + FFFD32848ee07fc332848ee0 /* ScScene.h */, + FFFD32848f487fc332848f48 /* ScShapeCore.h */, + FFFD32848fb07fc332848fb0 /* ScStaticCore.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2dc1abd87f922dc1abd8 /* src */ = { + FFFB3155aec87fc33155aec8 /* src */ = { isa = PBXGroup; children = ( - FFFD2e0000007f922e000000 /* ScActorElementPair.h */, - FFFD2e0000687f922e000068 /* ScActorInteraction.h */, - FFFD2e0000d07f922e0000d0 /* ScActorPair.h */, - FFFD2e0001387f922e000138 /* ScActorSim.h */, - FFFD2e0001a07f922e0001a0 /* ScArticulationJointSim.h */, - FFFD2e0002087f922e000208 /* ScArticulationSim.h */, - FFFD2e0002707f922e000270 /* ScBodySim.h */, - FFFD2e0002d87f922e0002d8 /* ScClient.h */, - FFFD2e0003407f922e000340 /* ScConstraintGroupNode.h */, - FFFD2e0003a87f922e0003a8 /* ScConstraintInteraction.h */, - FFFD2e0004107f922e000410 /* ScConstraintProjectionManager.h */, - FFFD2e0004787f922e000478 /* ScConstraintProjectionTree.h */, - FFFD2e0004e07f922e0004e0 /* ScConstraintSim.h */, - FFFD2e0005487f922e000548 /* ScContactReportBuffer.h */, - FFFD2e0005b07f922e0005b0 /* ScContactStream.h */, - FFFD2e0006187f922e000618 /* ScElementInteractionMarker.h */, - FFFD2e0006807f922e000680 /* ScElementSim.h */, - FFFD2e0006e87f922e0006e8 /* ScElementSimInteraction.h */, - FFFD2e0007507f922e000750 /* ScInteraction.h */, - FFFD2e0007b87f922e0007b8 /* ScInteractionFlags.h */, - FFFD2e0008207f922e000820 /* ScNPhaseCore.h */, - FFFD2e0008887f922e000888 /* ScObjectIDTracker.h */, - FFFD2e0008f07f922e0008f0 /* ScRbElementInteraction.h */, - FFFD2e0009587f922e000958 /* ScRigidSim.h */, - FFFD2e0009c07f922e0009c0 /* ScShapeInteraction.h */, - FFFD2e000a287f922e000a28 /* ScShapeIterator.h */, - FFFD2e000a907f922e000a90 /* ScShapeSim.h */, - FFFD2e000af87f922e000af8 /* ScSimStateData.h */, - FFFD2e000b607f922e000b60 /* ScSimStats.h */, - FFFD2e000bc87f922e000bc8 /* ScSimulationController.h */, - FFFD2e000c307f922e000c30 /* ScSqBoundsManager.h */, - FFFD2e000c987f922e000c98 /* ScStaticSim.h */, - FFFD2e000d007f922e000d00 /* ScTriggerInteraction.h */, - FFFD2e000d687f922e000d68 /* ScTriggerPairs.h */, - FFFD2e000dd07f922e000dd0 /* ScActorCore.cpp */, - FFFD2e000e387f922e000e38 /* ScActorSim.cpp */, - FFFD2e000ea07f922e000ea0 /* ScArticulationCore.cpp */, - FFFD2e000f087f922e000f08 /* ScArticulationJointCore.cpp */, - FFFD2e000f707f922e000f70 /* ScArticulationJointSim.cpp */, - FFFD2e000fd87f922e000fd8 /* ScArticulationSim.cpp */, - FFFD2e0010407f922e001040 /* ScBodyCore.cpp */, - FFFD2e0010a87f922e0010a8 /* ScBodyCoreKinematic.cpp */, - FFFD2e0011107f922e001110 /* ScBodySim.cpp */, - FFFD2e0011787f922e001178 /* ScConstraintCore.cpp */, - FFFD2e0011e07f922e0011e0 /* ScConstraintGroupNode.cpp */, - FFFD2e0012487f922e001248 /* ScConstraintInteraction.cpp */, - FFFD2e0012b07f922e0012b0 /* ScConstraintProjectionManager.cpp */, - FFFD2e0013187f922e001318 /* ScConstraintProjectionTree.cpp */, - FFFD2e0013807f922e001380 /* ScConstraintSim.cpp */, - FFFD2e0013e87f922e0013e8 /* ScElementInteractionMarker.cpp */, - FFFD2e0014507f922e001450 /* ScElementSim.cpp */, - FFFD2e0014b87f922e0014b8 /* ScInteraction.cpp */, - FFFD2e0015207f922e001520 /* ScIterators.cpp */, - FFFD2e0015887f922e001588 /* ScMaterialCore.cpp */, - FFFD2e0015f07f922e0015f0 /* ScMetaData.cpp */, - FFFD2e0016587f922e001658 /* ScNPhaseCore.cpp */, - FFFD2e0016c07f922e0016c0 /* ScPhysics.cpp */, - FFFD2e0017287f922e001728 /* ScRigidCore.cpp */, - FFFD2e0017907f922e001790 /* ScRigidSim.cpp */, - FFFD2e0017f87f922e0017f8 /* ScScene.cpp */, - FFFD2e0018607f922e001860 /* ScShapeCore.cpp */, - FFFD2e0018c87f922e0018c8 /* ScShapeInteraction.cpp */, - FFFD2e0019307f922e001930 /* ScShapeSim.cpp */, - FFFD2e0019987f922e001998 /* ScSimStats.cpp */, - FFFD2e001a007f922e001a00 /* ScSimulationController.cpp */, - FFFD2e001a687f922e001a68 /* ScSqBoundsManager.cpp */, - FFFD2e001ad07f922e001ad0 /* ScStaticCore.cpp */, - FFFD2e001b387f922e001b38 /* ScStaticSim.cpp */, - FFFD2e001ba07f922e001ba0 /* ScTriggerInteraction.cpp */, - FFFD2e001c087f922e001c08 /* particles/ScParticleBodyInteraction.h */, - FFFD2e001c707f922e001c70 /* particles/ScParticlePacketShape.h */, - FFFD2e001cd87f922e001cd8 /* particles/ScParticleSystemSim.h */, - FFFD2e001d407f922e001d40 /* particles/ScParticleBodyInteraction.cpp */, - FFFD2e001da87f922e001da8 /* particles/ScParticlePacketShape.cpp */, - FFFD2e001e107f922e001e10 /* particles/ScParticleSystemCore.cpp */, - FFFD2e001e787f922e001e78 /* particles/ScParticleSystemSim.cpp */, - FFFD2e001ee07f922e001ee0 /* cloth/ScClothShape.h */, - FFFD2e001f487f922e001f48 /* cloth/ScClothSim.h */, - FFFD2e001fb07f922e001fb0 /* cloth/ScClothCore.cpp */, - FFFD2e0020187f922e002018 /* cloth/ScClothFabricCore.cpp */, - FFFD2e0020807f922e002080 /* cloth/ScClothShape.cpp */, - FFFD2e0020e87f922e0020e8 /* cloth/ScClothSim.cpp */, + FFFD3284bc007fc33284bc00 /* ScActorElementPair.h */, + FFFD3284bc687fc33284bc68 /* ScActorInteraction.h */, + FFFD3284bcd07fc33284bcd0 /* ScActorPair.h */, + FFFD3284bd387fc33284bd38 /* ScActorSim.h */, + FFFD3284bda07fc33284bda0 /* ScArticulationJointSim.h */, + FFFD3284be087fc33284be08 /* ScArticulationSim.h */, + FFFD3284be707fc33284be70 /* ScBodySim.h */, + FFFD3284bed87fc33284bed8 /* ScClient.h */, + FFFD3284bf407fc33284bf40 /* ScConstraintGroupNode.h */, + FFFD3284bfa87fc33284bfa8 /* ScConstraintInteraction.h */, + FFFD3284c0107fc33284c010 /* ScConstraintProjectionManager.h */, + FFFD3284c0787fc33284c078 /* ScConstraintProjectionTree.h */, + FFFD3284c0e07fc33284c0e0 /* ScConstraintSim.h */, + FFFD3284c1487fc33284c148 /* ScContactReportBuffer.h */, + FFFD3284c1b07fc33284c1b0 /* ScContactStream.h */, + FFFD3284c2187fc33284c218 /* ScElementInteractionMarker.h */, + FFFD3284c2807fc33284c280 /* ScElementSim.h */, + FFFD3284c2e87fc33284c2e8 /* ScElementSimInteraction.h */, + FFFD3284c3507fc33284c350 /* ScInteraction.h */, + FFFD3284c3b87fc33284c3b8 /* ScInteractionFlags.h */, + FFFD3284c4207fc33284c420 /* ScNPhaseCore.h */, + FFFD3284c4887fc33284c488 /* ScObjectIDTracker.h */, + FFFD3284c4f07fc33284c4f0 /* ScRbElementInteraction.h */, + FFFD3284c5587fc33284c558 /* ScRigidSim.h */, + FFFD3284c5c07fc33284c5c0 /* ScShapeInteraction.h */, + FFFD3284c6287fc33284c628 /* ScShapeIterator.h */, + FFFD3284c6907fc33284c690 /* ScShapeSim.h */, + FFFD3284c6f87fc33284c6f8 /* ScSimStateData.h */, + FFFD3284c7607fc33284c760 /* ScSimStats.h */, + FFFD3284c7c87fc33284c7c8 /* ScSimulationController.h */, + FFFD3284c8307fc33284c830 /* ScSqBoundsManager.h */, + FFFD3284c8987fc33284c898 /* ScStaticSim.h */, + FFFD3284c9007fc33284c900 /* ScTriggerInteraction.h */, + FFFD3284c9687fc33284c968 /* ScTriggerPairs.h */, + FFFD3284c9d07fc33284c9d0 /* ScActorCore.cpp */, + FFFD3284ca387fc33284ca38 /* ScActorSim.cpp */, + FFFD3284caa07fc33284caa0 /* ScArticulationCore.cpp */, + FFFD3284cb087fc33284cb08 /* ScArticulationJointCore.cpp */, + FFFD3284cb707fc33284cb70 /* ScArticulationJointSim.cpp */, + FFFD3284cbd87fc33284cbd8 /* ScArticulationSim.cpp */, + FFFD3284cc407fc33284cc40 /* ScBodyCore.cpp */, + FFFD3284cca87fc33284cca8 /* ScBodyCoreKinematic.cpp */, + FFFD3284cd107fc33284cd10 /* ScBodySim.cpp */, + FFFD3284cd787fc33284cd78 /* ScConstraintCore.cpp */, + FFFD3284cde07fc33284cde0 /* ScConstraintGroupNode.cpp */, + FFFD3284ce487fc33284ce48 /* ScConstraintInteraction.cpp */, + FFFD3284ceb07fc33284ceb0 /* ScConstraintProjectionManager.cpp */, + FFFD3284cf187fc33284cf18 /* ScConstraintProjectionTree.cpp */, + FFFD3284cf807fc33284cf80 /* ScConstraintSim.cpp */, + FFFD3284cfe87fc33284cfe8 /* ScElementInteractionMarker.cpp */, + FFFD3284d0507fc33284d050 /* ScElementSim.cpp */, + FFFD3284d0b87fc33284d0b8 /* ScInteraction.cpp */, + FFFD3284d1207fc33284d120 /* ScIterators.cpp */, + FFFD3284d1887fc33284d188 /* ScMaterialCore.cpp */, + FFFD3284d1f07fc33284d1f0 /* ScMetaData.cpp */, + FFFD3284d2587fc33284d258 /* ScNPhaseCore.cpp */, + FFFD3284d2c07fc33284d2c0 /* ScPhysics.cpp */, + FFFD3284d3287fc33284d328 /* ScRigidCore.cpp */, + FFFD3284d3907fc33284d390 /* ScRigidSim.cpp */, + FFFD3284d3f87fc33284d3f8 /* ScScene.cpp */, + FFFD3284d4607fc33284d460 /* ScShapeCore.cpp */, + FFFD3284d4c87fc33284d4c8 /* ScShapeInteraction.cpp */, + FFFD3284d5307fc33284d530 /* ScShapeSim.cpp */, + FFFD3284d5987fc33284d598 /* ScSimStats.cpp */, + FFFD3284d6007fc33284d600 /* ScSimulationController.cpp */, + FFFD3284d6687fc33284d668 /* ScSqBoundsManager.cpp */, + FFFD3284d6d07fc33284d6d0 /* ScStaticCore.cpp */, + FFFD3284d7387fc33284d738 /* ScStaticSim.cpp */, + FFFD3284d7a07fc33284d7a0 /* ScTriggerInteraction.cpp */, + FFFD3284d8087fc33284d808 /* particles/ScParticleBodyInteraction.h */, + FFFD3284d8707fc33284d870 /* particles/ScParticlePacketShape.h */, + FFFD3284d8d87fc33284d8d8 /* particles/ScParticleSystemSim.h */, + FFFD3284d9407fc33284d940 /* particles/ScParticleBodyInteraction.cpp */, + FFFD3284d9a87fc33284d9a8 /* particles/ScParticlePacketShape.cpp */, + FFFD3284da107fc33284da10 /* particles/ScParticleSystemCore.cpp */, + FFFD3284da787fc33284da78 /* particles/ScParticleSystemSim.cpp */, + FFFD3284dae07fc33284dae0 /* cloth/ScClothShape.h */, + FFFD3284db487fc33284db48 /* cloth/ScClothSim.h */, + FFFD3284dbb07fc33284dbb0 /* cloth/ScClothCore.cpp */, + FFFD3284dc187fc33284dc18 /* cloth/ScClothFabricCore.cpp */, + FFFD3284dc807fc33284dc80 /* cloth/ScClothShape.cpp */, + FFFD3284dce87fc33284dce8 /* cloth/ScClothSim.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2dd04ea07f922dd04ea0 /* PhysXCooking */ = { + FFFB3155d7107fc33155d710 /* PhysXCooking */ = { isa = PBXGroup; children = ( - FFFB2dd076207f922dd07620 /* include */, - FFFB2dd076487f922dd07648 /* src */, + FFFB315619a07fc3315619a0 /* include */, + FFFB315619c87fc3315619c8 /* src */, ); name = "PhysXCooking"; sourceTree = "<group>"; }; - FFFB2dd076207f922dd07620 /* include */ = { + FFFB315619a07fc3315619a0 /* include */ = { isa = PBXGroup; children = ( - FFFD2dd07d007f922dd07d00 /* PxBVH33MidphaseDesc.h */, - FFFD2dd07d687f922dd07d68 /* PxBVH34MidphaseDesc.h */, - FFFD2dd07dd07f922dd07dd0 /* PxConvexMeshDesc.h */, - FFFD2dd07e387f922dd07e38 /* PxCooking.h */, - FFFD2dd07ea07f922dd07ea0 /* PxMidphaseDesc.h */, - FFFD2dd07f087f922dd07f08 /* PxTriangleMeshDesc.h */, - FFFD2dd07f707f922dd07f70 /* Pxc.h */, + FFFD315678107fc331567810 /* PxBVH33MidphaseDesc.h */, + FFFD315678787fc331567878 /* PxBVH34MidphaseDesc.h */, + FFFD315678e07fc3315678e0 /* PxConvexMeshDesc.h */, + FFFD315679487fc331567948 /* PxCooking.h */, + FFFD315679b07fc3315679b0 /* PxMidphaseDesc.h */, + FFFD31567a187fc331567a18 /* PxTriangleMeshDesc.h */, + FFFD31567a807fc331567a80 /* Pxc.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2dd076487f922dd07648 /* src */ = { + FFFB315619c87fc3315619c8 /* src */ = { isa = PBXGroup; children = ( - FFFD2e0082007f922e008200 /* Adjacencies.cpp */, - FFFD2e0082687f922e008268 /* Cooking.cpp */, - FFFD2e0082d07f922e0082d0 /* CookingUtils.cpp */, - FFFD2e0083387f922e008338 /* EdgeList.cpp */, - FFFD2e0083a07f922e0083a0 /* MeshCleaner.cpp */, - FFFD2e0084087f922e008408 /* Quantizer.cpp */, - FFFD2e0084707f922e008470 /* Adjacencies.h */, - FFFD2e0084d87f922e0084d8 /* Cooking.h */, - FFFD2e0085407f922e008540 /* CookingUtils.h */, - FFFD2e0085a87f922e0085a8 /* EdgeList.h */, - FFFD2e0086107f922e008610 /* MeshCleaner.h */, - FFFD2e0086787f922e008678 /* Quantizer.h */, - FFFD2e0086e07f922e0086e0 /* mesh/GrbTriangleMeshCooking.cpp */, - FFFD2e0087487f922e008748 /* mesh/HeightFieldCooking.cpp */, - FFFD2e0087b07f922e0087b0 /* mesh/RTreeCooking.cpp */, - FFFD2e0088187f922e008818 /* mesh/TriangleMeshBuilder.cpp */, - FFFD2e0088807f922e008880 /* mesh/GrbTriangleMeshCooking.h */, - FFFD2e0088e87f922e0088e8 /* mesh/HeightFieldCooking.h */, - FFFD2e0089507f922e008950 /* mesh/QuickSelect.h */, - FFFD2e0089b87f922e0089b8 /* mesh/RTreeCooking.h */, - FFFD2e008a207f922e008a20 /* mesh/TriangleMeshBuilder.h */, - FFFD2e008a887f922e008a88 /* convex/BigConvexDataBuilder.cpp */, - FFFD2e008af07f922e008af0 /* convex/ConvexHullBuilder.cpp */, - FFFD2e008b587f922e008b58 /* convex/ConvexHullLib.cpp */, - FFFD2e008bc07f922e008bc0 /* convex/ConvexHullUtils.cpp */, - FFFD2e008c287f922e008c28 /* convex/ConvexMeshBuilder.cpp */, - FFFD2e008c907f922e008c90 /* convex/ConvexPolygonsBuilder.cpp */, - FFFD2e008cf87f922e008cf8 /* convex/InflationConvexHullLib.cpp */, - FFFD2e008d607f922e008d60 /* convex/QuickHullConvexHullLib.cpp */, - FFFD2e008dc87f922e008dc8 /* convex/VolumeIntegration.cpp */, - FFFD2e008e307f922e008e30 /* convex/BigConvexDataBuilder.h */, - FFFD2e008e987f922e008e98 /* convex/ConvexHullBuilder.h */, - FFFD2e008f007f922e008f00 /* convex/ConvexHullLib.h */, - FFFD2e008f687f922e008f68 /* convex/ConvexHullUtils.h */, - FFFD2e008fd07f922e008fd0 /* convex/ConvexMeshBuilder.h */, - FFFD2e0090387f922e009038 /* convex/ConvexPolygonsBuilder.h */, - FFFD2e0090a07f922e0090a0 /* convex/InflationConvexHullLib.h */, - FFFD2e0091087f922e009108 /* convex/QuickHullConvexHullLib.h */, - FFFD2e0091707f922e009170 /* convex/VolumeIntegration.h */, + FFFD3284fe007fc33284fe00 /* Adjacencies.cpp */, + FFFD3284fe687fc33284fe68 /* Cooking.cpp */, + FFFD3284fed07fc33284fed0 /* CookingUtils.cpp */, + FFFD3284ff387fc33284ff38 /* EdgeList.cpp */, + FFFD3284ffa07fc33284ffa0 /* MeshCleaner.cpp */, + FFFD328500087fc332850008 /* Quantizer.cpp */, + FFFD328500707fc332850070 /* Adjacencies.h */, + FFFD328500d87fc3328500d8 /* Cooking.h */, + FFFD328501407fc332850140 /* CookingUtils.h */, + FFFD328501a87fc3328501a8 /* EdgeList.h */, + FFFD328502107fc332850210 /* MeshCleaner.h */, + FFFD328502787fc332850278 /* Quantizer.h */, + FFFD328502e07fc3328502e0 /* mesh/GrbTriangleMeshCooking.cpp */, + FFFD328503487fc332850348 /* mesh/HeightFieldCooking.cpp */, + FFFD328503b07fc3328503b0 /* mesh/RTreeCooking.cpp */, + FFFD328504187fc332850418 /* mesh/TriangleMeshBuilder.cpp */, + FFFD328504807fc332850480 /* mesh/GrbTriangleMeshCooking.h */, + FFFD328504e87fc3328504e8 /* mesh/HeightFieldCooking.h */, + FFFD328505507fc332850550 /* mesh/QuickSelect.h */, + FFFD328505b87fc3328505b8 /* mesh/RTreeCooking.h */, + FFFD328506207fc332850620 /* mesh/TriangleMeshBuilder.h */, + FFFD328506887fc332850688 /* convex/BigConvexDataBuilder.cpp */, + FFFD328506f07fc3328506f0 /* convex/ConvexHullBuilder.cpp */, + FFFD328507587fc332850758 /* convex/ConvexHullLib.cpp */, + FFFD328507c07fc3328507c0 /* convex/ConvexHullUtils.cpp */, + FFFD328508287fc332850828 /* convex/ConvexMeshBuilder.cpp */, + FFFD328508907fc332850890 /* convex/ConvexPolygonsBuilder.cpp */, + FFFD328508f87fc3328508f8 /* convex/InflationConvexHullLib.cpp */, + FFFD328509607fc332850960 /* convex/QuickHullConvexHullLib.cpp */, + FFFD328509c87fc3328509c8 /* convex/VolumeIntegration.cpp */, + FFFD32850a307fc332850a30 /* convex/BigConvexDataBuilder.h */, + FFFD32850a987fc332850a98 /* convex/ConvexHullBuilder.h */, + FFFD32850b007fc332850b00 /* convex/ConvexHullLib.h */, + FFFD32850b687fc332850b68 /* convex/ConvexHullUtils.h */, + FFFD32850bd07fc332850bd0 /* convex/ConvexMeshBuilder.h */, + FFFD32850c387fc332850c38 /* convex/ConvexPolygonsBuilder.h */, + FFFD32850ca07fc332850ca0 /* convex/InflationConvexHullLib.h */, + FFFD32850d087fc332850d08 /* convex/QuickHullConvexHullLib.h */, + FFFD32850d707fc332850d70 /* convex/VolumeIntegration.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2c13c0507f922c13c050 /* PhysXCommon */ = { + FFFB315178207fc331517820 /* PhysXCommon */ = { isa = PBXGroup; children = ( - FFFB2c166c007f922c166c00 /* include */, - FFFB2c166c287f922c166c28 /* common */, - FFFB2c166c507f922c166c50 /* geomutils */, + FFFB3151a4807fc33151a480 /* include */, + FFFB3151a4a87fc33151a4a8 /* common */, + FFFB3151a4d07fc33151a4d0 /* geomutils */, ); name = "PhysXCommon"; sourceTree = "<group>"; }; - FFFB2c166c007f922c166c00 /* include */ = { + FFFB3151a4807fc33151a480 /* include */ = { isa = PBXGroup; children = ( - FFFD2c80ec007f922c80ec00 /* common/PxBase.h */, - FFFD2c80ec687f922c80ec68 /* common/PxCollection.h */, - FFFD2c80ecd07f922c80ecd0 /* common/PxCoreUtilityTypes.h */, - FFFD2c80ed387f922c80ed38 /* common/PxMetaData.h */, - FFFD2c80eda07f922c80eda0 /* common/PxMetaDataFlags.h */, - FFFD2c80ee087f922c80ee08 /* common/PxPhysXCommonConfig.h */, - FFFD2c80ee707f922c80ee70 /* common/PxPhysicsInsertionCallback.h */, - FFFD2c80eed87f922c80eed8 /* common/PxRenderBuffer.h */, - FFFD2c80ef407f922c80ef40 /* common/PxSerialFramework.h */, - FFFD2c80efa87f922c80efa8 /* common/PxSerializer.h */, - FFFD2c80f0107f922c80f010 /* common/PxStringTable.h */, - FFFD2c80f0787f922c80f078 /* common/PxTolerancesScale.h */, - FFFD2c80f0e07f922c80f0e0 /* common/PxTypeInfo.h */, - FFFD2c80f1487f922c80f148 /* geometry/PxBoxGeometry.h */, - FFFD2c80f1b07f922c80f1b0 /* geometry/PxCapsuleGeometry.h */, - FFFD2c80f2187f922c80f218 /* geometry/PxConvexMesh.h */, - FFFD2c80f2807f922c80f280 /* geometry/PxConvexMeshGeometry.h */, - FFFD2c80f2e87f922c80f2e8 /* geometry/PxGeometry.h */, - FFFD2c80f3507f922c80f350 /* geometry/PxGeometryHelpers.h */, - FFFD2c80f3b87f922c80f3b8 /* geometry/PxGeometryQuery.h */, - FFFD2c80f4207f922c80f420 /* geometry/PxHeightField.h */, - FFFD2c80f4887f922c80f488 /* geometry/PxHeightFieldDesc.h */, - FFFD2c80f4f07f922c80f4f0 /* geometry/PxHeightFieldFlag.h */, - FFFD2c80f5587f922c80f558 /* geometry/PxHeightFieldGeometry.h */, - FFFD2c80f5c07f922c80f5c0 /* geometry/PxHeightFieldSample.h */, - FFFD2c80f6287f922c80f628 /* geometry/PxMeshQuery.h */, - FFFD2c80f6907f922c80f690 /* geometry/PxMeshScale.h */, - FFFD2c80f6f87f922c80f6f8 /* geometry/PxPlaneGeometry.h */, - FFFD2c80f7607f922c80f760 /* geometry/PxSimpleTriangleMesh.h */, - FFFD2c80f7c87f922c80f7c8 /* geometry/PxSphereGeometry.h */, - FFFD2c80f8307f922c80f830 /* geometry/PxTriangle.h */, - FFFD2c80f8987f922c80f898 /* geometry/PxTriangleMesh.h */, - FFFD2c80f9007f922c80f900 /* geometry/PxTriangleMeshGeometry.h */, + FFFD31801c007fc331801c00 /* common/PxBase.h */, + FFFD31801c687fc331801c68 /* common/PxCollection.h */, + FFFD31801cd07fc331801cd0 /* common/PxCoreUtilityTypes.h */, + FFFD31801d387fc331801d38 /* common/PxMetaData.h */, + FFFD31801da07fc331801da0 /* common/PxMetaDataFlags.h */, + FFFD31801e087fc331801e08 /* common/PxPhysXCommonConfig.h */, + FFFD31801e707fc331801e70 /* common/PxPhysicsInsertionCallback.h */, + FFFD31801ed87fc331801ed8 /* common/PxRenderBuffer.h */, + FFFD31801f407fc331801f40 /* common/PxSerialFramework.h */, + FFFD31801fa87fc331801fa8 /* common/PxSerializer.h */, + FFFD318020107fc331802010 /* common/PxStringTable.h */, + FFFD318020787fc331802078 /* common/PxTolerancesScale.h */, + FFFD318020e07fc3318020e0 /* common/PxTypeInfo.h */, + FFFD318021487fc331802148 /* geometry/PxBoxGeometry.h */, + FFFD318021b07fc3318021b0 /* geometry/PxCapsuleGeometry.h */, + FFFD318022187fc331802218 /* geometry/PxConvexMesh.h */, + FFFD318022807fc331802280 /* geometry/PxConvexMeshGeometry.h */, + FFFD318022e87fc3318022e8 /* geometry/PxGeometry.h */, + FFFD318023507fc331802350 /* geometry/PxGeometryHelpers.h */, + FFFD318023b87fc3318023b8 /* geometry/PxGeometryQuery.h */, + FFFD318024207fc331802420 /* geometry/PxHeightField.h */, + FFFD318024887fc331802488 /* geometry/PxHeightFieldDesc.h */, + FFFD318024f07fc3318024f0 /* geometry/PxHeightFieldFlag.h */, + FFFD318025587fc331802558 /* geometry/PxHeightFieldGeometry.h */, + FFFD318025c07fc3318025c0 /* geometry/PxHeightFieldSample.h */, + FFFD318026287fc331802628 /* geometry/PxMeshQuery.h */, + FFFD318026907fc331802690 /* geometry/PxMeshScale.h */, + FFFD318026f87fc3318026f8 /* geometry/PxPlaneGeometry.h */, + FFFD318027607fc331802760 /* geometry/PxSimpleTriangleMesh.h */, + FFFD318027c87fc3318027c8 /* geometry/PxSphereGeometry.h */, + FFFD318028307fc331802830 /* geometry/PxTriangle.h */, + FFFD318028987fc331802898 /* geometry/PxTriangleMesh.h */, + FFFD318029007fc331802900 /* geometry/PxTriangleMeshGeometry.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2c166c287f922c166c28 /* common */ = { + FFFB3151a4a87fc33151a4a8 /* common */ = { isa = PBXGroup; children = ( - FFFD2b9a6a007f922b9a6a00 /* src/CmBoxPruning.cpp */, - FFFD2b9a6a687f922b9a6a68 /* src/CmCollection.cpp */, - FFFD2b9a6ad07f922b9a6ad0 /* src/CmMathUtils.cpp */, - FFFD2b9a6b387f922b9a6b38 /* src/CmPtrTable.cpp */, - FFFD2b9a6ba07f922b9a6ba0 /* src/CmRadixSort.cpp */, - FFFD2b9a6c087f922b9a6c08 /* src/CmRadixSortBuffered.cpp */, - FFFD2b9a6c707f922b9a6c70 /* src/CmRenderOutput.cpp */, - FFFD2b9a6cd87f922b9a6cd8 /* src/CmVisualization.cpp */, - FFFD2b9a6d407f922b9a6d40 /* src/CmBitMap.h */, - FFFD2b9a6da87f922b9a6da8 /* src/CmBoxPruning.h */, - FFFD2b9a6e107f922b9a6e10 /* src/CmCollection.h */, - FFFD2b9a6e787f922b9a6e78 /* src/CmConeLimitHelper.h */, - FFFD2b9a6ee07f922b9a6ee0 /* src/CmFlushPool.h */, - FFFD2b9a6f487f922b9a6f48 /* src/CmIDPool.h */, - FFFD2b9a6fb07f922b9a6fb0 /* src/CmIO.h */, - FFFD2b9a70187f922b9a7018 /* src/CmMatrix34.h */, - FFFD2b9a70807f922b9a7080 /* src/CmPhysXCommon.h */, - FFFD2b9a70e87f922b9a70e8 /* src/CmPool.h */, - FFFD2b9a71507f922b9a7150 /* src/CmPreallocatingPool.h */, - FFFD2b9a71b87f922b9a71b8 /* src/CmPriorityQueue.h */, - FFFD2b9a72207f922b9a7220 /* src/CmPtrTable.h */, - FFFD2b9a72887f922b9a7288 /* src/CmQueue.h */, - FFFD2b9a72f07f922b9a72f0 /* src/CmRadixSort.h */, - FFFD2b9a73587f922b9a7358 /* src/CmRadixSortBuffered.h */, - FFFD2b9a73c07f922b9a73c0 /* src/CmReaderWriterLock.h */, - FFFD2b9a74287f922b9a7428 /* src/CmRefCountable.h */, - FFFD2b9a74907f922b9a7490 /* src/CmRenderBuffer.h */, - FFFD2b9a74f87f922b9a74f8 /* src/CmRenderOutput.h */, - FFFD2b9a75607f922b9a7560 /* src/CmScaling.h */, - FFFD2b9a75c87f922b9a75c8 /* src/CmSpatialVector.h */, - FFFD2b9a76307f922b9a7630 /* src/CmTask.h */, - FFFD2b9a76987f922b9a7698 /* src/CmTaskPool.h */, - FFFD2b9a77007f922b9a7700 /* src/CmTmpMem.h */, - FFFD2b9a77687f922b9a7768 /* src/CmTransformUtils.h */, - FFFD2b9a77d07f922b9a77d0 /* src/CmUtils.h */, - FFFD2b9a78387f922b9a7838 /* src/CmVisualization.h */, + FFFD3281f8007fc33281f800 /* src/CmBoxPruning.cpp */, + FFFD3281f8687fc33281f868 /* src/CmCollection.cpp */, + FFFD3281f8d07fc33281f8d0 /* src/CmMathUtils.cpp */, + FFFD3281f9387fc33281f938 /* src/CmPtrTable.cpp */, + FFFD3281f9a07fc33281f9a0 /* src/CmRadixSort.cpp */, + FFFD3281fa087fc33281fa08 /* src/CmRadixSortBuffered.cpp */, + FFFD3281fa707fc33281fa70 /* src/CmRenderOutput.cpp */, + FFFD3281fad87fc33281fad8 /* src/CmVisualization.cpp */, + FFFD3281fb407fc33281fb40 /* src/CmBitMap.h */, + FFFD3281fba87fc33281fba8 /* src/CmBoxPruning.h */, + FFFD3281fc107fc33281fc10 /* src/CmCollection.h */, + FFFD3281fc787fc33281fc78 /* src/CmConeLimitHelper.h */, + FFFD3281fce07fc33281fce0 /* src/CmFlushPool.h */, + FFFD3281fd487fc33281fd48 /* src/CmIDPool.h */, + FFFD3281fdb07fc33281fdb0 /* src/CmIO.h */, + FFFD3281fe187fc33281fe18 /* src/CmMatrix34.h */, + FFFD3281fe807fc33281fe80 /* src/CmPhysXCommon.h */, + FFFD3281fee87fc33281fee8 /* src/CmPool.h */, + FFFD3281ff507fc33281ff50 /* src/CmPreallocatingPool.h */, + FFFD3281ffb87fc33281ffb8 /* src/CmPriorityQueue.h */, + FFFD328200207fc332820020 /* src/CmPtrTable.h */, + FFFD328200887fc332820088 /* src/CmQueue.h */, + FFFD328200f07fc3328200f0 /* src/CmRadixSort.h */, + FFFD328201587fc332820158 /* src/CmRadixSortBuffered.h */, + FFFD328201c07fc3328201c0 /* src/CmReaderWriterLock.h */, + FFFD328202287fc332820228 /* src/CmRefCountable.h */, + FFFD328202907fc332820290 /* src/CmRenderBuffer.h */, + FFFD328202f87fc3328202f8 /* src/CmRenderOutput.h */, + FFFD328203607fc332820360 /* src/CmScaling.h */, + FFFD328203c87fc3328203c8 /* src/CmSpatialVector.h */, + FFFD328204307fc332820430 /* src/CmTask.h */, + FFFD328204987fc332820498 /* src/CmTaskPool.h */, + FFFD328205007fc332820500 /* src/CmTmpMem.h */, + FFFD328205687fc332820568 /* src/CmTransformUtils.h */, + FFFD328205d07fc3328205d0 /* src/CmUtils.h */, + FFFD328206387fc332820638 /* src/CmVisualization.h */, ); name = "common"; sourceTree = SOURCE_ROOT; }; - FFFB2c166c507f922c166c50 /* geomutils */ = { + FFFB3151a4d07fc33151a4d0 /* geomutils */ = { isa = PBXGroup; children = ( - FFFD2c8010007f922c801000 /* headers/GuAxes.h */, - FFFD2c8010687f922c801068 /* headers/GuBox.h */, - FFFD2c8010d07f922c8010d0 /* headers/GuDistanceSegmentBox.h */, - FFFD2c8011387f922c801138 /* headers/GuDistanceSegmentSegment.h */, - FFFD2c8011a07f922c8011a0 /* headers/GuIntersectionBoxBox.h */, - FFFD2c8012087f922c801208 /* headers/GuIntersectionTriangleBox.h */, - FFFD2c8012707f922c801270 /* headers/GuRaycastTests.h */, - FFFD2c8012d87f922c8012d8 /* headers/GuSIMDHelpers.h */, - FFFD2c8013407f922c801340 /* headers/GuSegment.h */, - FFFD2c8013a87f922c8013a8 /* ../../Include/GeomUtils */, - FFFD2c8014107f922c801410 /* src/GuBounds.h */, - FFFD2c8014787f922c801478 /* src/GuCapsule.h */, - FFFD2c8014e07f922c8014e0 /* src/GuCenterExtents.h */, - FFFD2c8015487f922c801548 /* src/GuGeometryUnion.h */, - FFFD2c8015b07f922c8015b0 /* src/GuInternal.h */, - FFFD2c8016187f922c801618 /* src/GuMTD.h */, - FFFD2c8016807f922c801680 /* src/GuMeshFactory.h */, - FFFD2c8016e87f922c8016e8 /* src/GuOverlapTests.h */, - FFFD2c8017507f922c801750 /* src/GuSerialize.h */, - FFFD2c8017b87f922c8017b8 /* src/GuSphere.h */, - FFFD2c8018207f922c801820 /* src/GuSweepMTD.h */, - FFFD2c8018887f922c801888 /* src/GuSweepSharedTests.h */, - FFFD2c8018f07f922c8018f0 /* src/GuSweepTests.h */, - FFFD2c8019587f922c801958 /* src/contact/GuContactMethodImpl.h */, - FFFD2c8019c07f922c8019c0 /* src/contact/GuContactPolygonPolygon.h */, - FFFD2c801a287f922c801a28 /* src/contact/GuFeatureCode.h */, - FFFD2c801a907f922c801a90 /* src/contact/GuLegacyTraceLineCallback.h */, - FFFD2c801af87f922c801af8 /* src/common/GuBarycentricCoordinates.h */, - FFFD2c801b607f922c801b60 /* src/common/GuBoxConversion.h */, - FFFD2c801bc87f922c801bc8 /* src/common/GuEdgeCache.h */, - FFFD2c801c307f922c801c30 /* src/common/GuEdgeListData.h */, - FFFD2c801c987f922c801c98 /* src/common/GuSeparatingAxes.h */, - FFFD2c801d007f922c801d00 /* src/convex/GuBigConvexData.h */, - FFFD2c801d687f922c801d68 /* src/convex/GuBigConvexData2.h */, - FFFD2c801dd07f922c801dd0 /* src/convex/GuConvexEdgeFlags.h */, - FFFD2c801e387f922c801e38 /* src/convex/GuConvexHelper.h */, - FFFD2c801ea07f922c801ea0 /* src/convex/GuConvexMesh.h */, - FFFD2c801f087f922c801f08 /* src/convex/GuConvexMeshData.h */, - FFFD2c801f707f922c801f70 /* src/convex/GuConvexSupportTable.h */, - FFFD2c801fd87f922c801fd8 /* src/convex/GuConvexUtilsInternal.h */, - FFFD2c8020407f922c802040 /* src/convex/GuCubeIndex.h */, - FFFD2c8020a87f922c8020a8 /* src/convex/GuHillClimbing.h */, - FFFD2c8021107f922c802110 /* src/convex/GuShapeConvex.h */, - FFFD2c8021787f922c802178 /* src/distance/GuDistancePointBox.h */, - FFFD2c8021e07f922c8021e0 /* src/distance/GuDistancePointSegment.h */, - FFFD2c8022487f922c802248 /* src/distance/GuDistancePointTriangle.h */, - FFFD2c8022b07f922c8022b0 /* src/distance/GuDistancePointTriangleSIMD.h */, - FFFD2c8023187f922c802318 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, - FFFD2c8023807f922c802380 /* src/distance/GuDistanceSegmentTriangle.h */, - FFFD2c8023e87f922c8023e8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, - FFFD2c8024507f922c802450 /* src/sweep/GuSweepBoxBox.h */, - FFFD2c8024b87f922c8024b8 /* src/sweep/GuSweepBoxSphere.h */, - FFFD2c8025207f922c802520 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, - FFFD2c8025887f922c802588 /* src/sweep/GuSweepBoxTriangle_SAT.h */, - FFFD2c8025f07f922c8025f0 /* src/sweep/GuSweepCapsuleBox.h */, - FFFD2c8026587f922c802658 /* src/sweep/GuSweepCapsuleCapsule.h */, - FFFD2c8026c07f922c8026c0 /* src/sweep/GuSweepCapsuleTriangle.h */, - FFFD2c8027287f922c802728 /* src/sweep/GuSweepSphereCapsule.h */, - FFFD2c8027907f922c802790 /* src/sweep/GuSweepSphereSphere.h */, - FFFD2c8027f87f922c8027f8 /* src/sweep/GuSweepSphereTriangle.h */, - FFFD2c8028607f922c802860 /* src/sweep/GuSweepTriangleUtils.h */, - FFFD2c8028c87f922c8028c8 /* src/gjk/GuEPA.h */, - FFFD2c8029307f922c802930 /* src/gjk/GuEPAFacet.h */, - FFFD2c8029987f922c802998 /* src/gjk/GuGJK.h */, - FFFD2c802a007f922c802a00 /* src/gjk/GuGJKPenetration.h */, - FFFD2c802a687f922c802a68 /* src/gjk/GuGJKRaycast.h */, - FFFD2c802ad07f922c802ad0 /* src/gjk/GuGJKSimplex.h */, - FFFD2c802b387f922c802b38 /* src/gjk/GuGJKTest.h */, - FFFD2c802ba07f922c802ba0 /* src/gjk/GuGJKType.h */, - FFFD2c802c087f922c802c08 /* src/gjk/GuGJKUtil.h */, - FFFD2c802c707f922c802c70 /* src/gjk/GuVecBox.h */, - FFFD2c802cd87f922c802cd8 /* src/gjk/GuVecCapsule.h */, - FFFD2c802d407f922c802d40 /* src/gjk/GuVecConvex.h */, - FFFD2c802da87f922c802da8 /* src/gjk/GuVecConvexHull.h */, - FFFD2c802e107f922c802e10 /* src/gjk/GuVecConvexHullNoScale.h */, - FFFD2c802e787f922c802e78 /* src/gjk/GuVecPlane.h */, - FFFD2c802ee07f922c802ee0 /* src/gjk/GuVecShrunkBox.h */, - FFFD2c802f487f922c802f48 /* src/gjk/GuVecShrunkConvexHull.h */, - FFFD2c802fb07f922c802fb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, - FFFD2c8030187f922c803018 /* src/gjk/GuVecSphere.h */, - FFFD2c8030807f922c803080 /* src/gjk/GuVecTriangle.h */, - FFFD2c8030e87f922c8030e8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, - FFFD2c8031507f922c803150 /* src/intersection/GuIntersectionEdgeEdge.h */, - FFFD2c8031b87f922c8031b8 /* src/intersection/GuIntersectionRay.h */, - FFFD2c8032207f922c803220 /* src/intersection/GuIntersectionRayBox.h */, - FFFD2c8032887f922c803288 /* src/intersection/GuIntersectionRayBoxSIMD.h */, - FFFD2c8032f07f922c8032f0 /* src/intersection/GuIntersectionRayCapsule.h */, - FFFD2c8033587f922c803358 /* src/intersection/GuIntersectionRayPlane.h */, - FFFD2c8033c07f922c8033c0 /* src/intersection/GuIntersectionRaySphere.h */, - FFFD2c8034287f922c803428 /* src/intersection/GuIntersectionRayTriangle.h */, - FFFD2c8034907f922c803490 /* src/intersection/GuIntersectionSphereBox.h */, - FFFD2c8034f87f922c8034f8 /* src/mesh/GuBV32.h */, - FFFD2c8035607f922c803560 /* src/mesh/GuBV32Build.h */, - FFFD2c8035c87f922c8035c8 /* src/mesh/GuBV4.h */, - FFFD2c8036307f922c803630 /* src/mesh/GuBV4Build.h */, - FFFD2c8036987f922c803698 /* src/mesh/GuBV4Settings.h */, - FFFD2c8037007f922c803700 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, - FFFD2c8037687f922c803768 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, - FFFD2c8037d07f922c8037d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, - FFFD2c8038387f922c803838 /* src/mesh/GuBV4_BoxSweep_Internal.h */, - FFFD2c8038a07f922c8038a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, - FFFD2c8039087f922c803908 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, - FFFD2c8039707f922c803970 /* src/mesh/GuBV4_Common.h */, - FFFD2c8039d87f922c8039d8 /* src/mesh/GuBV4_Internal.h */, - FFFD2c803a407f922c803a40 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, - FFFD2c803aa87f922c803aa8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, - FFFD2c803b107f922c803b10 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, - FFFD2c803b787f922c803b78 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, - FFFD2c803be07f922c803be0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, - FFFD2c803c487f922c803c48 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, - FFFD2c803cb07f922c803cb0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, - FFFD2c803d187f922c803d18 /* src/mesh/GuBV4_Slabs.h */, - FFFD2c803d807f922c803d80 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, - FFFD2c803de87f922c803de8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, - FFFD2c803e507f922c803e50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, - FFFD2c803eb87f922c803eb8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, - FFFD2c803f207f922c803f20 /* src/mesh/GuBVConstants.h */, - FFFD2c803f887f922c803f88 /* src/mesh/GuMeshData.h */, - FFFD2c803ff07f922c803ff0 /* src/mesh/GuMidphaseInterface.h */, - FFFD2c8040587f922c804058 /* src/mesh/GuRTree.h */, - FFFD2c8040c07f922c8040c0 /* src/mesh/GuSweepConvexTri.h */, - FFFD2c8041287f922c804128 /* src/mesh/GuSweepMesh.h */, - FFFD2c8041907f922c804190 /* src/mesh/GuTriangle32.h */, - FFFD2c8041f87f922c8041f8 /* src/mesh/GuTriangleCache.h */, - FFFD2c8042607f922c804260 /* src/mesh/GuTriangleMesh.h */, - FFFD2c8042c87f922c8042c8 /* src/mesh/GuTriangleMeshBV4.h */, - FFFD2c8043307f922c804330 /* src/mesh/GuTriangleMeshRTree.h */, - FFFD2c8043987f922c804398 /* src/mesh/GuTriangleVertexPointers.h */, - FFFD2c8044007f922c804400 /* src/hf/GuEntityReport.h */, - FFFD2c8044687f922c804468 /* src/hf/GuHeightField.h */, - FFFD2c8044d07f922c8044d0 /* src/hf/GuHeightFieldData.h */, - FFFD2c8045387f922c804538 /* src/hf/GuHeightFieldUtil.h */, - FFFD2c8045a07f922c8045a0 /* src/pcm/GuPCMContactConvexCommon.h */, - FFFD2c8046087f922c804608 /* src/pcm/GuPCMContactGen.h */, - FFFD2c8046707f922c804670 /* src/pcm/GuPCMContactGenUtil.h */, - FFFD2c8046d87f922c8046d8 /* src/pcm/GuPCMContactMeshCallback.h */, - FFFD2c8047407f922c804740 /* src/pcm/GuPCMShapeConvex.h */, - FFFD2c8047a87f922c8047a8 /* src/pcm/GuPCMTriangleContactGen.h */, - FFFD2c8048107f922c804810 /* src/pcm/GuPersistentContactManifold.h */, - FFFD2c8048787f922c804878 /* src/ccd/GuCCDSweepConvexMesh.h */, - FFFD2c8048e07f922c8048e0 /* src/GuBounds.cpp */, - FFFD2c8049487f922c804948 /* src/GuBox.cpp */, - FFFD2c8049b07f922c8049b0 /* src/GuCCTSweepTests.cpp */, - FFFD2c804a187f922c804a18 /* src/GuCapsule.cpp */, - FFFD2c804a807f922c804a80 /* src/GuGeometryQuery.cpp */, - FFFD2c804ae87f922c804ae8 /* src/GuGeometryUnion.cpp */, - FFFD2c804b507f922c804b50 /* src/GuInternal.cpp */, - FFFD2c804bb87f922c804bb8 /* src/GuMTD.cpp */, - FFFD2c804c207f922c804c20 /* src/GuMeshFactory.cpp */, - FFFD2c804c887f922c804c88 /* src/GuMetaData.cpp */, - FFFD2c804cf07f922c804cf0 /* src/GuOverlapTests.cpp */, - FFFD2c804d587f922c804d58 /* src/GuRaycastTests.cpp */, - FFFD2c804dc07f922c804dc0 /* src/GuSerialize.cpp */, - FFFD2c804e287f922c804e28 /* src/GuSweepMTD.cpp */, - FFFD2c804e907f922c804e90 /* src/GuSweepSharedTests.cpp */, - FFFD2c804ef87f922c804ef8 /* src/GuSweepTests.cpp */, - FFFD2c804f607f922c804f60 /* src/contact/GuContactBoxBox.cpp */, - FFFD2c804fc87f922c804fc8 /* src/contact/GuContactCapsuleBox.cpp */, - FFFD2c8050307f922c805030 /* src/contact/GuContactCapsuleCapsule.cpp */, - FFFD2c8050987f922c805098 /* src/contact/GuContactCapsuleConvex.cpp */, - FFFD2c8051007f922c805100 /* src/contact/GuContactCapsuleMesh.cpp */, - FFFD2c8051687f922c805168 /* src/contact/GuContactConvexConvex.cpp */, - FFFD2c8051d07f922c8051d0 /* src/contact/GuContactConvexMesh.cpp */, - FFFD2c8052387f922c805238 /* src/contact/GuContactPlaneBox.cpp */, - FFFD2c8052a07f922c8052a0 /* src/contact/GuContactPlaneCapsule.cpp */, - FFFD2c8053087f922c805308 /* src/contact/GuContactPlaneConvex.cpp */, - FFFD2c8053707f922c805370 /* src/contact/GuContactPolygonPolygon.cpp */, - FFFD2c8053d87f922c8053d8 /* src/contact/GuContactSphereBox.cpp */, - FFFD2c8054407f922c805440 /* src/contact/GuContactSphereCapsule.cpp */, - FFFD2c8054a87f922c8054a8 /* src/contact/GuContactSphereMesh.cpp */, - FFFD2c8055107f922c805510 /* src/contact/GuContactSpherePlane.cpp */, - FFFD2c8055787f922c805578 /* src/contact/GuContactSphereSphere.cpp */, - FFFD2c8055e07f922c8055e0 /* src/contact/GuFeatureCode.cpp */, - FFFD2c8056487f922c805648 /* src/contact/GuLegacyContactBoxHeightField.cpp */, - FFFD2c8056b07f922c8056b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, - FFFD2c8057187f922c805718 /* src/contact/GuLegacyContactConvexHeightField.cpp */, - FFFD2c8057807f922c805780 /* src/contact/GuLegacyContactSphereHeightField.cpp */, - FFFD2c8057e87f922c8057e8 /* src/common/GuBarycentricCoordinates.cpp */, - FFFD2c8058507f922c805850 /* src/common/GuSeparatingAxes.cpp */, - FFFD2c8058b87f922c8058b8 /* src/convex/GuBigConvexData.cpp */, - FFFD2c8059207f922c805920 /* src/convex/GuConvexHelper.cpp */, - FFFD2c8059887f922c805988 /* src/convex/GuConvexMesh.cpp */, - FFFD2c8059f07f922c8059f0 /* src/convex/GuConvexSupportTable.cpp */, - FFFD2c805a587f922c805a58 /* src/convex/GuConvexUtilsInternal.cpp */, - FFFD2c805ac07f922c805ac0 /* src/convex/GuHillClimbing.cpp */, - FFFD2c805b287f922c805b28 /* src/convex/GuShapeConvex.cpp */, - FFFD2c805b907f922c805b90 /* src/distance/GuDistancePointBox.cpp */, - FFFD2c805bf87f922c805bf8 /* src/distance/GuDistancePointTriangle.cpp */, - FFFD2c805c607f922c805c60 /* src/distance/GuDistanceSegmentBox.cpp */, - FFFD2c805cc87f922c805cc8 /* src/distance/GuDistanceSegmentSegment.cpp */, - FFFD2c805d307f922c805d30 /* src/distance/GuDistanceSegmentTriangle.cpp */, - FFFD2c805d987f922c805d98 /* src/sweep/GuSweepBoxBox.cpp */, - FFFD2c805e007f922c805e00 /* src/sweep/GuSweepBoxSphere.cpp */, - FFFD2c805e687f922c805e68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, - FFFD2c805ed07f922c805ed0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, - FFFD2c805f387f922c805f38 /* src/sweep/GuSweepCapsuleBox.cpp */, - FFFD2c805fa07f922c805fa0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, - FFFD2c8060087f922c806008 /* src/sweep/GuSweepCapsuleTriangle.cpp */, - FFFD2c8060707f922c806070 /* src/sweep/GuSweepSphereCapsule.cpp */, - FFFD2c8060d87f922c8060d8 /* src/sweep/GuSweepSphereSphere.cpp */, - FFFD2c8061407f922c806140 /* src/sweep/GuSweepSphereTriangle.cpp */, - FFFD2c8061a87f922c8061a8 /* src/sweep/GuSweepTriangleUtils.cpp */, - FFFD2c8062107f922c806210 /* src/gjk/GuEPA.cpp */, - FFFD2c8062787f922c806278 /* src/gjk/GuGJKSimplex.cpp */, - FFFD2c8062e07f922c8062e0 /* src/gjk/GuGJKTest.cpp */, - FFFD2c8063487f922c806348 /* src/intersection/GuIntersectionBoxBox.cpp */, - FFFD2c8063b07f922c8063b0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, - FFFD2c8064187f922c806418 /* src/intersection/GuIntersectionEdgeEdge.cpp */, - FFFD2c8064807f922c806480 /* src/intersection/GuIntersectionRayBox.cpp */, - FFFD2c8064e87f922c8064e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, - FFFD2c8065507f922c806550 /* src/intersection/GuIntersectionRaySphere.cpp */, - FFFD2c8065b87f922c8065b8 /* src/intersection/GuIntersectionSphereBox.cpp */, - FFFD2c8066207f922c806620 /* src/intersection/GuIntersectionTriangleBox.cpp */, - FFFD2c8066887f922c806688 /* src/mesh/GuBV32.cpp */, - FFFD2c8066f07f922c8066f0 /* src/mesh/GuBV32Build.cpp */, - FFFD2c8067587f922c806758 /* src/mesh/GuBV4.cpp */, - FFFD2c8067c07f922c8067c0 /* src/mesh/GuBV4Build.cpp */, - FFFD2c8068287f922c806828 /* src/mesh/GuBV4_AABBSweep.cpp */, - FFFD2c8068907f922c806890 /* src/mesh/GuBV4_BoxOverlap.cpp */, - FFFD2c8068f87f922c8068f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, - FFFD2c8069607f922c806960 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, - FFFD2c8069c87f922c8069c8 /* src/mesh/GuBV4_OBBSweep.cpp */, - FFFD2c806a307f922c806a30 /* src/mesh/GuBV4_Raycast.cpp */, - FFFD2c806a987f922c806a98 /* src/mesh/GuBV4_SphereOverlap.cpp */, - FFFD2c806b007f922c806b00 /* src/mesh/GuBV4_SphereSweep.cpp */, - FFFD2c806b687f922c806b68 /* src/mesh/GuMeshQuery.cpp */, - FFFD2c806bd07f922c806bd0 /* src/mesh/GuMidphaseBV4.cpp */, - FFFD2c806c387f922c806c38 /* src/mesh/GuMidphaseRTree.cpp */, - FFFD2c806ca07f922c806ca0 /* src/mesh/GuOverlapTestsMesh.cpp */, - FFFD2c806d087f922c806d08 /* src/mesh/GuRTree.cpp */, - FFFD2c806d707f922c806d70 /* src/mesh/GuRTreeQueries.cpp */, - FFFD2c806dd87f922c806dd8 /* src/mesh/GuSweepsMesh.cpp */, - FFFD2c806e407f922c806e40 /* src/mesh/GuTriangleMesh.cpp */, - FFFD2c806ea87f922c806ea8 /* src/mesh/GuTriangleMeshBV4.cpp */, - FFFD2c806f107f922c806f10 /* src/mesh/GuTriangleMeshRTree.cpp */, - FFFD2c806f787f922c806f78 /* src/hf/GuHeightField.cpp */, - FFFD2c806fe07f922c806fe0 /* src/hf/GuHeightFieldUtil.cpp */, - FFFD2c8070487f922c807048 /* src/hf/GuOverlapTestsHF.cpp */, - FFFD2c8070b07f922c8070b0 /* src/hf/GuSweepsHF.cpp */, - FFFD2c8071187f922c807118 /* src/pcm/GuPCMContactBoxBox.cpp */, - FFFD2c8071807f922c807180 /* src/pcm/GuPCMContactBoxConvex.cpp */, - FFFD2c8071e87f922c8071e8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, - FFFD2c8072507f922c807250 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, - FFFD2c8072b87f922c8072b8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, - FFFD2c8073207f922c807320 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, - FFFD2c8073887f922c807388 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, - FFFD2c8073f07f922c8073f0 /* src/pcm/GuPCMContactConvexCommon.cpp */, - FFFD2c8074587f922c807458 /* src/pcm/GuPCMContactConvexConvex.cpp */, - FFFD2c8074c07f922c8074c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, - FFFD2c8075287f922c807528 /* src/pcm/GuPCMContactConvexMesh.cpp */, - FFFD2c8075907f922c807590 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, - FFFD2c8075f87f922c8075f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, - FFFD2c8076607f922c807660 /* src/pcm/GuPCMContactPlaneBox.cpp */, - FFFD2c8076c87f922c8076c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, - FFFD2c8077307f922c807730 /* src/pcm/GuPCMContactPlaneConvex.cpp */, - FFFD2c8077987f922c807798 /* src/pcm/GuPCMContactSphereBox.cpp */, - FFFD2c8078007f922c807800 /* src/pcm/GuPCMContactSphereCapsule.cpp */, - FFFD2c8078687f922c807868 /* src/pcm/GuPCMContactSphereConvex.cpp */, - FFFD2c8078d07f922c8078d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, - FFFD2c8079387f922c807938 /* src/pcm/GuPCMContactSphereMesh.cpp */, - FFFD2c8079a07f922c8079a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, - FFFD2c807a087f922c807a08 /* src/pcm/GuPCMContactSphereSphere.cpp */, - FFFD2c807a707f922c807a70 /* src/pcm/GuPCMShapeConvex.cpp */, - FFFD2c807ad87f922c807ad8 /* src/pcm/GuPCMTriangleContactGen.cpp */, - FFFD2c807b407f922c807b40 /* src/pcm/GuPersistentContactManifold.cpp */, - FFFD2c807ba87f922c807ba8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, - FFFD2c807c107f922c807c10 /* src/ccd/GuCCDSweepPrimitives.cpp */, + FFFD31806c007fc331806c00 /* headers/GuAxes.h */, + FFFD31806c687fc331806c68 /* headers/GuBox.h */, + FFFD31806cd07fc331806cd0 /* headers/GuDistanceSegmentBox.h */, + FFFD31806d387fc331806d38 /* headers/GuDistanceSegmentSegment.h */, + FFFD31806da07fc331806da0 /* headers/GuIntersectionBoxBox.h */, + FFFD31806e087fc331806e08 /* headers/GuIntersectionTriangleBox.h */, + FFFD31806e707fc331806e70 /* headers/GuRaycastTests.h */, + FFFD31806ed87fc331806ed8 /* headers/GuSIMDHelpers.h */, + FFFD31806f407fc331806f40 /* headers/GuSegment.h */, + FFFD31806fa87fc331806fa8 /* ../../Include/GeomUtils */, + FFFD318070107fc331807010 /* src/GuBounds.h */, + FFFD318070787fc331807078 /* src/GuCapsule.h */, + FFFD318070e07fc3318070e0 /* src/GuCenterExtents.h */, + FFFD318071487fc331807148 /* src/GuGeometryUnion.h */, + FFFD318071b07fc3318071b0 /* src/GuInternal.h */, + FFFD318072187fc331807218 /* src/GuMTD.h */, + FFFD318072807fc331807280 /* src/GuMeshFactory.h */, + FFFD318072e87fc3318072e8 /* src/GuOverlapTests.h */, + FFFD318073507fc331807350 /* src/GuSerialize.h */, + FFFD318073b87fc3318073b8 /* src/GuSphere.h */, + FFFD318074207fc331807420 /* src/GuSweepMTD.h */, + FFFD318074887fc331807488 /* src/GuSweepSharedTests.h */, + FFFD318074f07fc3318074f0 /* src/GuSweepTests.h */, + FFFD318075587fc331807558 /* src/contact/GuContactMethodImpl.h */, + FFFD318075c07fc3318075c0 /* src/contact/GuContactPolygonPolygon.h */, + FFFD318076287fc331807628 /* src/contact/GuFeatureCode.h */, + FFFD318076907fc331807690 /* src/contact/GuLegacyTraceLineCallback.h */, + FFFD318076f87fc3318076f8 /* src/common/GuBarycentricCoordinates.h */, + FFFD318077607fc331807760 /* src/common/GuBoxConversion.h */, + FFFD318077c87fc3318077c8 /* src/common/GuEdgeCache.h */, + FFFD318078307fc331807830 /* src/common/GuEdgeListData.h */, + FFFD318078987fc331807898 /* src/common/GuSeparatingAxes.h */, + FFFD318079007fc331807900 /* src/convex/GuBigConvexData.h */, + FFFD318079687fc331807968 /* src/convex/GuBigConvexData2.h */, + FFFD318079d07fc3318079d0 /* src/convex/GuConvexEdgeFlags.h */, + FFFD31807a387fc331807a38 /* src/convex/GuConvexHelper.h */, + FFFD31807aa07fc331807aa0 /* src/convex/GuConvexMesh.h */, + FFFD31807b087fc331807b08 /* src/convex/GuConvexMeshData.h */, + FFFD31807b707fc331807b70 /* src/convex/GuConvexSupportTable.h */, + FFFD31807bd87fc331807bd8 /* src/convex/GuConvexUtilsInternal.h */, + FFFD31807c407fc331807c40 /* src/convex/GuCubeIndex.h */, + FFFD31807ca87fc331807ca8 /* src/convex/GuHillClimbing.h */, + FFFD31807d107fc331807d10 /* src/convex/GuShapeConvex.h */, + FFFD31807d787fc331807d78 /* src/distance/GuDistancePointBox.h */, + FFFD31807de07fc331807de0 /* src/distance/GuDistancePointSegment.h */, + FFFD31807e487fc331807e48 /* src/distance/GuDistancePointTriangle.h */, + FFFD31807eb07fc331807eb0 /* src/distance/GuDistancePointTriangleSIMD.h */, + FFFD31807f187fc331807f18 /* src/distance/GuDistanceSegmentSegmentSIMD.h */, + FFFD31807f807fc331807f80 /* src/distance/GuDistanceSegmentTriangle.h */, + FFFD31807fe87fc331807fe8 /* src/distance/GuDistanceSegmentTriangleSIMD.h */, + FFFD318080507fc331808050 /* src/sweep/GuSweepBoxBox.h */, + FFFD318080b87fc3318080b8 /* src/sweep/GuSweepBoxSphere.h */, + FFFD318081207fc331808120 /* src/sweep/GuSweepBoxTriangle_FeatureBased.h */, + FFFD318081887fc331808188 /* src/sweep/GuSweepBoxTriangle_SAT.h */, + FFFD318081f07fc3318081f0 /* src/sweep/GuSweepCapsuleBox.h */, + FFFD318082587fc331808258 /* src/sweep/GuSweepCapsuleCapsule.h */, + FFFD318082c07fc3318082c0 /* src/sweep/GuSweepCapsuleTriangle.h */, + FFFD318083287fc331808328 /* src/sweep/GuSweepSphereCapsule.h */, + FFFD318083907fc331808390 /* src/sweep/GuSweepSphereSphere.h */, + FFFD318083f87fc3318083f8 /* src/sweep/GuSweepSphereTriangle.h */, + FFFD318084607fc331808460 /* src/sweep/GuSweepTriangleUtils.h */, + FFFD318084c87fc3318084c8 /* src/gjk/GuEPA.h */, + FFFD318085307fc331808530 /* src/gjk/GuEPAFacet.h */, + FFFD318085987fc331808598 /* src/gjk/GuGJK.h */, + FFFD318086007fc331808600 /* src/gjk/GuGJKPenetration.h */, + FFFD318086687fc331808668 /* src/gjk/GuGJKRaycast.h */, + FFFD318086d07fc3318086d0 /* src/gjk/GuGJKSimplex.h */, + FFFD318087387fc331808738 /* src/gjk/GuGJKTest.h */, + FFFD318087a07fc3318087a0 /* src/gjk/GuGJKType.h */, + FFFD318088087fc331808808 /* src/gjk/GuGJKUtil.h */, + FFFD318088707fc331808870 /* src/gjk/GuVecBox.h */, + FFFD318088d87fc3318088d8 /* src/gjk/GuVecCapsule.h */, + FFFD318089407fc331808940 /* src/gjk/GuVecConvex.h */, + FFFD318089a87fc3318089a8 /* src/gjk/GuVecConvexHull.h */, + FFFD31808a107fc331808a10 /* src/gjk/GuVecConvexHullNoScale.h */, + FFFD31808a787fc331808a78 /* src/gjk/GuVecPlane.h */, + FFFD31808ae07fc331808ae0 /* src/gjk/GuVecShrunkBox.h */, + FFFD31808b487fc331808b48 /* src/gjk/GuVecShrunkConvexHull.h */, + FFFD31808bb07fc331808bb0 /* src/gjk/GuVecShrunkConvexHullNoScale.h */, + FFFD31808c187fc331808c18 /* src/gjk/GuVecSphere.h */, + FFFD31808c807fc331808c80 /* src/gjk/GuVecTriangle.h */, + FFFD31808ce87fc331808ce8 /* src/intersection/GuIntersectionCapsuleTriangle.h */, + FFFD31808d507fc331808d50 /* src/intersection/GuIntersectionEdgeEdge.h */, + FFFD31808db87fc331808db8 /* src/intersection/GuIntersectionRay.h */, + FFFD31808e207fc331808e20 /* src/intersection/GuIntersectionRayBox.h */, + FFFD31808e887fc331808e88 /* src/intersection/GuIntersectionRayBoxSIMD.h */, + FFFD31808ef07fc331808ef0 /* src/intersection/GuIntersectionRayCapsule.h */, + FFFD31808f587fc331808f58 /* src/intersection/GuIntersectionRayPlane.h */, + FFFD31808fc07fc331808fc0 /* src/intersection/GuIntersectionRaySphere.h */, + FFFD318090287fc331809028 /* src/intersection/GuIntersectionRayTriangle.h */, + FFFD318090907fc331809090 /* src/intersection/GuIntersectionSphereBox.h */, + FFFD318090f87fc3318090f8 /* src/mesh/GuBV32.h */, + FFFD318091607fc331809160 /* src/mesh/GuBV32Build.h */, + FFFD318091c87fc3318091c8 /* src/mesh/GuBV4.h */, + FFFD318092307fc331809230 /* src/mesh/GuBV4Build.h */, + FFFD318092987fc331809298 /* src/mesh/GuBV4Settings.h */, + FFFD318093007fc331809300 /* src/mesh/GuBV4_AABBAABBSweepTest.h */, + FFFD318093687fc331809368 /* src/mesh/GuBV4_BoxBoxOverlapTest.h */, + FFFD318093d07fc3318093d0 /* src/mesh/GuBV4_BoxOverlap_Internal.h */, + FFFD318094387fc331809438 /* src/mesh/GuBV4_BoxSweep_Internal.h */, + FFFD318094a07fc3318094a0 /* src/mesh/GuBV4_BoxSweep_Params.h */, + FFFD318095087fc331809508 /* src/mesh/GuBV4_CapsuleSweep_Internal.h */, + FFFD318095707fc331809570 /* src/mesh/GuBV4_Common.h */, + FFFD318095d87fc3318095d8 /* src/mesh/GuBV4_Internal.h */, + FFFD318096407fc331809640 /* src/mesh/GuBV4_ProcessStreamNoOrder_OBBOBB.h */, + FFFD318096a87fc3318096a8 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB.h */, + FFFD318097107fc331809710 /* src/mesh/GuBV4_ProcessStreamNoOrder_SegmentAABB_Inflated.h */, + FFFD318097787fc331809778 /* src/mesh/GuBV4_ProcessStreamNoOrder_SphereAABB.h */, + FFFD318097e07fc3318097e0 /* src/mesh/GuBV4_ProcessStreamOrdered_OBBOBB.h */, + FFFD318098487fc331809848 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB.h */, + FFFD318098b07fc3318098b0 /* src/mesh/GuBV4_ProcessStreamOrdered_SegmentAABB_Inflated.h */, + FFFD318099187fc331809918 /* src/mesh/GuBV4_Slabs.h */, + FFFD318099807fc331809980 /* src/mesh/GuBV4_Slabs_KajiyaNoOrder.h */, + FFFD318099e87fc3318099e8 /* src/mesh/GuBV4_Slabs_KajiyaOrdered.h */, + FFFD31809a507fc331809a50 /* src/mesh/GuBV4_Slabs_SwizzledNoOrder.h */, + FFFD31809ab87fc331809ab8 /* src/mesh/GuBV4_Slabs_SwizzledOrdered.h */, + FFFD31809b207fc331809b20 /* src/mesh/GuBVConstants.h */, + FFFD31809b887fc331809b88 /* src/mesh/GuMeshData.h */, + FFFD31809bf07fc331809bf0 /* src/mesh/GuMidphaseInterface.h */, + FFFD31809c587fc331809c58 /* src/mesh/GuRTree.h */, + FFFD31809cc07fc331809cc0 /* src/mesh/GuSweepConvexTri.h */, + FFFD31809d287fc331809d28 /* src/mesh/GuSweepMesh.h */, + FFFD31809d907fc331809d90 /* src/mesh/GuTriangle32.h */, + FFFD31809df87fc331809df8 /* src/mesh/GuTriangleCache.h */, + FFFD31809e607fc331809e60 /* src/mesh/GuTriangleMesh.h */, + FFFD31809ec87fc331809ec8 /* src/mesh/GuTriangleMeshBV4.h */, + FFFD31809f307fc331809f30 /* src/mesh/GuTriangleMeshRTree.h */, + FFFD31809f987fc331809f98 /* src/mesh/GuTriangleVertexPointers.h */, + FFFD3180a0007fc33180a000 /* src/hf/GuEntityReport.h */, + FFFD3180a0687fc33180a068 /* src/hf/GuHeightField.h */, + FFFD3180a0d07fc33180a0d0 /* src/hf/GuHeightFieldData.h */, + FFFD3180a1387fc33180a138 /* src/hf/GuHeightFieldUtil.h */, + FFFD3180a1a07fc33180a1a0 /* src/pcm/GuPCMContactConvexCommon.h */, + FFFD3180a2087fc33180a208 /* src/pcm/GuPCMContactGen.h */, + FFFD3180a2707fc33180a270 /* src/pcm/GuPCMContactGenUtil.h */, + FFFD3180a2d87fc33180a2d8 /* src/pcm/GuPCMContactMeshCallback.h */, + FFFD3180a3407fc33180a340 /* src/pcm/GuPCMShapeConvex.h */, + FFFD3180a3a87fc33180a3a8 /* src/pcm/GuPCMTriangleContactGen.h */, + FFFD3180a4107fc33180a410 /* src/pcm/GuPersistentContactManifold.h */, + FFFD3180a4787fc33180a478 /* src/ccd/GuCCDSweepConvexMesh.h */, + FFFD3180a4e07fc33180a4e0 /* src/GuBounds.cpp */, + FFFD3180a5487fc33180a548 /* src/GuBox.cpp */, + FFFD3180a5b07fc33180a5b0 /* src/GuCCTSweepTests.cpp */, + FFFD3180a6187fc33180a618 /* src/GuCapsule.cpp */, + FFFD3180a6807fc33180a680 /* src/GuGeometryQuery.cpp */, + FFFD3180a6e87fc33180a6e8 /* src/GuGeometryUnion.cpp */, + FFFD3180a7507fc33180a750 /* src/GuInternal.cpp */, + FFFD3180a7b87fc33180a7b8 /* src/GuMTD.cpp */, + FFFD3180a8207fc33180a820 /* src/GuMeshFactory.cpp */, + FFFD3180a8887fc33180a888 /* src/GuMetaData.cpp */, + FFFD3180a8f07fc33180a8f0 /* src/GuOverlapTests.cpp */, + FFFD3180a9587fc33180a958 /* src/GuRaycastTests.cpp */, + FFFD3180a9c07fc33180a9c0 /* src/GuSerialize.cpp */, + FFFD3180aa287fc33180aa28 /* src/GuSweepMTD.cpp */, + FFFD3180aa907fc33180aa90 /* src/GuSweepSharedTests.cpp */, + FFFD3180aaf87fc33180aaf8 /* src/GuSweepTests.cpp */, + FFFD3180ab607fc33180ab60 /* src/contact/GuContactBoxBox.cpp */, + FFFD3180abc87fc33180abc8 /* src/contact/GuContactCapsuleBox.cpp */, + FFFD3180ac307fc33180ac30 /* src/contact/GuContactCapsuleCapsule.cpp */, + FFFD3180ac987fc33180ac98 /* src/contact/GuContactCapsuleConvex.cpp */, + FFFD3180ad007fc33180ad00 /* src/contact/GuContactCapsuleMesh.cpp */, + FFFD3180ad687fc33180ad68 /* src/contact/GuContactConvexConvex.cpp */, + FFFD3180add07fc33180add0 /* src/contact/GuContactConvexMesh.cpp */, + FFFD3180ae387fc33180ae38 /* src/contact/GuContactPlaneBox.cpp */, + FFFD3180aea07fc33180aea0 /* src/contact/GuContactPlaneCapsule.cpp */, + FFFD3180af087fc33180af08 /* src/contact/GuContactPlaneConvex.cpp */, + FFFD3180af707fc33180af70 /* src/contact/GuContactPolygonPolygon.cpp */, + FFFD3180afd87fc33180afd8 /* src/contact/GuContactSphereBox.cpp */, + FFFD3180b0407fc33180b040 /* src/contact/GuContactSphereCapsule.cpp */, + FFFD3180b0a87fc33180b0a8 /* src/contact/GuContactSphereMesh.cpp */, + FFFD3180b1107fc33180b110 /* src/contact/GuContactSpherePlane.cpp */, + FFFD3180b1787fc33180b178 /* src/contact/GuContactSphereSphere.cpp */, + FFFD3180b1e07fc33180b1e0 /* src/contact/GuFeatureCode.cpp */, + FFFD3180b2487fc33180b248 /* src/contact/GuLegacyContactBoxHeightField.cpp */, + FFFD3180b2b07fc33180b2b0 /* src/contact/GuLegacyContactCapsuleHeightField.cpp */, + FFFD3180b3187fc33180b318 /* src/contact/GuLegacyContactConvexHeightField.cpp */, + FFFD3180b3807fc33180b380 /* src/contact/GuLegacyContactSphereHeightField.cpp */, + FFFD3180b3e87fc33180b3e8 /* src/common/GuBarycentricCoordinates.cpp */, + FFFD3180b4507fc33180b450 /* src/common/GuSeparatingAxes.cpp */, + FFFD3180b4b87fc33180b4b8 /* src/convex/GuBigConvexData.cpp */, + FFFD3180b5207fc33180b520 /* src/convex/GuConvexHelper.cpp */, + FFFD3180b5887fc33180b588 /* src/convex/GuConvexMesh.cpp */, + FFFD3180b5f07fc33180b5f0 /* src/convex/GuConvexSupportTable.cpp */, + FFFD3180b6587fc33180b658 /* src/convex/GuConvexUtilsInternal.cpp */, + FFFD3180b6c07fc33180b6c0 /* src/convex/GuHillClimbing.cpp */, + FFFD3180b7287fc33180b728 /* src/convex/GuShapeConvex.cpp */, + FFFD3180b7907fc33180b790 /* src/distance/GuDistancePointBox.cpp */, + FFFD3180b7f87fc33180b7f8 /* src/distance/GuDistancePointTriangle.cpp */, + FFFD3180b8607fc33180b860 /* src/distance/GuDistanceSegmentBox.cpp */, + FFFD3180b8c87fc33180b8c8 /* src/distance/GuDistanceSegmentSegment.cpp */, + FFFD3180b9307fc33180b930 /* src/distance/GuDistanceSegmentTriangle.cpp */, + FFFD3180b9987fc33180b998 /* src/sweep/GuSweepBoxBox.cpp */, + FFFD3180ba007fc33180ba00 /* src/sweep/GuSweepBoxSphere.cpp */, + FFFD3180ba687fc33180ba68 /* src/sweep/GuSweepBoxTriangle_FeatureBased.cpp */, + FFFD3180bad07fc33180bad0 /* src/sweep/GuSweepBoxTriangle_SAT.cpp */, + FFFD3180bb387fc33180bb38 /* src/sweep/GuSweepCapsuleBox.cpp */, + FFFD3180bba07fc33180bba0 /* src/sweep/GuSweepCapsuleCapsule.cpp */, + FFFD3180bc087fc33180bc08 /* src/sweep/GuSweepCapsuleTriangle.cpp */, + FFFD3180bc707fc33180bc70 /* src/sweep/GuSweepSphereCapsule.cpp */, + FFFD3180bcd87fc33180bcd8 /* src/sweep/GuSweepSphereSphere.cpp */, + FFFD3180bd407fc33180bd40 /* src/sweep/GuSweepSphereTriangle.cpp */, + FFFD3180bda87fc33180bda8 /* src/sweep/GuSweepTriangleUtils.cpp */, + FFFD3180be107fc33180be10 /* src/gjk/GuEPA.cpp */, + FFFD3180be787fc33180be78 /* src/gjk/GuGJKSimplex.cpp */, + FFFD3180bee07fc33180bee0 /* src/gjk/GuGJKTest.cpp */, + FFFD3180bf487fc33180bf48 /* src/intersection/GuIntersectionBoxBox.cpp */, + FFFD3180bfb07fc33180bfb0 /* src/intersection/GuIntersectionCapsuleTriangle.cpp */, + FFFD3180c0187fc33180c018 /* src/intersection/GuIntersectionEdgeEdge.cpp */, + FFFD3180c0807fc33180c080 /* src/intersection/GuIntersectionRayBox.cpp */, + FFFD3180c0e87fc33180c0e8 /* src/intersection/GuIntersectionRayCapsule.cpp */, + FFFD3180c1507fc33180c150 /* src/intersection/GuIntersectionRaySphere.cpp */, + FFFD3180c1b87fc33180c1b8 /* src/intersection/GuIntersectionSphereBox.cpp */, + FFFD3180c2207fc33180c220 /* src/intersection/GuIntersectionTriangleBox.cpp */, + FFFD3180c2887fc33180c288 /* src/mesh/GuBV32.cpp */, + FFFD3180c2f07fc33180c2f0 /* src/mesh/GuBV32Build.cpp */, + FFFD3180c3587fc33180c358 /* src/mesh/GuBV4.cpp */, + FFFD3180c3c07fc33180c3c0 /* src/mesh/GuBV4Build.cpp */, + FFFD3180c4287fc33180c428 /* src/mesh/GuBV4_AABBSweep.cpp */, + FFFD3180c4907fc33180c490 /* src/mesh/GuBV4_BoxOverlap.cpp */, + FFFD3180c4f87fc33180c4f8 /* src/mesh/GuBV4_CapsuleSweep.cpp */, + FFFD3180c5607fc33180c560 /* src/mesh/GuBV4_CapsuleSweepAA.cpp */, + FFFD3180c5c87fc33180c5c8 /* src/mesh/GuBV4_OBBSweep.cpp */, + FFFD3180c6307fc33180c630 /* src/mesh/GuBV4_Raycast.cpp */, + FFFD3180c6987fc33180c698 /* src/mesh/GuBV4_SphereOverlap.cpp */, + FFFD3180c7007fc33180c700 /* src/mesh/GuBV4_SphereSweep.cpp */, + FFFD3180c7687fc33180c768 /* src/mesh/GuMeshQuery.cpp */, + FFFD3180c7d07fc33180c7d0 /* src/mesh/GuMidphaseBV4.cpp */, + FFFD3180c8387fc33180c838 /* src/mesh/GuMidphaseRTree.cpp */, + FFFD3180c8a07fc33180c8a0 /* src/mesh/GuOverlapTestsMesh.cpp */, + FFFD3180c9087fc33180c908 /* src/mesh/GuRTree.cpp */, + FFFD3180c9707fc33180c970 /* src/mesh/GuRTreeQueries.cpp */, + FFFD3180c9d87fc33180c9d8 /* src/mesh/GuSweepsMesh.cpp */, + FFFD3180ca407fc33180ca40 /* src/mesh/GuTriangleMesh.cpp */, + FFFD3180caa87fc33180caa8 /* src/mesh/GuTriangleMeshBV4.cpp */, + FFFD3180cb107fc33180cb10 /* src/mesh/GuTriangleMeshRTree.cpp */, + FFFD3180cb787fc33180cb78 /* src/hf/GuHeightField.cpp */, + FFFD3180cbe07fc33180cbe0 /* src/hf/GuHeightFieldUtil.cpp */, + FFFD3180cc487fc33180cc48 /* src/hf/GuOverlapTestsHF.cpp */, + FFFD3180ccb07fc33180ccb0 /* src/hf/GuSweepsHF.cpp */, + FFFD3180cd187fc33180cd18 /* src/pcm/GuPCMContactBoxBox.cpp */, + FFFD3180cd807fc33180cd80 /* src/pcm/GuPCMContactBoxConvex.cpp */, + FFFD3180cde87fc33180cde8 /* src/pcm/GuPCMContactCapsuleBox.cpp */, + FFFD3180ce507fc33180ce50 /* src/pcm/GuPCMContactCapsuleCapsule.cpp */, + FFFD3180ceb87fc33180ceb8 /* src/pcm/GuPCMContactCapsuleConvex.cpp */, + FFFD3180cf207fc33180cf20 /* src/pcm/GuPCMContactCapsuleHeightField.cpp */, + FFFD3180cf887fc33180cf88 /* src/pcm/GuPCMContactCapsuleMesh.cpp */, + FFFD3180cff07fc33180cff0 /* src/pcm/GuPCMContactConvexCommon.cpp */, + FFFD3180d0587fc33180d058 /* src/pcm/GuPCMContactConvexConvex.cpp */, + FFFD3180d0c07fc33180d0c0 /* src/pcm/GuPCMContactConvexHeightField.cpp */, + FFFD3180d1287fc33180d128 /* src/pcm/GuPCMContactConvexMesh.cpp */, + FFFD3180d1907fc33180d190 /* src/pcm/GuPCMContactGenBoxConvex.cpp */, + FFFD3180d1f87fc33180d1f8 /* src/pcm/GuPCMContactGenSphereCapsule.cpp */, + FFFD3180d2607fc33180d260 /* src/pcm/GuPCMContactPlaneBox.cpp */, + FFFD3180d2c87fc33180d2c8 /* src/pcm/GuPCMContactPlaneCapsule.cpp */, + FFFD3180d3307fc33180d330 /* src/pcm/GuPCMContactPlaneConvex.cpp */, + FFFD3180d3987fc33180d398 /* src/pcm/GuPCMContactSphereBox.cpp */, + FFFD3180d4007fc33180d400 /* src/pcm/GuPCMContactSphereCapsule.cpp */, + FFFD3180d4687fc33180d468 /* src/pcm/GuPCMContactSphereConvex.cpp */, + FFFD3180d4d07fc33180d4d0 /* src/pcm/GuPCMContactSphereHeightField.cpp */, + FFFD3180d5387fc33180d538 /* src/pcm/GuPCMContactSphereMesh.cpp */, + FFFD3180d5a07fc33180d5a0 /* src/pcm/GuPCMContactSpherePlane.cpp */, + FFFD3180d6087fc33180d608 /* src/pcm/GuPCMContactSphereSphere.cpp */, + FFFD3180d6707fc33180d670 /* src/pcm/GuPCMShapeConvex.cpp */, + FFFD3180d6d87fc33180d6d8 /* src/pcm/GuPCMTriangleContactGen.cpp */, + FFFD3180d7407fc33180d740 /* src/pcm/GuPersistentContactManifold.cpp */, + FFFD3180d7a87fc33180d7a8 /* src/ccd/GuCCDSweepConvexMesh.cpp */, + FFFD3180d8107fc33180d810 /* src/ccd/GuCCDSweepPrimitives.cpp */, ); name = "geomutils"; sourceTree = SOURCE_ROOT; }; - FFFB2c1587607f922c158760 /* PxFoundation */ = { + FFFB315044907fc331504490 /* PxFoundation */ = { isa = PBXGroup; children = ( - FFFB2c158cf07f922c158cf0 /* include */, - FFFB2c158d187f922c158d18 /* src */, + FFFB315093a07fc3315093a0 /* include */, + FFFB315093c87fc3315093c8 /* src */, ); name = "PxFoundation"; sourceTree = "<group>"; }; - FFFB2c158cf07f922c158cf0 /* include */ = { + FFFB315093a07fc3315093a0 /* include */ = { isa = PBXGroup; children = ( - FFFD2b980e007f922b980e00 /* Px.h */, - FFFD2b980e687f922b980e68 /* PxAllocatorCallback.h */, - FFFD2b980ed07f922b980ed0 /* PxAssert.h */, - FFFD2b980f387f922b980f38 /* PxBitAndData.h */, - FFFD2b980fa07f922b980fa0 /* PxBounds3.h */, - FFFD2b9810087f922b981008 /* PxErrorCallback.h */, - FFFD2b9810707f922b981070 /* PxErrors.h */, - FFFD2b9810d87f922b9810d8 /* PxFlags.h */, - FFFD2b9811407f922b981140 /* PxFoundation.h */, - FFFD2b9811a87f922b9811a8 /* PxFoundationVersion.h */, - FFFD2b9812107f922b981210 /* PxIO.h */, - FFFD2b9812787f922b981278 /* PxIntrinsics.h */, - FFFD2b9812e07f922b9812e0 /* PxMat33.h */, - FFFD2b9813487f922b981348 /* PxMat44.h */, - FFFD2b9813b07f922b9813b0 /* PxMath.h */, - FFFD2b9814187f922b981418 /* PxMathUtils.h */, - FFFD2b9814807f922b981480 /* PxMemory.h */, - FFFD2b9814e87f922b9814e8 /* PxPlane.h */, - FFFD2b9815507f922b981550 /* PxPreprocessor.h */, - FFFD2b9815b87f922b9815b8 /* PxProfiler.h */, - FFFD2b9816207f922b981620 /* PxQuat.h */, - FFFD2b9816887f922b981688 /* PxSimpleTypes.h */, - FFFD2b9816f07f922b9816f0 /* PxStrideIterator.h */, - FFFD2b9817587f922b981758 /* PxTransform.h */, - FFFD2b9817c07f922b9817c0 /* PxUnionCast.h */, - FFFD2b9818287f922b981828 /* PxVec2.h */, - FFFD2b9818907f922b981890 /* PxVec3.h */, - FFFD2b9818f87f922b9818f8 /* PxVec4.h */, - FFFD2b9819607f922b981960 /* unix/PxUnixIntrinsics.h */, + FFFD32800e007fc332800e00 /* Px.h */, + FFFD32800e687fc332800e68 /* PxAllocatorCallback.h */, + FFFD32800ed07fc332800ed0 /* PxAssert.h */, + FFFD32800f387fc332800f38 /* PxBitAndData.h */, + FFFD32800fa07fc332800fa0 /* PxBounds3.h */, + FFFD328010087fc332801008 /* PxErrorCallback.h */, + FFFD328010707fc332801070 /* PxErrors.h */, + FFFD328010d87fc3328010d8 /* PxFlags.h */, + FFFD328011407fc332801140 /* PxFoundation.h */, + FFFD328011a87fc3328011a8 /* PxFoundationVersion.h */, + FFFD328012107fc332801210 /* PxIO.h */, + FFFD328012787fc332801278 /* PxIntrinsics.h */, + FFFD328012e07fc3328012e0 /* PxMat33.h */, + FFFD328013487fc332801348 /* PxMat44.h */, + FFFD328013b07fc3328013b0 /* PxMath.h */, + FFFD328014187fc332801418 /* PxMathUtils.h */, + FFFD328014807fc332801480 /* PxMemory.h */, + FFFD328014e87fc3328014e8 /* PxPlane.h */, + FFFD328015507fc332801550 /* PxPreprocessor.h */, + FFFD328015b87fc3328015b8 /* PxProfiler.h */, + FFFD328016207fc332801620 /* PxQuat.h */, + FFFD328016887fc332801688 /* PxSimpleTypes.h */, + FFFD328016f07fc3328016f0 /* PxStrideIterator.h */, + FFFD328017587fc332801758 /* PxTransform.h */, + FFFD328017c07fc3328017c0 /* PxUnionCast.h */, + FFFD328018287fc332801828 /* PxVec2.h */, + FFFD328018907fc332801890 /* PxVec3.h */, + FFFD328018f87fc3328018f8 /* PxVec4.h */, + FFFD328019607fc332801960 /* unix/PxUnixIntrinsics.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2c158d187f922c158d18 /* src */ = { + FFFB315093c87fc3315093c8 /* src */ = { isa = PBXGroup; children = ( - FFFD2b991a007f922b991a00 /* include/Ps.h */, - FFFD2b991a687f922b991a68 /* include/PsAlignedMalloc.h */, - FFFD2b991ad07f922b991ad0 /* include/PsAlloca.h */, - FFFD2b991b387f922b991b38 /* include/PsAllocator.h */, - FFFD2b991ba07f922b991ba0 /* include/PsAoS.h */, - FFFD2b991c087f922b991c08 /* include/PsArray.h */, - FFFD2b991c707f922b991c70 /* include/PsAtomic.h */, - FFFD2b991cd87f922b991cd8 /* include/PsBasicTemplates.h */, - FFFD2b991d407f922b991d40 /* include/PsBitUtils.h */, - FFFD2b991da87f922b991da8 /* include/PsBroadcast.h */, - FFFD2b991e107f922b991e10 /* include/PsCpu.h */, - FFFD2b991e787f922b991e78 /* include/PsFPU.h */, - FFFD2b991ee07f922b991ee0 /* include/PsFoundation.h */, - FFFD2b991f487f922b991f48 /* include/PsHash.h */, - FFFD2b991fb07f922b991fb0 /* include/PsHashInternals.h */, - FFFD2b9920187f922b992018 /* include/PsHashMap.h */, - FFFD2b9920807f922b992080 /* include/PsHashSet.h */, - FFFD2b9920e87f922b9920e8 /* include/PsInlineAllocator.h */, - FFFD2b9921507f922b992150 /* include/PsInlineAoS.h */, - FFFD2b9921b87f922b9921b8 /* include/PsInlineArray.h */, - FFFD2b9922207f922b992220 /* include/PsIntrinsics.h */, - FFFD2b9922887f922b992288 /* include/PsMathUtils.h */, - FFFD2b9922f07f922b9922f0 /* include/PsMutex.h */, - FFFD2b9923587f922b992358 /* include/PsPool.h */, - FFFD2b9923c07f922b9923c0 /* include/PsSList.h */, - FFFD2b9924287f922b992428 /* include/PsSocket.h */, - FFFD2b9924907f922b992490 /* include/PsSort.h */, - FFFD2b9924f87f922b9924f8 /* include/PsSortInternals.h */, - FFFD2b9925607f922b992560 /* include/PsString.h */, - FFFD2b9925c87f922b9925c8 /* include/PsSync.h */, - FFFD2b9926307f922b992630 /* include/PsTempAllocator.h */, - FFFD2b9926987f922b992698 /* include/PsThread.h */, - FFFD2b9927007f922b992700 /* include/PsTime.h */, - FFFD2b9927687f922b992768 /* include/PsUserAllocated.h */, - FFFD2b9927d07f922b9927d0 /* include/PsUtilities.h */, - FFFD2b9928387f922b992838 /* include/PsVecMath.h */, - FFFD2b9928a07f922b9928a0 /* include/PsVecMathAoSScalar.h */, - FFFD2b9929087f922b992908 /* include/PsVecMathAoSScalarInline.h */, - FFFD2b9929707f922b992970 /* include/PsVecMathSSE.h */, - FFFD2b9929d87f922b9929d8 /* include/PsVecMathUtilities.h */, - FFFD2b992a407f922b992a40 /* include/PsVecQuat.h */, - FFFD2b992aa87f922b992aa8 /* include/PsVecTransform.h */, - FFFD2b992b107f922b992b10 /* include/unix/PsUnixAoS.h */, - FFFD2b992b787f922b992b78 /* include/unix/PsUnixFPU.h */, - FFFD2b992be07f922b992be0 /* include/unix/PsUnixInlineAoS.h */, - FFFD2b992c487f922b992c48 /* include/unix/PsUnixIntrinsics.h */, - FFFD2b992cb07f922b992cb0 /* include/unix/PsUnixTrigConstants.h */, - FFFD2b992d187f922b992d18 /* src/PsAllocator.cpp */, - FFFD2b992d807f922b992d80 /* src/PsAssert.cpp */, - FFFD2b992de87f922b992de8 /* src/PsFoundation.cpp */, - FFFD2b992e507f922b992e50 /* src/PsMathUtils.cpp */, - FFFD2b992eb87f922b992eb8 /* src/PsString.cpp */, - FFFD2b992f207f922b992f20 /* src/PsTempAllocator.cpp */, - FFFD2b992f887f922b992f88 /* src/PsUtilities.cpp */, - FFFD2b992ff07f922b992ff0 /* src/unix/PsUnixAtomic.cpp */, - FFFD2b9930587f922b993058 /* src/unix/PsUnixCpu.cpp */, - FFFD2b9930c07f922b9930c0 /* src/unix/PsUnixFPU.cpp */, - FFFD2b9931287f922b993128 /* src/unix/PsUnixMutex.cpp */, - FFFD2b9931907f922b993190 /* src/unix/PsUnixPrintString.cpp */, - FFFD2b9931f87f922b9931f8 /* src/unix/PsUnixSList.cpp */, - FFFD2b9932607f922b993260 /* src/unix/PsUnixSocket.cpp */, - FFFD2b9932c87f922b9932c8 /* src/unix/PsUnixSync.cpp */, - FFFD2b9933307f922b993330 /* src/unix/PsUnixThread.cpp */, - FFFD2b9933987f922b993398 /* src/unix/PsUnixTime.cpp */, + FFFD3281b6007fc33281b600 /* include/Ps.h */, + FFFD3281b6687fc33281b668 /* include/PsAlignedMalloc.h */, + FFFD3281b6d07fc33281b6d0 /* include/PsAlloca.h */, + FFFD3281b7387fc33281b738 /* include/PsAllocator.h */, + FFFD3281b7a07fc33281b7a0 /* include/PsAoS.h */, + FFFD3281b8087fc33281b808 /* include/PsArray.h */, + FFFD3281b8707fc33281b870 /* include/PsAtomic.h */, + FFFD3281b8d87fc33281b8d8 /* include/PsBasicTemplates.h */, + FFFD3281b9407fc33281b940 /* include/PsBitUtils.h */, + FFFD3281b9a87fc33281b9a8 /* include/PsBroadcast.h */, + FFFD3281ba107fc33281ba10 /* include/PsCpu.h */, + FFFD3281ba787fc33281ba78 /* include/PsFPU.h */, + FFFD3281bae07fc33281bae0 /* include/PsFoundation.h */, + FFFD3281bb487fc33281bb48 /* include/PsHash.h */, + FFFD3281bbb07fc33281bbb0 /* include/PsHashInternals.h */, + FFFD3281bc187fc33281bc18 /* include/PsHashMap.h */, + FFFD3281bc807fc33281bc80 /* include/PsHashSet.h */, + FFFD3281bce87fc33281bce8 /* include/PsInlineAllocator.h */, + FFFD3281bd507fc33281bd50 /* include/PsInlineAoS.h */, + FFFD3281bdb87fc33281bdb8 /* include/PsInlineArray.h */, + FFFD3281be207fc33281be20 /* include/PsIntrinsics.h */, + FFFD3281be887fc33281be88 /* include/PsMathUtils.h */, + FFFD3281bef07fc33281bef0 /* include/PsMutex.h */, + FFFD3281bf587fc33281bf58 /* include/PsPool.h */, + FFFD3281bfc07fc33281bfc0 /* include/PsSList.h */, + FFFD3281c0287fc33281c028 /* include/PsSocket.h */, + FFFD3281c0907fc33281c090 /* include/PsSort.h */, + FFFD3281c0f87fc33281c0f8 /* include/PsSortInternals.h */, + FFFD3281c1607fc33281c160 /* include/PsString.h */, + FFFD3281c1c87fc33281c1c8 /* include/PsSync.h */, + FFFD3281c2307fc33281c230 /* include/PsTempAllocator.h */, + FFFD3281c2987fc33281c298 /* include/PsThread.h */, + FFFD3281c3007fc33281c300 /* include/PsTime.h */, + FFFD3281c3687fc33281c368 /* include/PsUserAllocated.h */, + FFFD3281c3d07fc33281c3d0 /* include/PsUtilities.h */, + FFFD3281c4387fc33281c438 /* include/PsVecMath.h */, + FFFD3281c4a07fc33281c4a0 /* include/PsVecMathAoSScalar.h */, + FFFD3281c5087fc33281c508 /* include/PsVecMathAoSScalarInline.h */, + FFFD3281c5707fc33281c570 /* include/PsVecMathSSE.h */, + FFFD3281c5d87fc33281c5d8 /* include/PsVecMathUtilities.h */, + FFFD3281c6407fc33281c640 /* include/PsVecQuat.h */, + FFFD3281c6a87fc33281c6a8 /* include/PsVecTransform.h */, + FFFD3281c7107fc33281c710 /* include/unix/PsUnixAoS.h */, + FFFD3281c7787fc33281c778 /* include/unix/PsUnixFPU.h */, + FFFD3281c7e07fc33281c7e0 /* include/unix/PsUnixInlineAoS.h */, + FFFD3281c8487fc33281c848 /* include/unix/PsUnixIntrinsics.h */, + FFFD3281c8b07fc33281c8b0 /* include/unix/PsUnixTrigConstants.h */, + FFFD3281c9187fc33281c918 /* src/PsAllocator.cpp */, + FFFD3281c9807fc33281c980 /* src/PsAssert.cpp */, + FFFD3281c9e87fc33281c9e8 /* src/PsFoundation.cpp */, + FFFD3281ca507fc33281ca50 /* src/PsMathUtils.cpp */, + FFFD3281cab87fc33281cab8 /* src/PsString.cpp */, + FFFD3281cb207fc33281cb20 /* src/PsTempAllocator.cpp */, + FFFD3281cb887fc33281cb88 /* src/PsUtilities.cpp */, + FFFD3281cbf07fc33281cbf0 /* src/unix/PsUnixAtomic.cpp */, + FFFD3281cc587fc33281cc58 /* src/unix/PsUnixCpu.cpp */, + FFFD3281ccc07fc33281ccc0 /* src/unix/PsUnixFPU.cpp */, + FFFD3281cd287fc33281cd28 /* src/unix/PsUnixMutex.cpp */, + FFFD3281cd907fc33281cd90 /* src/unix/PsUnixPrintString.cpp */, + FFFD3281cdf87fc33281cdf8 /* src/unix/PsUnixSList.cpp */, + FFFD3281ce607fc33281ce60 /* src/unix/PsUnixSocket.cpp */, + FFFD3281cec87fc33281cec8 /* src/unix/PsUnixSync.cpp */, + FFFD3281cf307fc33281cf30 /* src/unix/PsUnixThread.cpp */, + FFFD3281cf987fc33281cf98 /* src/unix/PsUnixTime.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2c0bd6207f922c0bd620 /* PxPvdSDK */ = { + FFFB31142a807fc331142a80 /* PxPvdSDK */ = { isa = PBXGroup; children = ( - FFFB2c0fb0807f922c0fb080 /* include */, - FFFB2c0fb0a87f922c0fb0a8 /* src */, + FFFB311484607fc331148460 /* include */, + FFFB311484887fc331148488 /* src */, ); name = "PxPvdSDK"; sourceTree = "<group>"; }; - FFFB2c0fb0807f922c0fb080 /* include */ = { + FFFB311484607fc331148460 /* include */ = { isa = PBXGroup; children = ( - FFFD2c0be4f07f922c0be4f0 /* PxPvd.h */, - FFFD2c0be5587f922c0be558 /* PxPvdTransport.h */, + FFFD31147a807fc331147a80 /* PxPvd.h */, + FFFD31147ae87fc331147ae8 /* PxPvdTransport.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2c0fb0a87f922c0fb0a8 /* src */ = { + FFFB311484887fc331148488 /* src */ = { isa = PBXGroup; children = ( - FFFD2c81e4007f922c81e400 /* include/PsPvd.h */, - FFFD2c81e4687f922c81e468 /* include/PxProfileAllocatorWrapper.h */, - FFFD2c81e4d07f922c81e4d0 /* include/PxPvdClient.h */, - FFFD2c81e5387f922c81e538 /* include/PxPvdDataStream.h */, - FFFD2c81e5a07f922c81e5a0 /* include/PxPvdDataStreamHelpers.h */, - FFFD2c81e6087f922c81e608 /* include/PxPvdErrorCodes.h */, - FFFD2c81e6707f922c81e670 /* include/PxPvdObjectModelBaseTypes.h */, - FFFD2c81e6d87f922c81e6d8 /* include/PxPvdRenderBuffer.h */, - FFFD2c81e7407f922c81e740 /* include/PxPvdUserRenderer.h */, - FFFD2c81e7a87f922c81e7a8 /* src/PxProfileEventImpl.cpp */, - FFFD2c81e8107f922c81e810 /* src/PxPvd.cpp */, - FFFD2c81e8787f922c81e878 /* src/PxPvdDataStream.cpp */, - FFFD2c81e8e07f922c81e8e0 /* src/PxPvdDefaultFileTransport.cpp */, - FFFD2c81e9487f922c81e948 /* src/PxPvdDefaultSocketTransport.cpp */, - FFFD2c81e9b07f922c81e9b0 /* src/PxPvdImpl.cpp */, - FFFD2c81ea187f922c81ea18 /* src/PxPvdMemClient.cpp */, - FFFD2c81ea807f922c81ea80 /* src/PxPvdObjectModelMetaData.cpp */, - FFFD2c81eae87f922c81eae8 /* src/PxPvdObjectRegistrar.cpp */, - FFFD2c81eb507f922c81eb50 /* src/PxPvdProfileZoneClient.cpp */, - FFFD2c81ebb87f922c81ebb8 /* src/PxPvdUserRenderer.cpp */, - FFFD2c81ec207f922c81ec20 /* src/PxProfileBase.h */, - FFFD2c81ec887f922c81ec88 /* src/PxProfileCompileTimeEventFilter.h */, - FFFD2c81ecf07f922c81ecf0 /* src/PxProfileContextProvider.h */, - FFFD2c81ed587f922c81ed58 /* src/PxProfileContextProviderImpl.h */, - FFFD2c81edc07f922c81edc0 /* src/PxProfileDataBuffer.h */, - FFFD2c81ee287f922c81ee28 /* src/PxProfileDataParsing.h */, - FFFD2c81ee907f922c81ee90 /* src/PxProfileEventBuffer.h */, - FFFD2c81eef87f922c81eef8 /* src/PxProfileEventBufferAtomic.h */, - FFFD2c81ef607f922c81ef60 /* src/PxProfileEventBufferClient.h */, - FFFD2c81efc87f922c81efc8 /* src/PxProfileEventBufferClientManager.h */, - FFFD2c81f0307f922c81f030 /* src/PxProfileEventFilter.h */, - FFFD2c81f0987f922c81f098 /* src/PxProfileEventHandler.h */, - FFFD2c81f1007f922c81f100 /* src/PxProfileEventId.h */, - FFFD2c81f1687f922c81f168 /* src/PxProfileEventMutex.h */, - FFFD2c81f1d07f922c81f1d0 /* src/PxProfileEventNames.h */, - FFFD2c81f2387f922c81f238 /* src/PxProfileEventParser.h */, - FFFD2c81f2a07f922c81f2a0 /* src/PxProfileEventSender.h */, - FFFD2c81f3087f922c81f308 /* src/PxProfileEventSerialization.h */, - FFFD2c81f3707f922c81f370 /* src/PxProfileEventSystem.h */, - FFFD2c81f3d87f922c81f3d8 /* src/PxProfileEvents.h */, - FFFD2c81f4407f922c81f440 /* src/PxProfileMemory.h */, - FFFD2c81f4a87f922c81f4a8 /* src/PxProfileMemoryBuffer.h */, - FFFD2c81f5107f922c81f510 /* src/PxProfileMemoryEventBuffer.h */, - FFFD2c81f5787f922c81f578 /* src/PxProfileMemoryEventParser.h */, - FFFD2c81f5e07f922c81f5e0 /* src/PxProfileMemoryEventRecorder.h */, - FFFD2c81f6487f922c81f648 /* src/PxProfileMemoryEventReflexiveWriter.h */, - FFFD2c81f6b07f922c81f6b0 /* src/PxProfileMemoryEventSummarizer.h */, - FFFD2c81f7187f922c81f718 /* src/PxProfileMemoryEventTypes.h */, - FFFD2c81f7807f922c81f780 /* src/PxProfileMemoryEvents.h */, - FFFD2c81f7e87f922c81f7e8 /* src/PxProfileScopedEvent.h */, - FFFD2c81f8507f922c81f850 /* src/PxProfileScopedMutexLock.h */, - FFFD2c81f8b87f922c81f8b8 /* src/PxProfileZone.h */, - FFFD2c81f9207f922c81f920 /* src/PxProfileZoneImpl.h */, - FFFD2c81f9887f922c81f988 /* src/PxProfileZoneManager.h */, - FFFD2c81f9f07f922c81f9f0 /* src/PxProfileZoneManagerImpl.h */, - FFFD2c81fa587f922c81fa58 /* src/PxPvdBits.h */, - FFFD2c81fac07f922c81fac0 /* src/PxPvdByteStreams.h */, - FFFD2c81fb287f922c81fb28 /* src/PxPvdCommStreamEventSink.h */, - FFFD2c81fb907f922c81fb90 /* src/PxPvdCommStreamEvents.h */, - FFFD2c81fbf87f922c81fbf8 /* src/PxPvdCommStreamSDKEventTypes.h */, - FFFD2c81fc607f922c81fc60 /* src/PxPvdCommStreamTypes.h */, - FFFD2c81fcc87f922c81fcc8 /* src/PxPvdDefaultFileTransport.h */, - FFFD2c81fd307f922c81fd30 /* src/PxPvdDefaultSocketTransport.h */, - FFFD2c81fd987f922c81fd98 /* src/PxPvdFoundation.h */, - FFFD2c81fe007f922c81fe00 /* src/PxPvdImpl.h */, - FFFD2c81fe687f922c81fe68 /* src/PxPvdInternalByteStreams.h */, - FFFD2c81fed07f922c81fed0 /* src/PxPvdMarshalling.h */, - FFFD2c81ff387f922c81ff38 /* src/PxPvdMemClient.h */, - FFFD2c81ffa07f922c81ffa0 /* src/PxPvdObjectModel.h */, - FFFD2c8200087f922c820008 /* src/PxPvdObjectModelInternalTypeDefs.h */, - FFFD2c8200707f922c820070 /* src/PxPvdObjectModelInternalTypes.h */, - FFFD2c8200d87f922c8200d8 /* src/PxPvdObjectModelMetaData.h */, - FFFD2c8201407f922c820140 /* src/PxPvdObjectRegistrar.h */, - FFFD2c8201a87f922c8201a8 /* src/PxPvdProfileZoneClient.h */, - FFFD2c8202107f922c820210 /* src/PxPvdUserRenderImpl.h */, - FFFD2c8202787f922c820278 /* src/PxPvdUserRenderTypes.h */, + FFFD309af8007fc3309af800 /* include/PsPvd.h */, + FFFD309af8687fc3309af868 /* include/PxProfileAllocatorWrapper.h */, + FFFD309af8d07fc3309af8d0 /* include/PxPvdClient.h */, + FFFD309af9387fc3309af938 /* include/PxPvdDataStream.h */, + FFFD309af9a07fc3309af9a0 /* include/PxPvdDataStreamHelpers.h */, + FFFD309afa087fc3309afa08 /* include/PxPvdErrorCodes.h */, + FFFD309afa707fc3309afa70 /* include/PxPvdObjectModelBaseTypes.h */, + FFFD309afad87fc3309afad8 /* include/PxPvdRenderBuffer.h */, + FFFD309afb407fc3309afb40 /* include/PxPvdUserRenderer.h */, + FFFD309afba87fc3309afba8 /* src/PxProfileEventImpl.cpp */, + FFFD309afc107fc3309afc10 /* src/PxPvd.cpp */, + FFFD309afc787fc3309afc78 /* src/PxPvdDataStream.cpp */, + FFFD309afce07fc3309afce0 /* src/PxPvdDefaultFileTransport.cpp */, + FFFD309afd487fc3309afd48 /* src/PxPvdDefaultSocketTransport.cpp */, + FFFD309afdb07fc3309afdb0 /* src/PxPvdImpl.cpp */, + FFFD309afe187fc3309afe18 /* src/PxPvdMemClient.cpp */, + FFFD309afe807fc3309afe80 /* src/PxPvdObjectModelMetaData.cpp */, + FFFD309afee87fc3309afee8 /* src/PxPvdObjectRegistrar.cpp */, + FFFD309aff507fc3309aff50 /* src/PxPvdProfileZoneClient.cpp */, + FFFD309affb87fc3309affb8 /* src/PxPvdUserRenderer.cpp */, + FFFD309b00207fc3309b0020 /* src/PxProfileBase.h */, + FFFD309b00887fc3309b0088 /* src/PxProfileCompileTimeEventFilter.h */, + FFFD309b00f07fc3309b00f0 /* src/PxProfileContextProvider.h */, + FFFD309b01587fc3309b0158 /* src/PxProfileContextProviderImpl.h */, + FFFD309b01c07fc3309b01c0 /* src/PxProfileDataBuffer.h */, + FFFD309b02287fc3309b0228 /* src/PxProfileDataParsing.h */, + FFFD309b02907fc3309b0290 /* src/PxProfileEventBuffer.h */, + FFFD309b02f87fc3309b02f8 /* src/PxProfileEventBufferAtomic.h */, + FFFD309b03607fc3309b0360 /* src/PxProfileEventBufferClient.h */, + FFFD309b03c87fc3309b03c8 /* src/PxProfileEventBufferClientManager.h */, + FFFD309b04307fc3309b0430 /* src/PxProfileEventFilter.h */, + FFFD309b04987fc3309b0498 /* src/PxProfileEventHandler.h */, + FFFD309b05007fc3309b0500 /* src/PxProfileEventId.h */, + FFFD309b05687fc3309b0568 /* src/PxProfileEventMutex.h */, + FFFD309b05d07fc3309b05d0 /* src/PxProfileEventNames.h */, + FFFD309b06387fc3309b0638 /* src/PxProfileEventParser.h */, + FFFD309b06a07fc3309b06a0 /* src/PxProfileEventSender.h */, + FFFD309b07087fc3309b0708 /* src/PxProfileEventSerialization.h */, + FFFD309b07707fc3309b0770 /* src/PxProfileEventSystem.h */, + FFFD309b07d87fc3309b07d8 /* src/PxProfileEvents.h */, + FFFD309b08407fc3309b0840 /* src/PxProfileMemory.h */, + FFFD309b08a87fc3309b08a8 /* src/PxProfileMemoryBuffer.h */, + FFFD309b09107fc3309b0910 /* src/PxProfileMemoryEventBuffer.h */, + FFFD309b09787fc3309b0978 /* src/PxProfileMemoryEventParser.h */, + FFFD309b09e07fc3309b09e0 /* src/PxProfileMemoryEventRecorder.h */, + FFFD309b0a487fc3309b0a48 /* src/PxProfileMemoryEventReflexiveWriter.h */, + FFFD309b0ab07fc3309b0ab0 /* src/PxProfileMemoryEventSummarizer.h */, + FFFD309b0b187fc3309b0b18 /* src/PxProfileMemoryEventTypes.h */, + FFFD309b0b807fc3309b0b80 /* src/PxProfileMemoryEvents.h */, + FFFD309b0be87fc3309b0be8 /* src/PxProfileScopedEvent.h */, + FFFD309b0c507fc3309b0c50 /* src/PxProfileScopedMutexLock.h */, + FFFD309b0cb87fc3309b0cb8 /* src/PxProfileZone.h */, + FFFD309b0d207fc3309b0d20 /* src/PxProfileZoneImpl.h */, + FFFD309b0d887fc3309b0d88 /* src/PxProfileZoneManager.h */, + FFFD309b0df07fc3309b0df0 /* src/PxProfileZoneManagerImpl.h */, + FFFD309b0e587fc3309b0e58 /* src/PxPvdBits.h */, + FFFD309b0ec07fc3309b0ec0 /* src/PxPvdByteStreams.h */, + FFFD309b0f287fc3309b0f28 /* src/PxPvdCommStreamEventSink.h */, + FFFD309b0f907fc3309b0f90 /* src/PxPvdCommStreamEvents.h */, + FFFD309b0ff87fc3309b0ff8 /* src/PxPvdCommStreamSDKEventTypes.h */, + FFFD309b10607fc3309b1060 /* src/PxPvdCommStreamTypes.h */, + FFFD309b10c87fc3309b10c8 /* src/PxPvdDefaultFileTransport.h */, + FFFD309b11307fc3309b1130 /* src/PxPvdDefaultSocketTransport.h */, + FFFD309b11987fc3309b1198 /* src/PxPvdFoundation.h */, + FFFD309b12007fc3309b1200 /* src/PxPvdImpl.h */, + FFFD309b12687fc3309b1268 /* src/PxPvdInternalByteStreams.h */, + FFFD309b12d07fc3309b12d0 /* src/PxPvdMarshalling.h */, + FFFD309b13387fc3309b1338 /* src/PxPvdMemClient.h */, + FFFD309b13a07fc3309b13a0 /* src/PxPvdObjectModel.h */, + FFFD309b14087fc3309b1408 /* src/PxPvdObjectModelInternalTypeDefs.h */, + FFFD309b14707fc3309b1470 /* src/PxPvdObjectModelInternalTypes.h */, + FFFD309b14d87fc3309b14d8 /* src/PxPvdObjectModelMetaData.h */, + FFFD309b15407fc3309b1540 /* src/PxPvdObjectRegistrar.h */, + FFFD309b15a87fc3309b15a8 /* src/PxPvdProfileZoneClient.h */, + FFFD309b16107fc3309b1610 /* src/PxPvdUserRenderImpl.h */, + FFFD309b16787fc3309b1678 /* src/PxPvdUserRenderTypes.h */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2c12cc907f922c12cc90 /* LowLevel */ = { + FFFB3300a7207fc33300a720 /* LowLevel */ = { isa = PBXGroup; children = ( - FFFB2c13f8207f922c13f820 /* API Source */, - FFFB2c13f8487f922c13f848 /* API Includes */, - FFFB2c13f8707f922c13f870 /* Software Source */, - FFFB2c13f8987f922c13f898 /* Software Includes */, - FFFB2c13f8c07f922c13f8c0 /* Common Source */, - FFFB2c13f8e87f922c13f8e8 /* Common Includes */, + FFFB3300ef307fc33300ef30 /* API Source */, + FFFB3300ef587fc33300ef58 /* API Includes */, + FFFB3300ef807fc33300ef80 /* Software Source */, + FFFB3300efa87fc33300efa8 /* Software Includes */, + FFFB3300efd07fc33300efd0 /* Common Source */, + FFFB3300eff87fc33300eff8 /* Common Includes */, ); name = "LowLevel"; sourceTree = "<group>"; }; - FFFB2c13f8207f922c13f820 /* API Source */ = { + FFFB3300ef307fc33300ef30 /* API Source */ = { isa = PBXGroup; children = ( - FFFD2c13eca07f922c13eca0 /* px_globals.cpp */, + FFFD3300ee807fc33300ee80 /* px_globals.cpp */, ); name = "API Source"; sourceTree = SOURCE_ROOT; }; - FFFB2c13f8487f922c13f848 /* API Includes */ = { + FFFB3300ef587fc33300ef58 /* API Includes */ = { isa = PBXGroup; children = ( - FFFD2c130b107f922c130b10 /* PxsMaterialCore.h */, - FFFD2c130b787f922c130b78 /* PxsMaterialManager.h */, - FFFD2c130be07f922c130be0 /* PxvConfig.h */, - FFFD2c130c487f922c130c48 /* PxvContext.h */, - FFFD2c130cb07f922c130cb0 /* PxvDynamics.h */, - FFFD2c130d187f922c130d18 /* PxvGeometry.h */, - FFFD2c130d807f922c130d80 /* PxvGlobals.h */, - FFFD2c130de87f922c130de8 /* PxvManager.h */, - FFFD2c130e507f922c130e50 /* PxvSimStats.h */, + FFFD330106907fc333010690 /* PxsMaterialCore.h */, + FFFD330106f87fc3330106f8 /* PxsMaterialManager.h */, + FFFD330107607fc333010760 /* PxvConfig.h */, + FFFD330107c87fc3330107c8 /* PxvContext.h */, + FFFD330108307fc333010830 /* PxvDynamics.h */, + FFFD330108987fc333010898 /* PxvGeometry.h */, + FFFD330109007fc333010900 /* PxvGlobals.h */, + FFFD330109687fc333010968 /* PxvManager.h */, + FFFD330109d07fc3330109d0 /* PxvSimStats.h */, ); name = "API Includes"; sourceTree = SOURCE_ROOT; }; - FFFB2c13f8707f922c13f870 /* Software Source */ = { + FFFB3300ef807fc33300ef80 /* Software Source */ = { isa = PBXGroup; children = ( - FFFD2c140f807f922c140f80 /* PxsCCD.cpp */, - FFFD2c140fe87f922c140fe8 /* PxsContactManager.cpp */, - FFFD2c1410507f922c141050 /* PxsContext.cpp */, - FFFD2c1410b87f922c1410b8 /* PxsDefaultMemoryManager.cpp */, - FFFD2c1411207f922c141120 /* PxsIslandSim.cpp */, - FFFD2c1411887f922c141188 /* PxsMaterialCombiner.cpp */, - FFFD2c1411f07f922c1411f0 /* PxsNphaseImplementationContext.cpp */, - FFFD2c1412587f922c141258 /* PxsSimpleIslandManager.cpp */, + FFFD330118007fc333011800 /* PxsCCD.cpp */, + FFFD330118687fc333011868 /* PxsContactManager.cpp */, + FFFD330118d07fc3330118d0 /* PxsContext.cpp */, + FFFD330119387fc333011938 /* PxsDefaultMemoryManager.cpp */, + FFFD330119a07fc3330119a0 /* PxsIslandSim.cpp */, + FFFD33011a087fc333011a08 /* PxsMaterialCombiner.cpp */, + FFFD33011a707fc333011a70 /* PxsNphaseImplementationContext.cpp */, + FFFD33011ad87fc333011ad8 /* PxsSimpleIslandManager.cpp */, ); name = "Software Source"; sourceTree = SOURCE_ROOT; }; - FFFB2c13f8987f922c13f898 /* Software Includes */ = { + FFFB3300efa87fc33300efa8 /* Software Includes */ = { isa = PBXGroup; children = ( - FFFD2b9b0c007f922b9b0c00 /* PxsBodySim.h */, - FFFD2b9b0c687f922b9b0c68 /* PxsCCD.h */, - FFFD2b9b0cd07f922b9b0cd0 /* PxsContactManager.h */, - FFFD2b9b0d387f922b9b0d38 /* PxsContactManagerState.h */, - FFFD2b9b0da07f922b9b0da0 /* PxsContext.h */, - FFFD2b9b0e087f922b9b0e08 /* PxsDefaultMemoryManager.h */, - FFFD2b9b0e707f922b9b0e70 /* PxsHeapMemoryAllocator.h */, - FFFD2b9b0ed87f922b9b0ed8 /* PxsIncrementalConstraintPartitioning.h */, - FFFD2b9b0f407f922b9b0f40 /* PxsIslandManagerTypes.h */, - FFFD2b9b0fa87f922b9b0fa8 /* PxsIslandSim.h */, - FFFD2b9b10107f922b9b1010 /* PxsKernelWrangler.h */, - FFFD2b9b10787f922b9b1078 /* PxsMaterialCombiner.h */, - FFFD2b9b10e07f922b9b10e0 /* PxsMemoryManager.h */, - FFFD2b9b11487f922b9b1148 /* PxsNphaseImplementationContext.h */, - FFFD2b9b11b07f922b9b11b0 /* PxsRigidBody.h */, - FFFD2b9b12187f922b9b1218 /* PxsShapeSim.h */, - FFFD2b9b12807f922b9b1280 /* PxsSimpleIslandManager.h */, - FFFD2b9b12e87f922b9b12e8 /* PxsSimulationController.h */, - FFFD2b9b13507f922b9b1350 /* PxsTransformCache.h */, - FFFD2b9b13b87f922b9b13b8 /* PxvNphaseImplementationContext.h */, + FFFD33805a007fc333805a00 /* PxsBodySim.h */, + FFFD33805a687fc333805a68 /* PxsCCD.h */, + FFFD33805ad07fc333805ad0 /* PxsContactManager.h */, + FFFD33805b387fc333805b38 /* PxsContactManagerState.h */, + FFFD33805ba07fc333805ba0 /* PxsContext.h */, + FFFD33805c087fc333805c08 /* PxsDefaultMemoryManager.h */, + FFFD33805c707fc333805c70 /* PxsHeapMemoryAllocator.h */, + FFFD33805cd87fc333805cd8 /* PxsIncrementalConstraintPartitioning.h */, + FFFD33805d407fc333805d40 /* PxsIslandManagerTypes.h */, + FFFD33805da87fc333805da8 /* PxsIslandSim.h */, + FFFD33805e107fc333805e10 /* PxsKernelWrangler.h */, + FFFD33805e787fc333805e78 /* PxsMaterialCombiner.h */, + FFFD33805ee07fc333805ee0 /* PxsMemoryManager.h */, + FFFD33805f487fc333805f48 /* PxsNphaseImplementationContext.h */, + FFFD33805fb07fc333805fb0 /* PxsRigidBody.h */, + FFFD338060187fc333806018 /* PxsShapeSim.h */, + FFFD338060807fc333806080 /* PxsSimpleIslandManager.h */, + FFFD338060e87fc3338060e8 /* PxsSimulationController.h */, + FFFD338061507fc333806150 /* PxsTransformCache.h */, + FFFD338061b87fc3338061b8 /* PxvNphaseImplementationContext.h */, ); name = "Software Includes"; sourceTree = SOURCE_ROOT; }; - FFFB2c13f8c07f922c13f8c0 /* Common Source */ = { + FFFB3300efd07fc33300efd0 /* Common Source */ = { isa = PBXGroup; children = ( - FFFD2b9af6007f922b9af600 /* collision/PxcContact.cpp */, - FFFD2b9af6687f922b9af668 /* pipeline/PxcContactCache.cpp */, - FFFD2b9af6d07f922b9af6d0 /* pipeline/PxcContactMethodImpl.cpp */, - FFFD2b9af7387f922b9af738 /* pipeline/PxcMaterialHeightField.cpp */, - FFFD2b9af7a07f922b9af7a0 /* pipeline/PxcMaterialMesh.cpp */, - FFFD2b9af8087f922b9af808 /* pipeline/PxcMaterialMethodImpl.cpp */, - FFFD2b9af8707f922b9af870 /* pipeline/PxcMaterialShape.cpp */, - FFFD2b9af8d87f922b9af8d8 /* pipeline/PxcNpBatch.cpp */, - FFFD2b9af9407f922b9af940 /* pipeline/PxcNpCacheStreamPair.cpp */, - FFFD2b9af9a87f922b9af9a8 /* pipeline/PxcNpContactPrepShared.cpp */, - FFFD2b9afa107f922b9afa10 /* pipeline/PxcNpMemBlockPool.cpp */, - FFFD2b9afa787f922b9afa78 /* pipeline/PxcNpThreadContext.cpp */, + FFFD33808e007fc333808e00 /* collision/PxcContact.cpp */, + FFFD33808e687fc333808e68 /* pipeline/PxcContactCache.cpp */, + FFFD33808ed07fc333808ed0 /* pipeline/PxcContactMethodImpl.cpp */, + FFFD33808f387fc333808f38 /* pipeline/PxcMaterialHeightField.cpp */, + FFFD33808fa07fc333808fa0 /* pipeline/PxcMaterialMesh.cpp */, + FFFD338090087fc333809008 /* pipeline/PxcMaterialMethodImpl.cpp */, + FFFD338090707fc333809070 /* pipeline/PxcMaterialShape.cpp */, + FFFD338090d87fc3338090d8 /* pipeline/PxcNpBatch.cpp */, + FFFD338091407fc333809140 /* pipeline/PxcNpCacheStreamPair.cpp */, + FFFD338091a87fc3338091a8 /* pipeline/PxcNpContactPrepShared.cpp */, + FFFD338092107fc333809210 /* pipeline/PxcNpMemBlockPool.cpp */, + FFFD338092787fc333809278 /* pipeline/PxcNpThreadContext.cpp */, ); name = "Common Source"; sourceTree = SOURCE_ROOT; }; - FFFB2c13f8e87f922c13f8e8 /* Common Includes */ = { + FFFB3300eff87fc33300eff8 /* Common Includes */ = { isa = PBXGroup; children = ( - FFFD2b9afe007f922b9afe00 /* collision/PxcContactMethodImpl.h */, - FFFD2b9afe687f922b9afe68 /* pipeline/PxcCCDStateStreamPair.h */, - FFFD2b9afed07f922b9afed0 /* pipeline/PxcConstraintBlockStream.h */, - FFFD2b9aff387f922b9aff38 /* pipeline/PxcContactCache.h */, - FFFD2b9affa07f922b9affa0 /* pipeline/PxcMaterialMethodImpl.h */, - FFFD2b9b00087f922b9b0008 /* pipeline/PxcNpBatch.h */, - FFFD2b9b00707f922b9b0070 /* pipeline/PxcNpCache.h */, - FFFD2b9b00d87f922b9b00d8 /* pipeline/PxcNpCacheStreamPair.h */, - FFFD2b9b01407f922b9b0140 /* pipeline/PxcNpContactPrepShared.h */, - FFFD2b9b01a87f922b9b01a8 /* pipeline/PxcNpMemBlockPool.h */, - FFFD2b9b02107f922b9b0210 /* pipeline/PxcNpThreadContext.h */, - FFFD2b9b02787f922b9b0278 /* pipeline/PxcNpWorkUnit.h */, - FFFD2b9b02e07f922b9b02e0 /* pipeline/PxcRigidBody.h */, - FFFD2b9b03487f922b9b0348 /* utils/PxcScratchAllocator.h */, - FFFD2b9b03b07f922b9b03b0 /* utils/PxcThreadCoherentCache.h */, + FFFD33809c007fc333809c00 /* collision/PxcContactMethodImpl.h */, + FFFD33809c687fc333809c68 /* pipeline/PxcCCDStateStreamPair.h */, + FFFD33809cd07fc333809cd0 /* pipeline/PxcConstraintBlockStream.h */, + FFFD33809d387fc333809d38 /* pipeline/PxcContactCache.h */, + FFFD33809da07fc333809da0 /* pipeline/PxcMaterialMethodImpl.h */, + FFFD33809e087fc333809e08 /* pipeline/PxcNpBatch.h */, + FFFD33809e707fc333809e70 /* pipeline/PxcNpCache.h */, + FFFD33809ed87fc333809ed8 /* pipeline/PxcNpCacheStreamPair.h */, + FFFD33809f407fc333809f40 /* pipeline/PxcNpContactPrepShared.h */, + FFFD33809fa87fc333809fa8 /* pipeline/PxcNpMemBlockPool.h */, + FFFD3380a0107fc33380a010 /* pipeline/PxcNpThreadContext.h */, + FFFD3380a0787fc33380a078 /* pipeline/PxcNpWorkUnit.h */, + FFFD3380a0e07fc33380a0e0 /* pipeline/PxcRigidBody.h */, + FFFD3380a1487fc33380a148 /* utils/PxcScratchAllocator.h */, + FFFD3380a1b07fc33380a1b0 /* utils/PxcThreadCoherentCache.h */, ); name = "Common Includes"; sourceTree = SOURCE_ROOT; }; - FFFB2c60e6807f922c60e680 /* LowLevelAABB */ = { + FFFB317bb4a07fc3317bb4a0 /* LowLevelAABB */ = { isa = PBXGroup; children = ( - FFFB2c60f2c07f922c60f2c0 /* include */, - FFFB2c60f2e87f922c60f2e8 /* src */, + FFFB317b97407fc3317b9740 /* include */, + FFFB317b97687fc3317b9768 /* src */, ); name = "LowLevelAABB"; sourceTree = "<group>"; }; - FFFB2c60f2c07f922c60f2c0 /* include */ = { + FFFB317b97407fc3317b9740 /* include */ = { isa = PBXGroup; children = ( - FFFD2c610dc07f922c610dc0 /* BpAABBManagerTasks.h */, - FFFD2c610e287f922c610e28 /* BpBroadPhase.h */, - FFFD2c610e907f922c610e90 /* BpBroadPhaseUpdate.h */, - FFFD2c610ef87f922c610ef8 /* BpSimpleAABBManager.h */, + FFFD317b3c107fc3317b3c10 /* BpAABBManagerTasks.h */, + FFFD317b3c787fc3317b3c78 /* BpBroadPhase.h */, + FFFD317b3ce07fc3317b3ce0 /* BpBroadPhaseUpdate.h */, + FFFD317b3d487fc3317b3d48 /* BpSimpleAABBManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2c60f2e87f922c60f2e8 /* src */ = { + FFFB317b97687fc3317b9768 /* src */ = { isa = PBXGroup; children = ( - FFFD2d0266007f922d026600 /* BpBroadPhaseMBP.h */, - FFFD2d0266687f922d026668 /* BpBroadPhaseMBPCommon.h */, - FFFD2d0266d07f922d0266d0 /* BpBroadPhaseSap.h */, - FFFD2d0267387f922d026738 /* BpBroadPhaseSapAux.h */, - FFFD2d0267a07f922d0267a0 /* BpMBPTasks.h */, - FFFD2d0268087f922d026808 /* BpSAPTasks.h */, - FFFD2d0268707f922d026870 /* BpBroadPhase.cpp */, - FFFD2d0268d87f922d0268d8 /* BpBroadPhaseMBP.cpp */, - FFFD2d0269407f922d026940 /* BpBroadPhaseSap.cpp */, - FFFD2d0269a87f922d0269a8 /* BpBroadPhaseSapAux.cpp */, - FFFD2d026a107f922d026a10 /* BpMBPTasks.cpp */, - FFFD2d026a787f922d026a78 /* BpSAPTasks.cpp */, - FFFD2d026ae07f922d026ae0 /* BpSimpleAABBManager.cpp */, + FFFD309a82007fc3309a8200 /* BpBroadPhaseMBP.h */, + FFFD309a82687fc3309a8268 /* BpBroadPhaseMBPCommon.h */, + FFFD309a82d07fc3309a82d0 /* BpBroadPhaseSap.h */, + FFFD309a83387fc3309a8338 /* BpBroadPhaseSapAux.h */, + FFFD309a83a07fc3309a83a0 /* BpMBPTasks.h */, + FFFD309a84087fc3309a8408 /* BpSAPTasks.h */, + FFFD309a84707fc3309a8470 /* BpBroadPhase.cpp */, + FFFD309a84d87fc3309a84d8 /* BpBroadPhaseMBP.cpp */, + FFFD309a85407fc3309a8540 /* BpBroadPhaseSap.cpp */, + FFFD309a85a87fc3309a85a8 /* BpBroadPhaseSapAux.cpp */, + FFFD309a86107fc3309a8610 /* BpMBPTasks.cpp */, + FFFD309a86787fc3309a8678 /* BpSAPTasks.cpp */, + FFFD309a86e07fc3309a86e0 /* BpSimpleAABBManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2c0b4e307f922c0b4e30 /* LowLevelDynamics */ = { + FFFB33032f907fc333032f90 /* LowLevelDynamics */ = { isa = PBXGroup; children = ( - FFFB2c0b6b707f922c0b6b70 /* Dynamics Source */, - FFFB2c0b6b987f922c0b6b98 /* Dynamics Includes */, - FFFB2c0b6bc07f922c0b6bc0 /* Dynamics Internal Includes */, + FFFB330277b07fc3330277b0 /* Dynamics Source */, + FFFB330277d87fc3330277d8 /* Dynamics Includes */, + FFFB330278007fc333027800 /* Dynamics Internal Includes */, ); name = "LowLevelDynamics"; sourceTree = "<group>"; }; - FFFB2c0b6b707f922c0b6b70 /* Dynamics Source */ = { + FFFB330277b07fc3330277b0 /* Dynamics Source */ = { isa = PBXGroup; children = ( - FFFD2c8272007f922c827200 /* DyArticulation.cpp */, - FFFD2c8272687f922c827268 /* DyArticulationContactPrep.cpp */, - FFFD2c8272d07f922c8272d0 /* DyArticulationContactPrepPF.cpp */, - FFFD2c8273387f922c827338 /* DyArticulationHelper.cpp */, - FFFD2c8273a07f922c8273a0 /* DyArticulationSIMD.cpp */, - FFFD2c8274087f922c827408 /* DyArticulationScalar.cpp */, - FFFD2c8274707f922c827470 /* DyConstraintPartition.cpp */, - FFFD2c8274d87f922c8274d8 /* DyConstraintSetup.cpp */, - FFFD2c8275407f922c827540 /* DyConstraintSetupBlock.cpp */, - FFFD2c8275a87f922c8275a8 /* DyContactPrep.cpp */, - FFFD2c8276107f922c827610 /* DyContactPrep4.cpp */, - FFFD2c8276787f922c827678 /* DyContactPrep4PF.cpp */, - FFFD2c8276e07f922c8276e0 /* DyContactPrepPF.cpp */, - FFFD2c8277487f922c827748 /* DyDynamics.cpp */, - FFFD2c8277b07f922c8277b0 /* DyFrictionCorrelation.cpp */, - FFFD2c8278187f922c827818 /* DyRigidBodyToSolverBody.cpp */, - FFFD2c8278807f922c827880 /* DySolverConstraints.cpp */, - FFFD2c8278e87f922c8278e8 /* DySolverConstraintsBlock.cpp */, - FFFD2c8279507f922c827950 /* DySolverControl.cpp */, - FFFD2c8279b87f922c8279b8 /* DySolverControlPF.cpp */, - FFFD2c827a207f922c827a20 /* DySolverPFConstraints.cpp */, - FFFD2c827a887f922c827a88 /* DySolverPFConstraintsBlock.cpp */, - FFFD2c827af07f922c827af0 /* DyThreadContext.cpp */, - FFFD2c827b587f922c827b58 /* DyThresholdTable.cpp */, + FFFD338126007fc333812600 /* DyArticulation.cpp */, + FFFD338126687fc333812668 /* DyArticulationContactPrep.cpp */, + FFFD338126d07fc3338126d0 /* DyArticulationContactPrepPF.cpp */, + FFFD338127387fc333812738 /* DyArticulationHelper.cpp */, + FFFD338127a07fc3338127a0 /* DyArticulationSIMD.cpp */, + FFFD338128087fc333812808 /* DyArticulationScalar.cpp */, + FFFD338128707fc333812870 /* DyConstraintPartition.cpp */, + FFFD338128d87fc3338128d8 /* DyConstraintSetup.cpp */, + FFFD338129407fc333812940 /* DyConstraintSetupBlock.cpp */, + FFFD338129a87fc3338129a8 /* DyContactPrep.cpp */, + FFFD33812a107fc333812a10 /* DyContactPrep4.cpp */, + FFFD33812a787fc333812a78 /* DyContactPrep4PF.cpp */, + FFFD33812ae07fc333812ae0 /* DyContactPrepPF.cpp */, + FFFD33812b487fc333812b48 /* DyDynamics.cpp */, + FFFD33812bb07fc333812bb0 /* DyFrictionCorrelation.cpp */, + FFFD33812c187fc333812c18 /* DyRigidBodyToSolverBody.cpp */, + FFFD33812c807fc333812c80 /* DySolverConstraints.cpp */, + FFFD33812ce87fc333812ce8 /* DySolverConstraintsBlock.cpp */, + FFFD33812d507fc333812d50 /* DySolverControl.cpp */, + FFFD33812db87fc333812db8 /* DySolverControlPF.cpp */, + FFFD33812e207fc333812e20 /* DySolverPFConstraints.cpp */, + FFFD33812e887fc333812e88 /* DySolverPFConstraintsBlock.cpp */, + FFFD33812ef07fc333812ef0 /* DyThreadContext.cpp */, + FFFD33812f587fc333812f58 /* DyThresholdTable.cpp */, ); name = "Dynamics Source"; sourceTree = SOURCE_ROOT; }; - FFFB2c0b6b987f922c0b6b98 /* Dynamics Includes */ = { + FFFB330277d87fc3330277d8 /* Dynamics Includes */ = { isa = PBXGroup; children = ( - FFFD2c05ae907f922c05ae90 /* DyArticulation.h */, - FFFD2c05aef87f922c05aef8 /* DyConstraint.h */, - FFFD2c05af607f922c05af60 /* DyConstraintWriteBack.h */, - FFFD2c05afc87f922c05afc8 /* DyContext.h */, - FFFD2c05b0307f922c05b030 /* DySleepingConfigulation.h */, - FFFD2c05b0987f922c05b098 /* DyThresholdTable.h */, + FFFD33036f007fc333036f00 /* DyArticulation.h */, + FFFD33036f687fc333036f68 /* DyConstraint.h */, + FFFD33036fd07fc333036fd0 /* DyConstraintWriteBack.h */, + FFFD330370387fc333037038 /* DyContext.h */, + FFFD330370a07fc3330370a0 /* DySleepingConfigulation.h */, + FFFD330371087fc333037108 /* DyThresholdTable.h */, ); name = "Dynamics Includes"; sourceTree = SOURCE_ROOT; }; - FFFB2c0b6bc07f922c0b6bc0 /* Dynamics Internal Includes */ = { + FFFB330278007fc333027800 /* Dynamics Internal Includes */ = { isa = PBXGroup; children = ( - FFFD2c8284007f922c828400 /* DyArticulationContactPrep.h */, - FFFD2c8284687f922c828468 /* DyArticulationFnsDebug.h */, - FFFD2c8284d07f922c8284d0 /* DyArticulationFnsScalar.h */, - FFFD2c8285387f922c828538 /* DyArticulationFnsSimd.h */, - FFFD2c8285a07f922c8285a0 /* DyArticulationHelper.h */, - FFFD2c8286087f922c828608 /* DyArticulationPImpl.h */, - FFFD2c8286707f922c828670 /* DyArticulationReference.h */, - FFFD2c8286d87f922c8286d8 /* DyArticulationScalar.h */, - FFFD2c8287407f922c828740 /* DyArticulationUtils.h */, - FFFD2c8287a87f922c8287a8 /* DyBodyCoreIntegrator.h */, - FFFD2c8288107f922c828810 /* DyConstraintPartition.h */, - FFFD2c8288787f922c828878 /* DyConstraintPrep.h */, - FFFD2c8288e07f922c8288e0 /* DyContactPrep.h */, - FFFD2c8289487f922c828948 /* DyContactPrepShared.h */, - FFFD2c8289b07f922c8289b0 /* DyContactReduction.h */, - FFFD2c828a187f922c828a18 /* DyCorrelationBuffer.h */, - FFFD2c828a807f922c828a80 /* DyDynamics.h */, - FFFD2c828ae87f922c828ae8 /* DyFrictionPatch.h */, - FFFD2c828b507f922c828b50 /* DyFrictionPatchStreamPair.h */, - FFFD2c828bb87f922c828bb8 /* DySolverBody.h */, - FFFD2c828c207f922c828c20 /* DySolverConstraint1D.h */, - FFFD2c828c887f922c828c88 /* DySolverConstraint1D4.h */, - FFFD2c828cf07f922c828cf0 /* DySolverConstraintDesc.h */, - FFFD2c828d587f922c828d58 /* DySolverConstraintExtShared.h */, - FFFD2c828dc07f922c828dc0 /* DySolverConstraintTypes.h */, - FFFD2c828e287f922c828e28 /* DySolverConstraintsShared.h */, - FFFD2c828e907f922c828e90 /* DySolverContact.h */, - FFFD2c828ef87f922c828ef8 /* DySolverContact4.h */, - FFFD2c828f607f922c828f60 /* DySolverContactPF.h */, - FFFD2c828fc87f922c828fc8 /* DySolverContactPF4.h */, - FFFD2c8290307f922c829030 /* DySolverContext.h */, - FFFD2c8290987f922c829098 /* DySolverControl.h */, - FFFD2c8291007f922c829100 /* DySolverControlPF.h */, - FFFD2c8291687f922c829168 /* DySolverCore.h */, - FFFD2c8291d07f922c8291d0 /* DySolverExt.h */, - FFFD2c8292387f922c829238 /* DySpatial.h */, - FFFD2c8292a07f922c8292a0 /* DyThreadContext.h */, + FFFD338138007fc333813800 /* DyArticulationContactPrep.h */, + FFFD338138687fc333813868 /* DyArticulationFnsDebug.h */, + FFFD338138d07fc3338138d0 /* DyArticulationFnsScalar.h */, + FFFD338139387fc333813938 /* DyArticulationFnsSimd.h */, + FFFD338139a07fc3338139a0 /* DyArticulationHelper.h */, + FFFD33813a087fc333813a08 /* DyArticulationPImpl.h */, + FFFD33813a707fc333813a70 /* DyArticulationReference.h */, + FFFD33813ad87fc333813ad8 /* DyArticulationScalar.h */, + FFFD33813b407fc333813b40 /* DyArticulationUtils.h */, + FFFD33813ba87fc333813ba8 /* DyBodyCoreIntegrator.h */, + FFFD33813c107fc333813c10 /* DyConstraintPartition.h */, + FFFD33813c787fc333813c78 /* DyConstraintPrep.h */, + FFFD33813ce07fc333813ce0 /* DyContactPrep.h */, + FFFD33813d487fc333813d48 /* DyContactPrepShared.h */, + FFFD33813db07fc333813db0 /* DyContactReduction.h */, + FFFD33813e187fc333813e18 /* DyCorrelationBuffer.h */, + FFFD33813e807fc333813e80 /* DyDynamics.h */, + FFFD33813ee87fc333813ee8 /* DyFrictionPatch.h */, + FFFD33813f507fc333813f50 /* DyFrictionPatchStreamPair.h */, + FFFD33813fb87fc333813fb8 /* DySolverBody.h */, + FFFD338140207fc333814020 /* DySolverConstraint1D.h */, + FFFD338140887fc333814088 /* DySolverConstraint1D4.h */, + FFFD338140f07fc3338140f0 /* DySolverConstraintDesc.h */, + FFFD338141587fc333814158 /* DySolverConstraintExtShared.h */, + FFFD338141c07fc3338141c0 /* DySolverConstraintTypes.h */, + FFFD338142287fc333814228 /* DySolverConstraintsShared.h */, + FFFD338142907fc333814290 /* DySolverContact.h */, + FFFD338142f87fc3338142f8 /* DySolverContact4.h */, + FFFD338143607fc333814360 /* DySolverContactPF.h */, + FFFD338143c87fc3338143c8 /* DySolverContactPF4.h */, + FFFD338144307fc333814430 /* DySolverContext.h */, + FFFD338144987fc333814498 /* DySolverControl.h */, + FFFD338145007fc333814500 /* DySolverControlPF.h */, + FFFD338145687fc333814568 /* DySolverCore.h */, + FFFD338145d07fc3338145d0 /* DySolverExt.h */, + FFFD338146387fc333814638 /* DySpatial.h */, + FFFD338146a07fc3338146a0 /* DyThreadContext.h */, ); name = "Dynamics Internal Includes"; sourceTree = SOURCE_ROOT; }; - FFFB2c62b3607f922c62b360 /* LowLevelCloth */ = { + FFFB310c7ab07fc3310c7ab0 /* LowLevelCloth */ = { isa = PBXGroup; children = ( - FFFB2c60c3c07f922c60c3c0 /* include */, - FFFB2c60c3e87f922c60c3e8 /* src */, + FFFB310bd1707fc3310bd170 /* include */, + FFFB310bd1987fc3310bd198 /* src */, ); name = "LowLevelCloth"; sourceTree = "<group>"; }; - FFFB2c60c3c07f922c60c3c0 /* include */ = { + FFFB310bd1707fc3310bd170 /* include */ = { isa = PBXGroup; children = ( - FFFD2c6017507f922c601750 /* Cloth.h */, - FFFD2c6017b87f922c6017b8 /* Fabric.h */, - FFFD2c6018207f922c601820 /* Factory.h */, - FFFD2c6018887f922c601888 /* PhaseConfig.h */, - FFFD2c6018f07f922c6018f0 /* Range.h */, - FFFD2c6019587f922c601958 /* Solver.h */, - FFFD2c6019c07f922c6019c0 /* Types.h */, + FFFD310bda207fc3310bda20 /* Cloth.h */, + FFFD310bda887fc3310bda88 /* Fabric.h */, + FFFD310bdaf07fc3310bdaf0 /* Factory.h */, + FFFD310bdb587fc3310bdb58 /* PhaseConfig.h */, + FFFD310bdbc07fc3310bdbc0 /* Range.h */, + FFFD310bdc287fc3310bdc28 /* Solver.h */, + FFFD310bdc907fc3310bdc90 /* Types.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2c60c3e87f922c60c3e8 /* src */ = { + FFFB310bd1987fc3310bd198 /* src */ = { isa = PBXGroup; children = ( - FFFD2d0306007f922d030600 /* Allocator.h */, - FFFD2d0306687f922d030668 /* Array.h */, - FFFD2d0306d07f922d0306d0 /* BoundingBox.h */, - FFFD2d0307387f922d030738 /* ClothBase.h */, - FFFD2d0307a07f922d0307a0 /* ClothImpl.h */, - FFFD2d0308087f922d030808 /* IndexPair.h */, - FFFD2d0308707f922d030870 /* IterationState.h */, - FFFD2d0308d87f922d0308d8 /* MovingAverage.h */, - FFFD2d0309407f922d030940 /* PointInterpolator.h */, - FFFD2d0309a87f922d0309a8 /* Simd.h */, - FFFD2d030a107f922d030a10 /* Simd4f.h */, - FFFD2d030a787f922d030a78 /* Simd4i.h */, - FFFD2d030ae07f922d030ae0 /* SimdTypes.h */, - FFFD2d030b487f922d030b48 /* StackAllocator.h */, - FFFD2d030bb07f922d030bb0 /* SwCloth.h */, - FFFD2d030c187f922d030c18 /* SwClothData.h */, - FFFD2d030c807f922d030c80 /* SwCollision.h */, - FFFD2d030ce87f922d030ce8 /* SwCollisionHelpers.h */, - FFFD2d030d507f922d030d50 /* SwFabric.h */, - FFFD2d030db87f922d030db8 /* SwFactory.h */, - FFFD2d030e207f922d030e20 /* SwInterCollision.h */, - FFFD2d030e887f922d030e88 /* SwSelfCollision.h */, - FFFD2d030ef07f922d030ef0 /* SwSolver.h */, - FFFD2d030f587f922d030f58 /* SwSolverKernel.h */, - FFFD2d030fc07f922d030fc0 /* TripletScheduler.h */, - FFFD2d0310287f922d031028 /* Vec4T.h */, - FFFD2d0310907f922d031090 /* Allocator.cpp */, - FFFD2d0310f87f922d0310f8 /* Factory.cpp */, - FFFD2d0311607f922d031160 /* PhaseConfig.cpp */, - FFFD2d0311c87f922d0311c8 /* SwCloth.cpp */, - FFFD2d0312307f922d031230 /* SwClothData.cpp */, - FFFD2d0312987f922d031298 /* SwCollision.cpp */, - FFFD2d0313007f922d031300 /* SwFabric.cpp */, - FFFD2d0313687f922d031368 /* SwFactory.cpp */, - FFFD2d0313d07f922d0313d0 /* SwInterCollision.cpp */, - FFFD2d0314387f922d031438 /* SwSelfCollision.cpp */, - FFFD2d0314a07f922d0314a0 /* SwSolver.cpp */, - FFFD2d0315087f922d031508 /* SwSolverKernel.cpp */, - FFFD2d0315707f922d031570 /* TripletScheduler.cpp */, + FFFD3181a2007fc33181a200 /* Allocator.h */, + FFFD3181a2687fc33181a268 /* Array.h */, + FFFD3181a2d07fc33181a2d0 /* BoundingBox.h */, + FFFD3181a3387fc33181a338 /* ClothBase.h */, + FFFD3181a3a07fc33181a3a0 /* ClothImpl.h */, + FFFD3181a4087fc33181a408 /* IndexPair.h */, + FFFD3181a4707fc33181a470 /* IterationState.h */, + FFFD3181a4d87fc33181a4d8 /* MovingAverage.h */, + FFFD3181a5407fc33181a540 /* PointInterpolator.h */, + FFFD3181a5a87fc33181a5a8 /* Simd.h */, + FFFD3181a6107fc33181a610 /* Simd4f.h */, + FFFD3181a6787fc33181a678 /* Simd4i.h */, + FFFD3181a6e07fc33181a6e0 /* SimdTypes.h */, + FFFD3181a7487fc33181a748 /* StackAllocator.h */, + FFFD3181a7b07fc33181a7b0 /* SwCloth.h */, + FFFD3181a8187fc33181a818 /* SwClothData.h */, + FFFD3181a8807fc33181a880 /* SwCollision.h */, + FFFD3181a8e87fc33181a8e8 /* SwCollisionHelpers.h */, + FFFD3181a9507fc33181a950 /* SwFabric.h */, + FFFD3181a9b87fc33181a9b8 /* SwFactory.h */, + FFFD3181aa207fc33181aa20 /* SwInterCollision.h */, + FFFD3181aa887fc33181aa88 /* SwSelfCollision.h */, + FFFD3181aaf07fc33181aaf0 /* SwSolver.h */, + FFFD3181ab587fc33181ab58 /* SwSolverKernel.h */, + FFFD3181abc07fc33181abc0 /* TripletScheduler.h */, + FFFD3181ac287fc33181ac28 /* Vec4T.h */, + FFFD3181ac907fc33181ac90 /* Allocator.cpp */, + FFFD3181acf87fc33181acf8 /* Factory.cpp */, + FFFD3181ad607fc33181ad60 /* PhaseConfig.cpp */, + FFFD3181adc87fc33181adc8 /* SwCloth.cpp */, + FFFD3181ae307fc33181ae30 /* SwClothData.cpp */, + FFFD3181ae987fc33181ae98 /* SwCollision.cpp */, + FFFD3181af007fc33181af00 /* SwFabric.cpp */, + FFFD3181af687fc33181af68 /* SwFactory.cpp */, + FFFD3181afd07fc33181afd0 /* SwInterCollision.cpp */, + FFFD3181b0387fc33181b038 /* SwSelfCollision.cpp */, + FFFD3181b0a07fc33181b0a0 /* SwSolver.cpp */, + FFFD3181b1087fc33181b108 /* SwSolverKernel.cpp */, + FFFD3181b1707fc33181b170 /* TripletScheduler.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2c07d5207f922c07d520 /* LowLevelParticles */ = { + FFFB330590907fc333059090 /* LowLevelParticles */ = { isa = PBXGroup; children = ( - FFFB2c0733b07f922c0733b0 /* include */, - FFFB2c0733d87f922c0733d8 /* src */, + FFFB330499d07fc3330499d0 /* include */, + FFFB330499f87fc3330499f8 /* src */, ); name = "LowLevelParticles"; sourceTree = "<group>"; }; - FFFB2c0733b07f922c0733b0 /* include */ = { + FFFB330499d07fc3330499d0 /* include */ = { isa = PBXGroup; children = ( - FFFD2c8262007f922c826200 /* PtBodyTransformVault.h */, - FFFD2c8262687f922c826268 /* PtContext.h */, - FFFD2c8262d07f922c8262d0 /* PtGridCellVector.h */, - FFFD2c8263387f922c826338 /* PtParticle.h */, - FFFD2c8263a07f922c8263a0 /* PtParticleContactManagerStream.h */, - FFFD2c8264087f922c826408 /* PtParticleData.h */, - FFFD2c8264707f922c826470 /* PtParticleShape.h */, - FFFD2c8264d87f922c8264d8 /* PtParticleSystemCore.h */, - FFFD2c8265407f922c826540 /* PtParticleSystemFlags.h */, - FFFD2c8265a87f922c8265a8 /* PtParticleSystemSim.h */, + FFFD3380de007fc33380de00 /* PtBodyTransformVault.h */, + FFFD3380de687fc33380de68 /* PtContext.h */, + FFFD3380ded07fc33380ded0 /* PtGridCellVector.h */, + FFFD3380df387fc33380df38 /* PtParticle.h */, + FFFD3380dfa07fc33380dfa0 /* PtParticleContactManagerStream.h */, + FFFD3380e0087fc33380e008 /* PtParticleData.h */, + FFFD3380e0707fc33380e070 /* PtParticleShape.h */, + FFFD3380e0d87fc33380e0d8 /* PtParticleSystemCore.h */, + FFFD3380e1407fc33380e140 /* PtParticleSystemFlags.h */, + FFFD3380e1a87fc33380e1a8 /* PtParticleSystemSim.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2c0733d87f922c0733d8 /* src */ = { + FFFB330499f87fc3330499f8 /* src */ = { isa = PBXGroup; children = ( - FFFD2c831c007f922c831c00 /* PtBatcher.h */, - FFFD2c831c687f922c831c68 /* PtCollision.h */, - FFFD2c831cd07f922c831cd0 /* PtCollisionData.h */, - FFFD2c831d387f922c831d38 /* PtCollisionHelper.h */, - FFFD2c831da07f922c831da0 /* PtCollisionMethods.h */, - FFFD2c831e087f922c831e08 /* PtCollisionParameters.h */, - FFFD2c831e707f922c831e70 /* PtConfig.h */, - FFFD2c831ed87f922c831ed8 /* PtConstants.h */, - FFFD2c831f407f922c831f40 /* PtContextCpu.h */, - FFFD2c831fa87f922c831fa8 /* PtDynamicHelper.h */, - FFFD2c8320107f922c832010 /* PtDynamics.h */, - FFFD2c8320787f922c832078 /* PtDynamicsKernels.h */, - FFFD2c8320e07f922c8320e0 /* PtDynamicsParameters.h */, - FFFD2c8321487f922c832148 /* PtDynamicsTempBuffers.h */, - FFFD2c8321b07f922c8321b0 /* PtHeightFieldAabbTest.h */, - FFFD2c8322187f922c832218 /* PtPacketSections.h */, - FFFD2c8322807f922c832280 /* PtParticleCell.h */, - FFFD2c8322e87f922c8322e8 /* PtParticleOpcodeCache.h */, - FFFD2c8323507f922c832350 /* PtParticleShapeCpu.h */, - FFFD2c8323b87f922c8323b8 /* PtParticleSystemSimCpu.h */, - FFFD2c8324207f922c832420 /* PtSpatialHash.h */, - FFFD2c8324887f922c832488 /* PtSpatialHashHelper.h */, - FFFD2c8324f07f922c8324f0 /* PtTwoWayData.h */, - FFFD2c8325587f922c832558 /* PtBatcher.cpp */, - FFFD2c8325c07f922c8325c0 /* PtBodyTransformVault.cpp */, - FFFD2c8326287f922c832628 /* PtCollision.cpp */, - FFFD2c8326907f922c832690 /* PtCollisionBox.cpp */, - FFFD2c8326f87f922c8326f8 /* PtCollisionCapsule.cpp */, - FFFD2c8327607f922c832760 /* PtCollisionConvex.cpp */, - FFFD2c8327c87f922c8327c8 /* PtCollisionMesh.cpp */, - FFFD2c8328307f922c832830 /* PtCollisionPlane.cpp */, - FFFD2c8328987f922c832898 /* PtCollisionSphere.cpp */, - FFFD2c8329007f922c832900 /* PtContextCpu.cpp */, - FFFD2c8329687f922c832968 /* PtDynamics.cpp */, - FFFD2c8329d07f922c8329d0 /* PtParticleData.cpp */, - FFFD2c832a387f922c832a38 /* PtParticleShapeCpu.cpp */, - FFFD2c832aa07f922c832aa0 /* PtParticleSystemSimCpu.cpp */, - FFFD2c832b087f922c832b08 /* PtSpatialHash.cpp */, - FFFD2c832b707f922c832b70 /* PtSpatialLocalHash.cpp */, + FFFD3381de007fc33381de00 /* PtBatcher.h */, + FFFD3381de687fc33381de68 /* PtCollision.h */, + FFFD3381ded07fc33381ded0 /* PtCollisionData.h */, + FFFD3381df387fc33381df38 /* PtCollisionHelper.h */, + FFFD3381dfa07fc33381dfa0 /* PtCollisionMethods.h */, + FFFD3381e0087fc33381e008 /* PtCollisionParameters.h */, + FFFD3381e0707fc33381e070 /* PtConfig.h */, + FFFD3381e0d87fc33381e0d8 /* PtConstants.h */, + FFFD3381e1407fc33381e140 /* PtContextCpu.h */, + FFFD3381e1a87fc33381e1a8 /* PtDynamicHelper.h */, + FFFD3381e2107fc33381e210 /* PtDynamics.h */, + FFFD3381e2787fc33381e278 /* PtDynamicsKernels.h */, + FFFD3381e2e07fc33381e2e0 /* PtDynamicsParameters.h */, + FFFD3381e3487fc33381e348 /* PtDynamicsTempBuffers.h */, + FFFD3381e3b07fc33381e3b0 /* PtHeightFieldAabbTest.h */, + FFFD3381e4187fc33381e418 /* PtPacketSections.h */, + FFFD3381e4807fc33381e480 /* PtParticleCell.h */, + FFFD3381e4e87fc33381e4e8 /* PtParticleOpcodeCache.h */, + FFFD3381e5507fc33381e550 /* PtParticleShapeCpu.h */, + FFFD3381e5b87fc33381e5b8 /* PtParticleSystemSimCpu.h */, + FFFD3381e6207fc33381e620 /* PtSpatialHash.h */, + FFFD3381e6887fc33381e688 /* PtSpatialHashHelper.h */, + FFFD3381e6f07fc33381e6f0 /* PtTwoWayData.h */, + FFFD3381e7587fc33381e758 /* PtBatcher.cpp */, + FFFD3381e7c07fc33381e7c0 /* PtBodyTransformVault.cpp */, + FFFD3381e8287fc33381e828 /* PtCollision.cpp */, + FFFD3381e8907fc33381e890 /* PtCollisionBox.cpp */, + FFFD3381e8f87fc33381e8f8 /* PtCollisionCapsule.cpp */, + FFFD3381e9607fc33381e960 /* PtCollisionConvex.cpp */, + FFFD3381e9c87fc33381e9c8 /* PtCollisionMesh.cpp */, + FFFD3381ea307fc33381ea30 /* PtCollisionPlane.cpp */, + FFFD3381ea987fc33381ea98 /* PtCollisionSphere.cpp */, + FFFD3381eb007fc33381eb00 /* PtContextCpu.cpp */, + FFFD3381eb687fc33381eb68 /* PtDynamics.cpp */, + FFFD3381ebd07fc33381ebd0 /* PtParticleData.cpp */, + FFFD3381ec387fc33381ec38 /* PtParticleShapeCpu.cpp */, + FFFD3381eca07fc33381eca0 /* PtParticleSystemSimCpu.cpp */, + FFFD3381ed087fc33381ed08 /* PtSpatialHash.cpp */, + FFFD3381ed707fc33381ed70 /* PtSpatialLocalHash.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2c659bf07f922c659bf0 /* PxTask */ = { + FFFB3308d5d07fc33308d5d0 /* PxTask */ = { isa = PBXGroup; children = ( - FFFB2c62ef807f922c62ef80 /* include */, - FFFB2c62efa87f922c62efa8 /* src */, + FFFB330785507fc333078550 /* include */, + FFFB330785787fc333078578 /* src */, ); name = "PxTask"; sourceTree = "<group>"; }; - FFFB2c62ef807f922c62ef80 /* include */ = { + FFFB330785507fc333078550 /* include */ = { isa = PBXGroup; children = ( - FFFD2c6468c07f922c6468c0 /* PxCpuDispatcher.h */, - FFFD2c6469287f922c646928 /* PxGpuDispatcher.h */, - FFFD2c6469907f922c646990 /* PxGpuTask.h */, - FFFD2c6469f87f922c6469f8 /* PxTask.h */, - FFFD2c646a607f922c646a60 /* PxTaskDefine.h */, - FFFD2c646ac87f922c646ac8 /* PxTaskManager.h */, + FFFD330790d07fc3330790d0 /* PxCpuDispatcher.h */, + FFFD330791387fc333079138 /* PxGpuDispatcher.h */, + FFFD330791a07fc3330791a0 /* PxGpuTask.h */, + FFFD330792087fc333079208 /* PxTask.h */, + FFFD330792707fc333079270 /* PxTaskDefine.h */, + FFFD330792d87fc3330792d8 /* PxTaskManager.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2c62efa87f922c62efa8 /* src */ = { + FFFB330785787fc333078578 /* src */ = { isa = PBXGroup; children = ( - FFFD2c62efd07f922c62efd0 /* src/TaskManager.cpp */, + FFFD330794507fc333079450 /* src/TaskManager.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; }; - FFFB2d9e21807f922d9e2180 /* PsFastXml */ = { + FFFB3152c5407fc33152c540 /* PsFastXml */ = { isa = PBXGroup; children = ( - FFFB2d9e65c07f922d9e65c0 /* include */, - FFFB2d9e65e87f922d9e65e8 /* src */, + FFFB31525b207fc331525b20 /* include */, + FFFB31525b487fc331525b48 /* src */, ); name = "PsFastXml"; sourceTree = "<group>"; }; - FFFB2d9e65c07f922d9e65c0 /* include */ = { + FFFB31525b207fc331525b20 /* include */ = { isa = PBXGroup; children = ( - FFFD2d9e67507f922d9e6750 /* PsFastXml.h */, + FFFD3151f1007fc33151f100 /* PsFastXml.h */, ); name = "include"; sourceTree = SOURCE_ROOT; }; - FFFB2d9e65e87f922d9e65e8 /* src */ = { + FFFB31525b487fc331525b48 /* src */ = { isa = PBXGroup; children = ( - FFFD2d9e68507f922d9e6850 /* PsFastXml.cpp */, + FFFD3151eb607fc33151eb60 /* PsFastXml.cpp */, ); name = "src"; sourceTree = SOURCE_ROOT; @@ -4995,61 +4995,61 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - FFFA2d9e31707f922d9e3170 /* PhysX */ = { + FFFA3152d5407fc33152d540 /* PhysX */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62d9e31707f922d9e3170 /* Build configuration list for PBXNativeTarget "PhysX" */; + buildConfigurationList = FFF63152d5407fc33152d540 /* Build configuration list for PBXNativeTarget "PhysX" */; buildPhases = ( - FFF22d9e31707f922d9e3170, - FFF82d9e31707f922d9e3170, - FFFC2d9e31707f922d9e3170, + FFF23152d5407fc33152d540, + FFF83152d5407fc33152d540, + FFFC3152d5407fc33152d540, ); buildRules = ( ); dependencies = ( - FFF42d9f08f07f922d9f08f0, /* LowLevel */ - FFF42d9e90a07f922d9e90a0, /* LowLevelAABB */ - FFF42d9eff807f922d9eff80, /* LowLevelCloth */ - FFF42d9eff207f922d9eff20, /* LowLevelDynamics */ - FFF42d9ed0007f922d9ed000, /* LowLevelParticles */ - FFF42d9f08907f922d9f0890, /* PhysXCommon */ - FFF42d9e34607f922d9e3460, /* PxFoundation */ - FFF42d9e31107f922d9e3110, /* PxPvdSDK */ - FFF42d9f03c07f922d9f03c0, /* PxTask */ - FFF42d9ed0607f922d9ed060, /* SceneQuery */ - FFF42d9f03907f922d9f0390, /* SimulationController */ + FFF431533b507fc331533b50, /* LowLevel */ + FFF431530f907fc331530f90, /* LowLevelAABB */ + FFF4315314607fc331531460, /* LowLevelCloth */ + FFF431530ff07fc331530ff0, /* LowLevelDynamics */ + FFF4315314c07fc3315314c0, /* LowLevelParticles */ + FFF431533af07fc331533af0, /* PhysXCommon */ + FFF4315229e07fc3315229e0, /* PxFoundation */ + FFF4315226c07fc3315226c0, /* PxPvdSDK */ + FFF4315310507fc331531050, /* PxTask */ + FFF431534ac07fc331534ac0, /* SceneQuery */ + FFF431534b207fc331534b20, /* SimulationController */ ); name = "PhysX"; productName = "PhysX"; - productReference = FFFD2d9e31707f922d9e3170 /* PhysX */; + productReference = FFFD3152d5407fc33152d540 /* PhysX */; productType = "com.apple.product-type.library.static"; }; - FFFA2d9ecca07f922d9ecca0 /* PhysXCharacterKinematic */ = { + FFFA315310607fc331531060 /* PhysXCharacterKinematic */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62d9ecca07f922d9ecca0 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; + buildConfigurationList = FFF6315310607fc331531060 /* Build configuration list for PBXNativeTarget "PhysXCharacterKinematic" */; buildPhases = ( - FFF22d9ecca07f922d9ecca0, - FFF82d9ecca07f922d9ecca0, - FFFC2d9ecca07f922d9ecca0, + FFF2315310607fc331531060, + FFF8315310607fc331531060, + FFFC315310607fc331531060, ); buildRules = ( ); dependencies = ( - FFF42d9f3c407f922d9f3c40, /* PhysXCommon */ - FFF42d9edd207f922d9edd20, /* PhysXExtensions */ - FFF42d9ee8d07f922d9ee8d0, /* PxFoundation */ + FFF431537d007fc331537d00, /* PhysXCommon */ + FFF4315322507fc331532250, /* PhysXExtensions */ + FFF431537b307fc331537b30, /* PxFoundation */ ); name = "PhysXCharacterKinematic"; productName = "PhysXCharacterKinematic"; - productReference = FFFD2d9ecca07f922d9ecca0 /* PhysXCharacterKinematic */; + productReference = FFFD315310607fc331531060 /* PhysXCharacterKinematic */; productType = "com.apple.product-type.library.static"; }; - FFFA2d9ee0607f922d9ee060 /* PhysXVehicle */ = { + FFFA315326507fc331532650 /* PhysXVehicle */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62d9ee0607f922d9ee060 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; + buildConfigurationList = FFF6315326507fc331532650 /* Build configuration list for PBXNativeTarget "PhysXVehicle" */; buildPhases = ( - FFF22d9ee0607f922d9ee060, - FFF82d9ee0607f922d9ee060, - FFFC2d9ee0607f922d9ee060, + FFF2315326507fc331532650, + FFF8315326507fc331532650, + FFFC315326507fc331532650, ); buildRules = ( ); @@ -5057,34 +5057,34 @@ ); name = "PhysXVehicle"; productName = "PhysXVehicle"; - productReference = FFFD2d9ee0607f922d9ee060 /* PhysXVehicle */; + productReference = FFFD315326507fc331532650 /* PhysXVehicle */; productType = "com.apple.product-type.library.static"; }; - FFFA2dc036207f922dc03620 /* PhysXExtensions */ = { + FFFA31541f407fc331541f40 /* PhysXExtensions */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62dc036207f922dc03620 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; + buildConfigurationList = FFF631541f407fc331541f40 /* Build configuration list for PBXNativeTarget "PhysXExtensions" */; buildPhases = ( - FFF22dc036207f922dc03620, - FFF82dc036207f922dc03620, - FFFC2dc036207f922dc03620, + FFF231541f407fc331541f40, + FFF831541f407fc331541f40, + FFFC31541f407fc331541f40, ); buildRules = ( ); dependencies = ( - FFF42dc004907f922dc00490, /* PsFastXml */ + FFF4315423c07fc3315423c0, /* PsFastXml */ ); name = "PhysXExtensions"; productName = "PhysXExtensions"; - productReference = FFFD2dc036207f922dc03620 /* PhysXExtensions */; + productReference = FFFD31541f407fc331541f40 /* PhysXExtensions */; productType = "com.apple.product-type.library.static"; }; - FFFA2dc145807f922dc14580 /* SceneQuery */ = { + FFFA315548707fc331554870 /* SceneQuery */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62dc145807f922dc14580 /* Build configuration list for PBXNativeTarget "SceneQuery" */; + buildConfigurationList = FFF6315548707fc331554870 /* Build configuration list for PBXNativeTarget "SceneQuery" */; buildPhases = ( - FFF22dc145807f922dc14580, - FFF82dc145807f922dc14580, - FFFC2dc145807f922dc14580, + FFF2315548707fc331554870, + FFF8315548707fc331554870, + FFFC315548707fc331554870, ); buildRules = ( ); @@ -5092,16 +5092,16 @@ ); name = "SceneQuery"; productName = "SceneQuery"; - productReference = FFFD2dc145807f922dc14580 /* SceneQuery */; + productReference = FFFD315548707fc331554870 /* SceneQuery */; productType = "com.apple.product-type.library.static"; }; - FFFA2dc18c707f922dc18c70 /* SimulationController */ = { + FFFA31558f607fc331558f60 /* SimulationController */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62dc18c707f922dc18c70 /* Build configuration list for PBXNativeTarget "SimulationController" */; + buildConfigurationList = FFF631558f607fc331558f60 /* Build configuration list for PBXNativeTarget "SimulationController" */; buildPhases = ( - FFF22dc18c707f922dc18c70, - FFF82dc18c707f922dc18c70, - FFFC2dc18c707f922dc18c70, + FFF231558f607fc331558f60, + FFF831558f607fc331558f60, + FFFC31558f607fc331558f60, ); buildRules = ( ); @@ -5109,54 +5109,54 @@ ); name = "SimulationController"; productName = "SimulationController"; - productReference = FFFD2dc18c707f922dc18c70 /* SimulationController */; + productReference = FFFD31558f607fc331558f60 /* SimulationController */; productType = "com.apple.product-type.library.static"; }; - FFFA2dd04ea07f922dd04ea0 /* PhysXCooking */ = { + FFFA3155d7107fc33155d710 /* PhysXCooking */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62dd04ea07f922dd04ea0 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; + buildConfigurationList = FFF63155d7107fc33155d710 /* Build configuration list for PBXNativeTarget "PhysXCooking" */; buildPhases = ( - FFF22dd04ea07f922dd04ea0, - FFF82dd04ea07f922dd04ea0, - FFFC2dd04ea07f922dd04ea0, + FFF23155d7107fc33155d710, + FFF83155d7107fc33155d710, + FFFC3155d7107fc33155d710, ); buildRules = ( ); dependencies = ( - FFF42dd055a07f922dd055a0, /* PhysXCommon */ - FFF42dd085907f922dd08590, /* PhysXExtensions */ - FFF42dd037507f922dd03750, /* PxFoundation */ + FFF431566f607fc331566f60, /* PhysXCommon */ + FFF431566e807fc331566e80, /* PhysXExtensions */ + FFF4315626907fc331562690, /* PxFoundation */ ); name = "PhysXCooking"; productName = "PhysXCooking"; - productReference = FFFD2dd04ea07f922dd04ea0 /* PhysXCooking */; + productReference = FFFD3155d7107fc33155d710 /* PhysXCooking */; productType = "com.apple.product-type.library.static"; }; - FFFA2c13c0507f922c13c050 /* PhysXCommon */ = { + FFFA315178207fc331517820 /* PhysXCommon */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62c13c0507f922c13c050 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; + buildConfigurationList = FFF6315178207fc331517820 /* Build configuration list for PBXNativeTarget "PhysXCommon" */; buildPhases = ( - FFF22c13c0507f922c13c050, - FFF82c13c0507f922c13c050, - FFFC2c13c0507f922c13c050, + FFF2315178207fc331517820, + FFF8315178207fc331517820, + FFFC315178207fc331517820, ); buildRules = ( ); dependencies = ( - FFF42c1566c07f922c1566c0, /* PxFoundation */ + FFF4315078907fc331507890, /* PxFoundation */ ); name = "PhysXCommon"; productName = "PhysXCommon"; - productReference = FFFD2c13c0507f922c13c050 /* PhysXCommon */; + productReference = FFFD315178207fc331517820 /* PhysXCommon */; productType = "com.apple.product-type.library.static"; }; - FFFA2c1587607f922c158760 /* PxFoundation */ = { + FFFA315044907fc331504490 /* PxFoundation */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62c1587607f922c158760 /* Build configuration list for PBXNativeTarget "PxFoundation" */; + buildConfigurationList = FFF6315044907fc331504490 /* Build configuration list for PBXNativeTarget "PxFoundation" */; buildPhases = ( - FFF22c1587607f922c158760, - FFF82c1587607f922c158760, - FFFC2c1587607f922c158760, + FFF2315044907fc331504490, + FFF8315044907fc331504490, + FFFC315044907fc331504490, ); buildRules = ( ); @@ -5164,34 +5164,34 @@ ); name = "PxFoundation"; productName = "PxFoundation"; - productReference = FFFD2c1587607f922c158760 /* PxFoundation */; + productReference = FFFD315044907fc331504490 /* PxFoundation */; productType = "com.apple.product-type.library.static"; }; - FFFA2c0bd6207f922c0bd620 /* PxPvdSDK */ = { + FFFA31142a807fc331142a80 /* PxPvdSDK */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62c0bd6207f922c0bd620 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; + buildConfigurationList = FFF631142a807fc331142a80 /* Build configuration list for PBXNativeTarget "PxPvdSDK" */; buildPhases = ( - FFF22c0bd6207f922c0bd620, - FFF82c0bd6207f922c0bd620, - FFFC2c0bd6207f922c0bd620, + FFF231142a807fc331142a80, + FFF831142a807fc331142a80, + FFFC31142a807fc331142a80, ); buildRules = ( ); dependencies = ( - FFF42c0f3ab07f922c0f3ab0, /* PxFoundation */ + FFF431141cc07fc331141cc0, /* PxFoundation */ ); name = "PxPvdSDK"; productName = "PxPvdSDK"; - productReference = FFFD2c0bd6207f922c0bd620 /* PxPvdSDK */; + productReference = FFFD31142a807fc331142a80 /* PxPvdSDK */; productType = "com.apple.product-type.library.static"; }; - FFFA2c12cc907f922c12cc90 /* LowLevel */ = { + FFFA3300a7207fc33300a720 /* LowLevel */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62c12cc907f922c12cc90 /* Build configuration list for PBXNativeTarget "LowLevel" */; + buildConfigurationList = FFF63300a7207fc33300a720 /* Build configuration list for PBXNativeTarget "LowLevel" */; buildPhases = ( - FFF22c12cc907f922c12cc90, - FFF82c12cc907f922c12cc90, - FFFC2c12cc907f922c12cc90, + FFF23300a7207fc33300a720, + FFF83300a7207fc33300a720, + FFFC3300a7207fc33300a720, ); buildRules = ( ); @@ -5199,16 +5199,16 @@ ); name = "LowLevel"; productName = "LowLevel"; - productReference = FFFD2c12cc907f922c12cc90 /* LowLevel */; + productReference = FFFD3300a7207fc33300a720 /* LowLevel */; productType = "com.apple.product-type.library.static"; }; - FFFA2c60e6807f922c60e680 /* LowLevelAABB */ = { + FFFA317bb4a07fc3317bb4a0 /* LowLevelAABB */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62c60e6807f922c60e680 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; + buildConfigurationList = FFF6317bb4a07fc3317bb4a0 /* Build configuration list for PBXNativeTarget "LowLevelAABB" */; buildPhases = ( - FFF22c60e6807f922c60e680, - FFF82c60e6807f922c60e680, - FFFC2c60e6807f922c60e680, + FFF2317bb4a07fc3317bb4a0, + FFF8317bb4a07fc3317bb4a0, + FFFC317bb4a07fc3317bb4a0, ); buildRules = ( ); @@ -5216,16 +5216,16 @@ ); name = "LowLevelAABB"; productName = "LowLevelAABB"; - productReference = FFFD2c60e6807f922c60e680 /* LowLevelAABB */; + productReference = FFFD317bb4a07fc3317bb4a0 /* LowLevelAABB */; productType = "com.apple.product-type.library.static"; }; - FFFA2c0b4e307f922c0b4e30 /* LowLevelDynamics */ = { + FFFA33032f907fc333032f90 /* LowLevelDynamics */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62c0b4e307f922c0b4e30 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; + buildConfigurationList = FFF633032f907fc333032f90 /* Build configuration list for PBXNativeTarget "LowLevelDynamics" */; buildPhases = ( - FFF22c0b4e307f922c0b4e30, - FFF82c0b4e307f922c0b4e30, - FFFC2c0b4e307f922c0b4e30, + FFF233032f907fc333032f90, + FFF833032f907fc333032f90, + FFFC33032f907fc333032f90, ); buildRules = ( ); @@ -5233,16 +5233,16 @@ ); name = "LowLevelDynamics"; productName = "LowLevelDynamics"; - productReference = FFFD2c0b4e307f922c0b4e30 /* LowLevelDynamics */; + productReference = FFFD33032f907fc333032f90 /* LowLevelDynamics */; productType = "com.apple.product-type.library.static"; }; - FFFA2c62b3607f922c62b360 /* LowLevelCloth */ = { + FFFA310c7ab07fc3310c7ab0 /* LowLevelCloth */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62c62b3607f922c62b360 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; + buildConfigurationList = FFF6310c7ab07fc3310c7ab0 /* Build configuration list for PBXNativeTarget "LowLevelCloth" */; buildPhases = ( - FFF22c62b3607f922c62b360, - FFF82c62b3607f922c62b360, - FFFC2c62b3607f922c62b360, + FFF2310c7ab07fc3310c7ab0, + FFF8310c7ab07fc3310c7ab0, + FFFC310c7ab07fc3310c7ab0, ); buildRules = ( ); @@ -5250,16 +5250,16 @@ ); name = "LowLevelCloth"; productName = "LowLevelCloth"; - productReference = FFFD2c62b3607f922c62b360 /* LowLevelCloth */; + productReference = FFFD310c7ab07fc3310c7ab0 /* LowLevelCloth */; productType = "com.apple.product-type.library.static"; }; - FFFA2c07d5207f922c07d520 /* LowLevelParticles */ = { + FFFA330590907fc333059090 /* LowLevelParticles */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62c07d5207f922c07d520 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; + buildConfigurationList = FFF6330590907fc333059090 /* Build configuration list for PBXNativeTarget "LowLevelParticles" */; buildPhases = ( - FFF22c07d5207f922c07d520, - FFF82c07d5207f922c07d520, - FFFC2c07d5207f922c07d520, + FFF2330590907fc333059090, + FFF8330590907fc333059090, + FFFC330590907fc333059090, ); buildRules = ( ); @@ -5267,16 +5267,16 @@ ); name = "LowLevelParticles"; productName = "LowLevelParticles"; - productReference = FFFD2c07d5207f922c07d520 /* LowLevelParticles */; + productReference = FFFD330590907fc333059090 /* LowLevelParticles */; productType = "com.apple.product-type.library.static"; }; - FFFA2c659bf07f922c659bf0 /* PxTask */ = { + FFFA3308d5d07fc33308d5d0 /* PxTask */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62c659bf07f922c659bf0 /* Build configuration list for PBXNativeTarget "PxTask" */; + buildConfigurationList = FFF63308d5d07fc33308d5d0 /* Build configuration list for PBXNativeTarget "PxTask" */; buildPhases = ( - FFF22c659bf07f922c659bf0, - FFF82c659bf07f922c659bf0, - FFFC2c659bf07f922c659bf0, + FFF23308d5d07fc33308d5d0, + FFF83308d5d07fc33308d5d0, + FFFC3308d5d07fc33308d5d0, ); buildRules = ( ); @@ -5284,16 +5284,16 @@ ); name = "PxTask"; productName = "PxTask"; - productReference = FFFD2c659bf07f922c659bf0 /* PxTask */; + productReference = FFFD3308d5d07fc33308d5d0 /* PxTask */; productType = "com.apple.product-type.library.static"; }; - FFFA2d9e21807f922d9e2180 /* PsFastXml */ = { + FFFA3152c5407fc33152c540 /* PsFastXml */ = { isa = PBXNativeTarget; - buildConfigurationList = FFF62d9e21807f922d9e2180 /* Build configuration list for PBXNativeTarget "PsFastXml" */; + buildConfigurationList = FFF63152c5407fc33152c540 /* Build configuration list for PBXNativeTarget "PsFastXml" */; buildPhases = ( - FFF22d9e21807f922d9e2180, - FFF82d9e21807f922d9e2180, - FFFC2d9e21807f922d9e2180, + FFF23152c5407fc33152c540, + FFF83152c5407fc33152c540, + FFFC3152c5407fc33152c540, ); buildRules = ( ); @@ -5301,213 +5301,213 @@ ); name = "PsFastXml"; productName = "PsFastXml"; - productReference = FFFD2d9e21807f922d9e2180 /* PsFastXml */; + productReference = FFFD3152c5407fc33152c540 /* PsFastXml */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin XCConfigurationList section */ - FFF62d9e31707f922d9e3170 = { + FFF63152d5407fc33152d540 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72e009c007f922e009c00, - FFF72e00a2f07f922e00a2f0, - FFF72e00a9e07f922e00a9e0, - FFF72e00b0d07f922e00b0d0, + FFF7328518007fc332851800, + FFF732851ef07fc332851ef0, + FFF7328525e07fc3328525e0, + FFF732852cd07fc332852cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF62d9ecca07f922d9ecca0 = { + FFF6315310607fc331531060 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72e00b8007f922e00b800, - FFF72e00bef07f922e00bef0, - FFF72e00c5e07f922e00c5e0, - FFF72e00ccd07f922e00ccd0, + FFF7328534007fc332853400, + FFF732853af07fc332853af0, + FFF7328541e07fc3328541e0, + FFF7328548d07fc3328548d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62d9ee0607f922d9ee060 = { + FFF6315326507fc331532650 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72e00d4007f922e00d400, - FFF72e00daf07f922e00daf0, - FFF72e00e1e07f922e00e1e0, - FFF72e00e8d07f922e00e8d0, + FFF7328550007fc332855000, + FFF7328556f07fc3328556f0, + FFF732855de07fc332855de0, + FFF7328564d07fc3328564d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62dc036207f922dc03620 = { + FFF631541f407fc331541f40 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72e00f0007f922e00f000, - FFF72e00f6f07f922e00f6f0, - FFF72e00fde07f922e00fde0, - FFF72e0104d07f922e0104d0, + FFF732856c007fc332856c00, + FFF7328572f07fc3328572f0, + FFF7328579e07fc3328579e0, + FFF7328580d07fc3328580d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62dc145807f922dc14580 = { + FFF6315548707fc331554870 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72e010c007f922e010c00, - FFF72e0112f07f922e0112f0, - FFF72e0119e07f922e0119e0, - FFF72e0120d07f922e0120d0, + FFF7328588007fc332858800, + FFF732858ef07fc332858ef0, + FFF7328595e07fc3328595e0, + FFF732859cd07fc332859cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62dc18c707f922dc18c70 = { + FFF631558f607fc331558f60 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72e0128007f922e012800, - FFF72e012ef07f922e012ef0, - FFF72e0135e07f922e0135e0, - FFF72e013cd07f922e013cd0, + FFF73285a4007fc33285a400, + FFF73285aaf07fc33285aaf0, + FFF73285b1e07fc33285b1e0, + FFF73285b8d07fc33285b8d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62dd04ea07f922dd04ea0 = { + FFF63155d7107fc33155d710 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72e0144007f922e014400, - FFF72e014af07f922e014af0, - FFF72e0151e07f922e0151e0, - FFF72e0158d07f922e0158d0, + FFF73285c0007fc33285c000, + FFF73285c6f07fc33285c6f0, + FFF73285cde07fc33285cde0, + FFF73285d4d07fc33285d4d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF62c13c0507f922c13c050 = { + FFF6315178207fc331517820 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c8110007f922c811000, - FFF72c8116f07f922c8116f0, - FFF72c811de07f922c811de0, - FFF72c8124d07f922c8124d0, + FFF7318040007fc331804000, + FFF7318046f07fc3318046f0, + FFF731804de07fc331804de0, + FFF7318054d07fc3318054d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; - FFF62c1587607f922c158760 = { + FFF6315044907fc331504490 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72b9a28007f922b9a2800, - FFF72b9a2ef07f922b9a2ef0, - FFF72b9a35e07f922b9a35e0, - FFF72b9a3cd07f922b9a3cd0, + FFF732823a007fc332823a00, + FFF7328240f07fc3328240f0, + FFF7328247e07fc3328247e0, + FFF732824ed07fc332824ed0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62c0bd6207f922c0bd620 = { + FFF631142a807fc331142a80 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c8218007f922c821800, - FFF72c821ef07f922c821ef0, - FFF72c8225e07f922c8225e0, - FFF72c822cd07f922c822cd0, + FFF7309ad8007fc3309ad800, + FFF7309adef07fc3309adef0, + FFF7309ae5e07fc3309ae5e0, + FFF7309aecd07fc3309aecd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62c12cc907f922c12cc90 = { + FFF63300a7207fc33300a720 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72b9b2c007f922b9b2c00, - FFF72b9b32f07f922b9b32f0, - FFF72b9b39e07f922b9b39e0, - FFF72b9b40d07f922b9b40d0, + FFF73380ba007fc33380ba00, + FFF73380c0f07fc33380c0f0, + FFF73380c7e07fc33380c7e0, + FFF73380ced07fc33380ced0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62c60e6807f922c60e680 = { + FFF6317bb4a07fc3317bb4a0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72d0284007f922d028400, - FFF72d028af07f922d028af0, - FFF72d0291e07f922d0291e0, - FFF72d0298d07f922d0298d0, + FFF7309b98007fc3309b9800, + FFF7309b9ef07fc3309b9ef0, + FFF7309ba5e07fc3309ba5e0, + FFF7309bacd07fc3309bacd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62c0b4e307f922c0b4e30 = { + FFF633032f907fc333032f90 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c829e007f922c829e00, - FFF72c82a4f07f922c82a4f0, - FFF72c82abe07f922c82abe0, - FFF72c82b2d07f922c82b2d0, + FFF7338152007fc333815200, + FFF7338158f07fc3338158f0, + FFF733815fe07fc333815fe0, + FFF7338166d07fc3338166d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62c62b3607f922c62b360 = { + FFF6310c7ab07fc3310c7ab0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72d0320007f922d032000, - FFF72d0326f07f922d0326f0, - FFF72d032de07f922d032de0, - FFF72d0334d07f922d0334d0, + FFF73181bc007fc33181bc00, + FFF73181c2f07fc33181c2f0, + FFF73181c9e07fc33181c9e0, + FFF73181d0d07fc33181d0d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62c07d5207f922c07d520 = { + FFF6330590907fc333059090 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c8336007f922c833600, - FFF72c833cf07f922c833cf0, - FFF72c8343e07f922c8343e0, - FFF72c834ad07f922c834ad0, + FFF73381f8007fc33381f800, + FFF73381fef07fc33381fef0, + FFF7338205e07fc3338205e0, + FFF733820cd07fc333820cd0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62c659bf07f922c659bf0 = { + FFF63308d5d07fc33308d5d0 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72d03a8007f922d03a800, - FFF72d03aef07f922d03aef0, - FFF72d03b5e07f922d03b5e0, - FFF72d03bcd07f922d03bcd0, + FFF7309c0a007fc3309c0a00, + FFF7309c10f07fc3309c10f0, + FFF7309c17e07fc3309c17e0, + FFF7309c1ed07fc3309c1ed0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62d9e21807f922d9e2180 = { + FFF63152c5407fc33152c540 = { isa = XCConfigurationList; buildConfigurations = ( - FFF72c8590007f922c859000, - FFF72c8596f07f922c8596f0, - FFF72c859de07f922c859de0, - FFF72c85a4d07f922c85a4d0, + FFF73282b4007fc33282b400, + FFF73282baf07fc33282baf0, + FFF73282c1e07fc33282c1e0, + FFF73282c8d07fc33282c8d0, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "debug"; }; - FFF62b47d1507f922b47d150 = { + FFF63047d2007fc33047d200 = { isa = XCConfigurationList; buildConfigurations = ( - FFF32e009c007f922e009c00 /* release */, - FFF32e00a2f07f922e00a2f0 /* debug */, - FFF32e00a9e07f922e00a9e0 /* checked */, - FFF32e00b0d07f922e00b0d0 /* profile */, + FFF3328518007fc332851800 /* release */, + FFF332851ef07fc332851ef0 /* debug */, + FFF3328525e07fc3328525e0 /* checked */, + FFF332852cd07fc332852cd0 /* profile */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = "release"; }; /* End XCConfigurationList section */ /* Begin XCBuildConfiguration section */ - FFF72e009c007f922e009c00 /* release */ = { + FFF7328518007fc332851800 /* 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; @@ -5537,7 +5537,7 @@ }; name = "release"; }; - FFF72e00a2f07f922e00a2f0 /* debug */ = { + FFF732851ef07fc332851ef0 /* 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; @@ -5567,7 +5567,7 @@ }; name = "debug"; }; - FFF72e00a9e07f922e00a9e0 /* checked */ = { + FFF7328525e07fc3328525e0 /* 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; @@ -5597,7 +5597,7 @@ }; name = "checked"; }; - FFF72e00b0d07f922e00b0d0 /* profile */ = { + FFF732852cd07fc332852cd0 /* 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; @@ -5627,7 +5627,7 @@ }; name = "profile"; }; - FFF72e00b8007f922e00b800 /* debug */ = { + FFF7328534007fc332853400 /* 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; @@ -5657,7 +5657,7 @@ }; name = "debug"; }; - FFF72e00bef07f922e00bef0 /* checked */ = { + FFF732853af07fc332853af0 /* 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; @@ -5687,7 +5687,7 @@ }; name = "checked"; }; - FFF72e00c5e07f922e00c5e0 /* profile */ = { + FFF7328541e07fc3328541e0 /* 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; @@ -5717,7 +5717,7 @@ }; name = "profile"; }; - FFF72e00ccd07f922e00ccd0 /* release */ = { + FFF7328548d07fc3328548d0 /* 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; @@ -5747,7 +5747,7 @@ }; name = "release"; }; - FFF72e00d4007f922e00d400 /* debug */ = { + FFF7328550007fc332855000 /* 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; @@ -5777,7 +5777,7 @@ }; name = "debug"; }; - FFF72e00daf07f922e00daf0 /* checked */ = { + FFF7328556f07fc3328556f0 /* 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; @@ -5807,7 +5807,7 @@ }; name = "checked"; }; - FFF72e00e1e07f922e00e1e0 /* profile */ = { + FFF732855de07fc332855de0 /* 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; @@ -5837,7 +5837,7 @@ }; name = "profile"; }; - FFF72e00e8d07f922e00e8d0 /* release */ = { + FFF7328564d07fc3328564d0 /* 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; @@ -5867,7 +5867,7 @@ }; name = "release"; }; - FFF72e00f0007f922e00f000 /* debug */ = { + FFF732856c007fc332856c00 /* 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; @@ -5875,7 +5875,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "_DEBUG", "PX_DEBUG=1", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5897,7 +5897,7 @@ }; name = "debug"; }; - FFF72e00f6f07f922e00f6f0 /* checked */ = { + FFF7328572f07fc3328572f0 /* 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; @@ -5905,7 +5905,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_CHECKED=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5927,7 +5927,7 @@ }; name = "checked"; }; - FFF72e00fde07f922e00fde0 /* profile */ = { + FFF7328579e07fc3328579e0 /* 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; @@ -5935,7 +5935,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_PROFILE=1", "PX_SUPPORT_PVD=1", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5957,7 +5957,7 @@ }; name = "profile"; }; - FFF72e0104d07f922e0104d0 /* release */ = { + FFF7328580d07fc3328580d0 /* 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; @@ -5965,7 +5965,7 @@ ALWAYS_SEARCH_USER_PATHS = NO; USE_HEADERMAP = NO; GCC_PREPROCESSOR_DEFINITIONS = ( - "PX_BUILD_NUMBER=22845541", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", + "PX_BUILD_NUMBER=23131702", "PX_PHYSX_STATIC_LIB", "NDEBUG", "PX_SUPPORT_PVD=0", ); GCC_ENABLE_EXCEPTIONS = NO; OTHER_LDFLAGS = ( @@ -5987,7 +5987,7 @@ }; name = "release"; }; - FFF72e010c007f922e010c00 /* debug */ = { + FFF7328588007fc332858800 /* 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; @@ -6017,7 +6017,7 @@ }; name = "debug"; }; - FFF72e0112f07f922e0112f0 /* checked */ = { + FFF732858ef07fc332858ef0 /* 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; @@ -6047,7 +6047,7 @@ }; name = "checked"; }; - FFF72e0119e07f922e0119e0 /* profile */ = { + FFF7328595e07fc3328595e0 /* 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; @@ -6077,7 +6077,7 @@ }; name = "profile"; }; - FFF72e0120d07f922e0120d0 /* release */ = { + FFF732859cd07fc332859cd0 /* 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; @@ -6107,7 +6107,7 @@ }; name = "release"; }; - FFF72e0128007f922e012800 /* debug */ = { + FFF73285a4007fc33285a400 /* 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; @@ -6137,7 +6137,7 @@ }; name = "debug"; }; - FFF72e012ef07f922e012ef0 /* checked */ = { + FFF73285aaf07fc33285aaf0 /* 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; @@ -6167,7 +6167,7 @@ }; name = "checked"; }; - FFF72e0135e07f922e0135e0 /* profile */ = { + FFF73285b1e07fc33285b1e0 /* 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; @@ -6197,7 +6197,7 @@ }; name = "profile"; }; - FFF72e013cd07f922e013cd0 /* release */ = { + FFF73285b8d07fc33285b8d0 /* 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; @@ -6227,7 +6227,7 @@ }; name = "release"; }; - FFF72e0144007f922e014400 /* release */ = { + FFF73285c0007fc33285c000 /* 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; @@ -6257,7 +6257,7 @@ }; name = "release"; }; - FFF72e014af07f922e014af0 /* debug */ = { + FFF73285c6f07fc33285c6f0 /* 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; @@ -6287,7 +6287,7 @@ }; name = "debug"; }; - FFF72e0151e07f922e0151e0 /* checked */ = { + FFF73285cde07fc33285cde0 /* 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; @@ -6317,7 +6317,7 @@ }; name = "checked"; }; - FFF72e0158d07f922e0158d0 /* profile */ = { + FFF73285d4d07fc33285d4d0 /* 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; @@ -6347,7 +6347,7 @@ }; name = "profile"; }; - FFF72c8110007f922c811000 /* release */ = { + FFF7318040007fc331804000 /* 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; @@ -6377,7 +6377,7 @@ }; name = "release"; }; - FFF72c8116f07f922c8116f0 /* debug */ = { + FFF7318046f07fc3318046f0 /* 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; @@ -6407,7 +6407,7 @@ }; name = "debug"; }; - FFF72c811de07f922c811de0 /* checked */ = { + FFF731804de07fc331804de0 /* 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; @@ -6437,7 +6437,7 @@ }; name = "checked"; }; - FFF72c8124d07f922c8124d0 /* profile */ = { + FFF7318054d07fc3318054d0 /* 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; @@ -6467,7 +6467,7 @@ }; name = "profile"; }; - FFF72b9a28007f922b9a2800 /* debug */ = { + FFF732823a007fc332823a00 /* 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; @@ -6497,7 +6497,7 @@ }; name = "debug"; }; - FFF72b9a2ef07f922b9a2ef0 /* release */ = { + FFF7328240f07fc3328240f0 /* 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; @@ -6527,7 +6527,7 @@ }; name = "release"; }; - FFF72b9a35e07f922b9a35e0 /* checked */ = { + FFF7328247e07fc3328247e0 /* 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; @@ -6557,7 +6557,7 @@ }; name = "checked"; }; - FFF72b9a3cd07f922b9a3cd0 /* profile */ = { + FFF732824ed07fc332824ed0 /* 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; @@ -6587,7 +6587,7 @@ }; name = "profile"; }; - FFF72c8218007f922c821800 /* debug */ = { + FFF7309ad8007fc3309ad800 /* 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; @@ -6617,7 +6617,7 @@ }; name = "debug"; }; - FFF72c821ef07f922c821ef0 /* release */ = { + FFF7309adef07fc3309adef0 /* 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; @@ -6647,7 +6647,7 @@ }; name = "release"; }; - FFF72c8225e07f922c8225e0 /* checked */ = { + FFF7309ae5e07fc3309ae5e0 /* 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; @@ -6677,7 +6677,7 @@ }; name = "checked"; }; - FFF72c822cd07f922c822cd0 /* profile */ = { + FFF7309aecd07fc3309aecd0 /* 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; @@ -6707,7 +6707,7 @@ }; name = "profile"; }; - FFF72b9b2c007f922b9b2c00 /* debug */ = { + FFF73380ba007fc33380ba00 /* 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; @@ -6737,7 +6737,7 @@ }; name = "debug"; }; - FFF72b9b32f07f922b9b32f0 /* checked */ = { + FFF73380c0f07fc33380c0f0 /* 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; @@ -6767,7 +6767,7 @@ }; name = "checked"; }; - FFF72b9b39e07f922b9b39e0 /* profile */ = { + FFF73380c7e07fc33380c7e0 /* 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; @@ -6797,7 +6797,7 @@ }; name = "profile"; }; - FFF72b9b40d07f922b9b40d0 /* release */ = { + FFF73380ced07fc33380ced0 /* 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; @@ -6827,7 +6827,7 @@ }; name = "release"; }; - FFF72d0284007f922d028400 /* debug */ = { + FFF7309b98007fc3309b9800 /* 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; @@ -6857,7 +6857,7 @@ }; name = "debug"; }; - FFF72d028af07f922d028af0 /* checked */ = { + FFF7309b9ef07fc3309b9ef0 /* 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; @@ -6887,7 +6887,7 @@ }; name = "checked"; }; - FFF72d0291e07f922d0291e0 /* profile */ = { + FFF7309ba5e07fc3309ba5e0 /* 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; @@ -6917,7 +6917,7 @@ }; name = "profile"; }; - FFF72d0298d07f922d0298d0 /* release */ = { + FFF7309bacd07fc3309bacd0 /* 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; @@ -6947,7 +6947,7 @@ }; name = "release"; }; - FFF72c829e007f922c829e00 /* debug */ = { + FFF7338152007fc333815200 /* 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; @@ -6977,7 +6977,7 @@ }; name = "debug"; }; - FFF72c82a4f07f922c82a4f0 /* checked */ = { + FFF7338158f07fc3338158f0 /* 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; @@ -7007,7 +7007,7 @@ }; name = "checked"; }; - FFF72c82abe07f922c82abe0 /* profile */ = { + FFF733815fe07fc333815fe0 /* 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; @@ -7037,7 +7037,7 @@ }; name = "profile"; }; - FFF72c82b2d07f922c82b2d0 /* release */ = { + FFF7338166d07fc3338166d0 /* 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; @@ -7067,7 +7067,7 @@ }; name = "release"; }; - FFF72d0320007f922d032000 /* debug */ = { + FFF73181bc007fc33181bc00 /* 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; @@ -7097,7 +7097,7 @@ }; name = "debug"; }; - FFF72d0326f07f922d0326f0 /* checked */ = { + FFF73181c2f07fc33181c2f0 /* 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; @@ -7127,7 +7127,7 @@ }; name = "checked"; }; - FFF72d032de07f922d032de0 /* profile */ = { + FFF73181c9e07fc33181c9e0 /* 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; @@ -7157,7 +7157,7 @@ }; name = "profile"; }; - FFF72d0334d07f922d0334d0 /* release */ = { + FFF73181d0d07fc33181d0d0 /* 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; @@ -7187,7 +7187,7 @@ }; name = "release"; }; - FFF72c8336007f922c833600 /* debug */ = { + FFF73381f8007fc33381f800 /* 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; @@ -7217,7 +7217,7 @@ }; name = "debug"; }; - FFF72c833cf07f922c833cf0 /* checked */ = { + FFF73381fef07fc33381fef0 /* 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; @@ -7247,7 +7247,7 @@ }; name = "checked"; }; - FFF72c8343e07f922c8343e0 /* profile */ = { + FFF7338205e07fc3338205e0 /* 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; @@ -7277,7 +7277,7 @@ }; name = "profile"; }; - FFF72c834ad07f922c834ad0 /* release */ = { + FFF733820cd07fc333820cd0 /* 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; @@ -7307,7 +7307,7 @@ }; name = "release"; }; - FFF72d03a8007f922d03a800 /* debug */ = { + FFF7309c0a007fc3309c0a00 /* 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; @@ -7337,7 +7337,7 @@ }; name = "debug"; }; - FFF72d03aef07f922d03aef0 /* release */ = { + FFF7309c10f07fc3309c10f0 /* 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; @@ -7367,7 +7367,7 @@ }; name = "release"; }; - FFF72d03b5e07f922d03b5e0 /* checked */ = { + FFF7309c17e07fc3309c17e0 /* 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; @@ -7397,7 +7397,7 @@ }; name = "checked"; }; - FFF72d03bcd07f922d03bcd0 /* profile */ = { + FFF7309c1ed07fc3309c1ed0 /* 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; @@ -7427,7 +7427,7 @@ }; name = "profile"; }; - FFF72c8590007f922c859000 /* debug */ = { + FFF73282b4007fc33282b400 /* 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; @@ -7457,7 +7457,7 @@ }; name = "debug"; }; - FFF72c8596f07f922c8596f0 /* release */ = { + FFF73282baf07fc33282baf0 /* 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; @@ -7487,7 +7487,7 @@ }; name = "release"; }; - FFF72c859de07f922c859de0 /* checked */ = { + FFF73282c1e07fc33282c1e0 /* 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; @@ -7517,7 +7517,7 @@ }; name = "checked"; }; - FFF72c85a4d07f922c85a4d0 /* profile */ = { + FFF73282c8d07fc33282c8d0 /* 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; @@ -7547,25 +7547,25 @@ }; name = "profile"; }; - FFF32e009c007f922e009c00 /* release */ = { + FFF3328518007fc332851800 /* release */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "release"; }; - FFF32e00a2f07f922e00a2f0 /* debug */ = { + FFF332851ef07fc332851ef0 /* debug */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "debug"; }; - FFF32e00a9e07f922e00a9e0 /* checked */ = { + FFF3328525e07fc3328525e0 /* checked */ = { isa = XCBuildConfiguration; buildSettings = { }; name = "checked"; }; - FFF32e00b0d07f922e00b0d0 /* profile */ = { + FFF332852cd07fc332852cd0 /* profile */ = { isa = XCBuildConfiguration; buildSettings = { }; @@ -7574,34 +7574,34 @@ /* End XCBuildConfiguration section */ /* Begin PBXProject section */ - FFF92b47d1507f922b47d150 /* Project object */ = { + FFF93047d2007fc33047d200 /* Project object */ = { isa = PBXProject; - buildConfigurationList = FFF62b47d1507f922b47d150 /* Build configuration list for PBXProject PhysX */; + buildConfigurationList = FFF63047d2007fc33047d200 /* Build configuration list for PBXProject PhysX */; compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 1; - mainGroup = FFFB2b47d1b87f922b47d1b8 /* PhysX */; + mainGroup = FFFB3047d2687fc33047d268 /* PhysX */; targets = ( - FFFA2d9e31707f922d9e3170, - FFFA2d9ecca07f922d9ecca0, - FFFA2d9ee0607f922d9ee060, - FFFA2dc036207f922dc03620, - FFFA2dc145807f922dc14580, - FFFA2dc18c707f922dc18c70, - FFFA2dd04ea07f922dd04ea0, - FFFA2c13c0507f922c13c050, - FFFA2c1587607f922c158760, - FFFA2c0bd6207f922c0bd620, - FFFA2c12cc907f922c12cc90, - FFFA2c60e6807f922c60e680, - FFFA2c0b4e307f922c0b4e30, - FFFA2c62b3607f922c62b360, - FFFA2c07d5207f922c07d520, - FFFA2c659bf07f922c659bf0, - FFFA2d9e21807f922d9e2180, + FFFA3152d5407fc33152d540, + FFFA315310607fc331531060, + FFFA315326507fc331532650, + FFFA31541f407fc331541f40, + FFFA315548707fc331554870, + FFFA31558f607fc331558f60, + FFFA3155d7107fc33155d710, + FFFA315178207fc331517820, + FFFA315044907fc331504490, + FFFA31142a807fc331142a80, + FFFA3300a7207fc33300a720, + FFFA317bb4a07fc3317bb4a0, + FFFA33032f907fc333032f90, + FFFA310c7ab07fc3310c7ab0, + FFFA330590907fc333059090, + FFFA3308d5d07fc33308d5d0, + FFFA3152c5407fc33152c540, ); }; /* End PBXProject section */ }; - rootObject = FFF92b47d1507f922b47d150 /* Project object */; + rootObject = FFF93047d2007fc33047d200 /* Project object */; } |